Beispiel #1
0
 /// <summary>
 /// ImageComboBoxEdit加载排产方案
 /// </summary>
 /// <param name="cbo">控件</param>
 public void ImageComboBoxEditBindFA(DevExpress.XtraEditors.ImageComboBoxEdit cbo, string qs)
 {
     //cbo.Properties.Items.Clear();
     //DataTable dt = bll_TPP_INITIALIZE_ITEM.GetList("0", qs, "", null, null).Tables[0];
     //if (dt.Rows.Count > 0)
     //{
     //    for (int i = 0; i < dt.Rows.Count; i++)
     //    {
     //        cbo.Properties.Items.Add(dt.Rows[i]["C_ITEM_NAME"].ToString(), dt.Rows[i]["C_ID"].ToString(), -1);
     //    }
     //}
     //else
     //{
     //    cbo.Properties.Items.Clear();
     //}
 }
Beispiel #2
0
        /// <summary>
        /// ImageComboBoxEdit加载钢坯仓库层
        /// </summary>
        /// <param name="strkw">库位</param>
        /// <param name="cbo">控件</param>
        public void ImageComboBoxEditBindGPKC(string strkw, DevExpress.XtraEditors.ImageComboBoxEdit cbo)
        {
            cbo.Properties.Items.Clear();
            DataTable dt = bll_TPB_SLABWH_TIER.GetListByKW(strkw).Tables[0];

            if (dt.Rows.Count > 0)
            {
                for (int i = 0; i < dt.Rows.Count; i++)
                {
                    cbo.Properties.Items.Add(dt.Rows[i]["C_SLABWH_TIER_CODE"].ToString(), dt.Rows[i]["C_ID"].ToString(), -1);
                }
            }
            else
            {
                cbo.Properties.Items.Clear();
            }
        }
Beispiel #3
0
        /// <summary>
        /// ImageComboBoxEdit加载线材库区域
        /// </summary>
        /// <param name="cbo">控件</param>
        public void ImageComboBoxEditBindXCKKW(string qy, DevExpress.XtraEditors.ImageComboBoxEdit cbo)
        {
            cbo.Properties.Items.Clear();
            DataTable dt = bll_TPB_LINEWH_LOC.GetList_ID(qy).Tables[0];

            if (dt.Rows.Count > 0)
            {
                for (int i = 0; i < dt.Rows.Count; i++)
                {
                    cbo.Properties.Items.Add(dt.Rows[i]["C_LINEWH_LOC_NAME"].ToString() + "(" + dt.Rows[i]["C_LINEWH_LOC_CODE"].ToString() + ")", dt.Rows[i]["C_LINEWH_LOC_CODE"].ToString(), -1);
                }
            }
            else
            {
                cbo.Properties.Items.Clear();
            }
        }
Beispiel #4
0
        /// <summary>
        /// ImageComboBoxEdit加载线材库(id)
        /// </summary>
        /// <param name="cbo">控件</param>
        public void ImageComboBoxEditBindXCKById(DevExpress.XtraEditors.ImageComboBoxEdit cbo)
        {
            cbo.Properties.Items.Clear();
            DataTable dt = bll_TPB_LINEWH.GetListByStatus(1).Tables[0];

            if (dt.Rows.Count > 0)
            {
                for (int i = 0; i < dt.Rows.Count; i++)
                {
                    cbo.Properties.Items.Add(dt.Rows[i]["C_LINEWH_NAME"].ToString(), dt.Rows[i]["C_ID"].ToString(), -1);
                }
            }
            else
            {
                cbo.Properties.Items.Clear();
            }
        }
Beispiel #5
0
        /// <summary>
        /// 加载工位信息到ImageComboBoxEdit
        /// </summary>
        /// <param name="strIniID">方案主键</param>
        /// <param name="strGX">工序代码</param>
        /// <param name="cbo">ImageComboBoxEdit</param>
        public static void BindIcbo_XF(string strIniID, string strGX, DevExpress.XtraEditors.ImageComboBoxEdit cbo)
        {
            cbo.Properties.Items.Clear();
            DataTable dt = bll_TPP_INITIALIZE_STA.GetGXGWByIni(strIniID, strGX);

            if (dt.Rows.Count > 0)
            {
                for (int i = 0; i < dt.Rows.Count; i++)
                {
                    cbo.Properties.Items.Add(dt.Rows[i]["C_STA_DESC"].ToString(), dt.Rows[i]["C_STA_ID"].ToString(), -1);
                }
            }
            else
            {
                cbo.Properties.Items.Clear();
            }
        }
Beispiel #6
0
        /// <summary>
        /// ImageComboBoxEdit加载缓冷坑位
        /// </summary>
        /// <param name="strqy">区域</param>
        /// <param name="cbo">控件</param>
        public void ImageComboBoxEditBindHLKKW(string strqy, DevExpress.XtraEditors.ImageComboBoxEdit cbo)
        {
            cbo.Properties.Items.Clear();
            DataTable dt = bll_TPB_COOLPIT_LOC.GetListByArea(strqy, 1).Tables[0];

            if (dt.Rows.Count > 0)
            {
                for (int i = 0; i < dt.Rows.Count; i++)
                {
                    cbo.Properties.Items.Add(dt.Rows[i]["C_COOLPIT_LOC_CODE"].ToString(), dt.Rows[i]["C_ID"].ToString(), -1);
                }
            }
            else
            {
                cbo.Properties.Items.Clear();
            }
        }
Beispiel #7
0
        /// <summary>
        /// ImageComboBoxEdit加载工序
        /// </summary>
        /// <param name="strGX">工序</param>
        /// <param name="cbo">控件</param>
        public void ImageComboBoxEditBindGX(string strGX, DevExpress.XtraEditors.ImageComboBoxEdit cbo, string str)
        {
            cbo.Properties.Items.Clear();
            DataTable dt = bll_TB_PRO.GetListByStatus(1, strGX, str).Tables[0];

            if (dt.Rows.Count > 0)
            {
                for (int i = 0; i < dt.Rows.Count; i++)
                {
                    cbo.Properties.Items.Add(dt.Rows[i]["C_PRO_DESC"].ToString(), dt.Rows[i]["C_ID"].ToString(), -1);
                }
            }
            else
            {
                cbo.Properties.Items.Clear();
            }
        }
Beispiel #8
0
        /// <summary>
        ///  ImageComboBoxEdit加载班组
        /// </summary>
        /// <param name="cbo">ImageComboBoxEdit</param>
        /// <param name="num">0</param>
        public void ImageComboBoxEditBindBZ(DevExpress.XtraEditors.ImageComboBoxEdit cbo, int num)
        {
            cbo.Properties.Items.Clear();
            DataTable dt = bll_TB_BZ.GetListBynum(num).Tables[0];

            if (dt.Rows.Count > 0)
            {
                for (int i = 0; i < dt.Rows.Count; i++)
                {
                    cbo.Properties.Items.Add(dt.Rows[i]["C_BZ_NAME"].ToString(), dt.Rows[i]["C_ID"].ToString(), -1);
                }
            }
            else
            {
                cbo.Properties.Items.Clear();
            }
        }
Beispiel #9
0
        /// <summary>
        /// ImageComboBoxEdit根据钢种加载执行标准
        /// </summary>
        /// <param name="strGZ">钢种</param>
        /// <param name="cbo">控件</param>
        public void ImageComboBoxEditBindBZ(string strGZ, DevExpress.XtraEditors.ImageComboBoxEdit cbo)
        {
            cbo.Properties.Items.Clear();
            DataTable dt = GetZXBZList(strGZ);

            if (dt.Rows.Count > 0)
            {
                for (int i = 0; i < dt.Rows.Count; i++)
                {
                    cbo.Properties.Items.Add(dt.Rows[i]["C_STD_CODE"].ToString(), dt.Rows[i]["C_ID"].ToString(), -1);
                }
            }
            else
            {
                cbo.Properties.Items.Clear();
            }
        }
Beispiel #10
0
        /// <summary>
        /// ImageComboBoxEdit根据类别加载项目
        /// </summary>
        /// <param name="strLB">类别:成分/性能</param>
        /// <param name="cbo">ImageComboBoxEdit控件</param>
        public void ImageComboBoxEditBindItem(string strLB, DevExpress.XtraEditors.ImageComboBoxEdit cbo)
        {
            cbo.Properties.Items.Clear();
            DataTable dt = bll_TQB_CHARACTER.GetItemByLB(strLB).Tables[0];

            if (dt.Rows.Count > 0)
            {
                for (int i = 0; i < dt.Rows.Count; i++)
                {
                    cbo.Properties.Items.Add(dt.Rows[i]["C_NAME"].ToString(), dt.Rows[i]["C_CODE"].ToString(), -1);
                }
            }
            else
            {
                cbo.Properties.Items.Clear();
            }
        }
Beispiel #11
0
        /// <summary>
        /// ImageComboBoxEdit根据工序描述加载工位
        /// </summary>
        /// <param name="strGXDESC">工序描述</param>
        /// <param name="cbo">控件</param>
        public void ImageComboBoxEditBindGWByGX(DevExpress.XtraEditors.ImageComboBoxEdit cbo)
        {
            cbo.Properties.Items.Clear();
            DataTable dt = bll_TB_STA.GetListByZLGX().Tables[0];

            if (dt.Rows.Count > 0)
            {
                for (int i = 0; i < dt.Rows.Count; i++)
                {
                    cbo.Properties.Items.Add(dt.Rows[i]["C_STA_DESC"].ToString(), dt.Rows[i]["C_ID"].ToString(), i);
                }
            }
            else
            {
                cbo.Properties.Items.Clear();
            }
        }
Beispiel #12
0
        /// <summary>
        /// 加载计划工位
        /// </summary>
        /// <param name="strGXDESC">工序描述</param>
        /// <param name="cbo">控件</param>
        public void BindZJGW(string strGXDESC, DevExpress.XtraEditors.ImageComboBoxEdit cbo)
        {
            cbo.Properties.Items.Clear();
            DataTable dt = bll_TB_STA.GetListByGX(strGXDESC).Tables[0];

            cbo.Properties.Items.Add("全部", "全部", -1);

            if (dt.Rows.Count > 0)
            {
                for (int i = 0; i < dt.Rows.Count; i++)
                {
                    cbo.Properties.Items.Add(dt.Rows[i]["C_STA_DESC"].ToString(), dt.Rows[i]["C_ID"].ToString(), -1);
                }
            }

            cbo.SelectedIndex = 0;
        }
Beispiel #13
0
        /// <summary>
        /// 根据时间段绑定方案
        /// </summary>
        /// <param name="cbo">控件</param>
        /// <param name="dt1">开始时间</param>
        /// <param name="dt2">结束时间</param>
        /// <param name="type">类型</param>
        public void ImageComboBoxEditBindFABYTIME(DevExpress.XtraEditors.ImageComboBoxEdit cbo, string dt1, string dt2, string type)
        {
            cbo.Text = "";
            cbo.Properties.Items.Clear();
            DataTable dt = bll_TPP_INITIALIZE_ITEM.GetList(null, type, dt1, dt2).Tables[0];

            if (dt.Rows.Count > 0)
            {
                for (int i = 0; i < dt.Rows.Count; i++)
                {
                    cbo.Properties.Items.Add(dt.Rows[i]["C_ITEM_NAME"].ToString(), dt.Rows[i]["C_ID"].ToString(), 0);
                }
            }
            else
            {
                cbo.Properties.Items.Clear();
            }
        }
Beispiel #14
0
        /// <summary>
        /// 根据方案加载连铸工位
        /// </summary>
        /// <param name="strGX">工序</param>
        /// <param name="cbo">控件</param>
        public void BindCCM(string strGX, string fid, DevExpress.XtraEditors.ImageComboBoxEdit cbo)
        {
            cbo.Properties.Items.Clear();
            DataTable dt = bll_TPP_INITIALIZE_STA.GetList(strGX, "全部", fid, "").Tables[0];

            cbo.Properties.Items.Add("全部", "全部", 0);
            if (dt.Rows.Count > 0)
            {
                for (int i = 0; i < dt.Rows.Count; i++)
                {
                    cbo.Properties.Items.Add(dt.Rows[i]["C_STA_DESC"].ToString(), dt.Rows[i]["C_ID"].ToString(), -1);
                }
            }
            else
            {
                cbo.Properties.Items.Clear();
            }
        }
Beispiel #15
0
        /// <summary>
        /// ImageComboBoxEdit加载排班规则
        /// </summary>
        /// <param name="strGX">工序</param>
        /// <param name="cbo">控件</param>
        public void ImageComboBoxEditBindPBGZ(DevExpress.XtraEditors.ImageComboBoxEdit cbo)
        {
            cbo.Properties.Items.Clear();
            DataTable dt = bll_tb_bcbzgz.GetListByMC("").Tables[0];

            //cbo.Properties.Items.Add("");
            if (dt.Rows.Count > 0)
            {
                for (int i = 0; i < dt.Rows.Count; i++)
                {
                    cbo.Properties.Items.Add(dt.Rows[i]["C_GZMC"].ToString(), dt.Rows[i]["C_ID"].ToString(), -1);
                }
            }
            else
            {
                cbo.Properties.Items.Clear();
            }
        }
Beispiel #16
0
        /// <summary>
        /// ImageComboBoxEdit加载钢坯仓库
        /// </summary>
        /// <param name="cbo">控件</param>
        public void ImageComboBoxEditBindStock(DevExpress.XtraEditors.ImageComboBoxEdit cbo)
        {
            cbo.Properties.Items.Clear();
            DataTable dt = bll_TPB_SLABWH.GetList().Tables[0];

            if (dt.Rows.Count > 0)
            {
                cbo.Properties.Items.Add("全部", "全部", 0);
                for (int i = 0; i < dt.Rows.Count; i++)
                {
                    cbo.Properties.Items.Add(dt.Rows[i]["C_SLABWH_CODE"].ToString() + dt.Rows[i]["C_SLABWH_NAME"].ToString(), dt.Rows[i]["C_SLABWH_CODE"].ToString(), -1);
                }
                cbo.SelectedIndex = 0;
            }
            else
            {
                cbo.Properties.Items.Clear();
            }
        }
Beispiel #17
0
        /// <summary>
        /// 默认班次班组
        /// </summary>
        /// <param name="bccbo">班次</param>
        /// <param name="bzcbo">班组</param>
        /// <param name="stacode">工位代码</param>
        /// <param name="type">工序</param>
        public void BCBZBindEdit(DevExpress.XtraEditors.ImageComboBoxEdit bccbo, DevExpress.XtraEditors.ImageComboBoxEdit bzcbo, string stacode)
        {
            Mod_TB_STA mod_TB_STA = bll_TB_STA.GetModelByCODE(stacode);//获取NC工位代码
            DataTable  dt         = bll_TB_BCBZ.GetList(mod_TB_STA.C_PRO_ID, DateTime.Now).Tables[0];

            if (dt.Rows.Count > 0)
            {
                DataTable dt1 = bll_TB_BCBZ.GetNCBCList(mod_TB_STA.C_STA_ERPCODE, dt.Rows[0]["C_BC_NAME"].ToString()).Tables[0];
                DataTable dt2 = bll_TB_BCBZ.GetNCBZList(mod_TB_STA.C_ERP_PK, dt.Rows[0]["C_BZ_NAME"].ToString()).Tables[0];
                if (dt1.Rows.Count > 0)
                {
                    bccbo.EditValue = dt1.Rows[0]["PK_WTID"].ToString();
                }
                if (dt2.Rows.Count > 0)
                {
                    bzcbo.EditValue = dt2.Rows[0]["PK_PGAID"].ToString();
                }
            }
        }
Beispiel #18
0
        /// <summary>
        /// ImageComboBoxEdit加载班组
        /// </summary>
        /// <param name="cbo">控件</param>
        /// <param name="stacode">工位代码</param>
        public void ImageComboBoxEditBindNCBZ(DevExpress.XtraEditors.ImageComboBoxEdit cbo, string stacode)
        {
            Mod_TB_STA mod_TB_STA = bll_TB_STA.GetModelByCODE(stacode);//获取工作中心id

            cbo.Properties.Items.Clear();
            DataTable dt = bll_TB_BCBZ.GetNCBZList(mod_TB_STA.C_ERP_PK, "").Tables[0];

            if (dt.Rows.Count > 0)
            {
                for (int i = 0; i < dt.Rows.Count; i++)
                {
                    cbo.Properties.Items.Add(dt.Rows[i]["BZMC"].ToString(), dt.Rows[i]["PK_PGAID"].ToString(), -1);
                }
            }
            else
            {
                cbo.Properties.Items.Clear();
            }
        }
Beispiel #19
0
        private void comboBind(DevExpress.XtraEditors.ImageComboBoxEdit control, string strSQL, string display, string strValue, bool fNum)
        {
            DataSet _ds = new DataSet();

            SqlHelper.FillDataset(connection, CommandType.StoredProcedure, "UP_GETDATA", _ds, new string[] { "Table" }, new SqlParameter("@strSQL", strSQL));
            DevExpress.XtraEditors.Repository.RepositoryItemImageComboBox properties = control.Properties;
            properties.Items.BeginUpdate();
            properties.Items.Clear();

            try
            {
                foreach (DataRow dr in _ds.Tables["Table"].Rows)
                {
                    //Initialize each item with the display text, value and image index
                    properties.Items.Add(new DevExpress.XtraEditors.Controls.ImageComboBoxItem(dr[display].ToString(), dr[strValue], -1));
                }
            }
            finally
            {
                properties.Items.EndUpdate();
            }
            //Select the first item
            control.SelectedIndex = 0;
        }
Beispiel #20
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.GridMemberCard = new DevExpress.XtraGrid.GridControl();
     this.gridViewMemberCard = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.GridColumn225 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.GridColumn234 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.GridColumn235 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn25 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemImageComboBox1 = new DevExpress.XtraEditors.Repository.RepositoryItemImageComboBox();
     this.repositoryItemImageComboBox2 = new DevExpress.XtraEditors.Repository.RepositoryItemImageComboBox();
     this.mcard_lblNStatusID = new System.Windows.Forms.Label();
     this.cmbMemberCard = new DevExpress.XtraEditors.ImageComboBoxEdit();
     this.btnMemberCard_Reprint = new DevExpress.XtraEditors.SimpleButton();
     this.btnMemberCard_Print = new DevExpress.XtraEditors.SimpleButton();
     this.openFileDialog1 = new System.Windows.Forms.OpenFileDialog();
     this.groupControl1 = new DevExpress.XtraEditors.GroupControl();
     this.grpMemberCardBelow = new DevExpress.XtraEditors.GroupControl();
     this.gcTransferMember = new DevExpress.XtraGrid.GridControl();
     this.gvTransferMember = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.txtMemberName = new DevExpress.XtraEditors.TextEdit();
     this.txtMemberID = new DevExpress.XtraEditors.TextEdit();
     this.label2 = new System.Windows.Forms.Label();
     this.label1 = new System.Windows.Forms.Label();
     this.btnCancelCard = new DevExpress.XtraEditors.SimpleButton();
     ((System.ComponentModel.ISupportInitialize)(this.GridMemberCard)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMemberCard)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemImageComboBox1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemImageComboBox2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbMemberCard.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grpMemberCardBelow)).BeginInit();
     this.grpMemberCardBelow.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gcTransferMember)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvTransferMember)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMemberName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMemberID.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // GridMemberCard
     //
     //
     // GridMemberCard.EmbeddedNavigator
     //
     this.GridMemberCard.EmbeddedNavigator.Name = "";
     this.GridMemberCard.Location = new System.Drawing.Point(16, 64);
     this.GridMemberCard.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.GridMemberCard.LookAndFeel.UseDefaultLookAndFeel = false;
     this.GridMemberCard.LookAndFeel.UseWindowsXPTheme = false;
     this.GridMemberCard.MainView = this.gridViewMemberCard;
     this.GridMemberCard.Name = "GridMemberCard";
     this.GridMemberCard.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
                                                                                                             this.repositoryItemImageComboBox1,
                                                                                                             this.repositoryItemImageComboBox2});
     this.GridMemberCard.Size = new System.Drawing.Size(936, 208);
     this.GridMemberCard.TabIndex = 8;
     this.GridMemberCard.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
                                                                                                   this.gridViewMemberCard});
     //
     // gridViewMemberCard
     //
     this.gridViewMemberCard.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
                                                                                               this.GridColumn225,
                                                                                               this.GridColumn234,
                                                                                               this.GridColumn235,
                                                                                               this.gridColumn25,
                                                                                               this.gridColumn1});
     this.gridViewMemberCard.GridControl = this.GridMemberCard;
     this.gridViewMemberCard.Name = "gridViewMemberCard";
     this.gridViewMemberCard.OptionsCustomization.AllowColumnMoving = false;
     this.gridViewMemberCard.OptionsCustomization.AllowFilter = false;
     this.gridViewMemberCard.OptionsSelection.MultiSelect = true;
     this.gridViewMemberCard.OptionsView.ShowGroupPanel = false;
     this.gridViewMemberCard.FocusedRowChanged += new DevExpress.XtraGrid.Views.Base.FocusedRowChangedEventHandler(this.gridViewMemberCard_FocusedRowChanged);
     this.gridViewMemberCard.LostFocus += new System.EventHandler(this.gridViewMemberCard_LostFocus);
     //
     // GridColumn225
     //
     this.GridColumn225.Caption = "Membership ID";
     this.GridColumn225.FieldName = "strMembershipID";
     this.GridColumn225.Name = "GridColumn225";
     this.GridColumn225.OptionsColumn.AllowEdit = false;
     this.GridColumn225.Visible = true;
     this.GridColumn225.VisibleIndex = 0;
     this.GridColumn225.Width = 117;
     //
     // GridColumn234
     //
     this.GridColumn234.Caption = "Member Name";
     this.GridColumn234.FieldName = "strMemberName";
     this.GridColumn234.Name = "GridColumn234";
     this.GridColumn234.OptionsColumn.AllowEdit = false;
     this.GridColumn234.Visible = true;
     this.GridColumn234.VisibleIndex = 1;
     this.GridColumn234.Width = 161;
     //
     // GridColumn235
     //
     this.GridColumn235.Caption = "Source Branch";
     this.GridColumn235.FieldName = "BranchFrom";
     this.GridColumn235.Name = "GridColumn235";
     this.GridColumn235.OptionsColumn.AllowEdit = false;
     this.GridColumn235.Width = 190;
     //
     // gridColumn25
     //
     this.gridColumn25.Caption = "Collection Branch";
     this.gridColumn25.FieldName = "strBranchCode";
     this.gridColumn25.Name = "gridColumn25";
     this.gridColumn25.OptionsColumn.AllowEdit = false;
     this.gridColumn25.Visible = true;
     this.gridColumn25.VisibleIndex = 2;
     this.gridColumn25.Width = 162;
     //
     // gridColumn1
     //
     this.gridColumn1.Caption = "Status";
     this.gridColumn1.ColumnEdit = this.repositoryItemImageComboBox1;
     this.gridColumn1.FieldName = "nStatusID";
     this.gridColumn1.Name = "gridColumn1";
     this.gridColumn1.Visible = true;
     this.gridColumn1.VisibleIndex = 3;
     this.gridColumn1.Width = 189;
     //
     // repositoryItemImageComboBox1
     //
     this.repositoryItemImageComboBox1.AutoHeight = false;
     this.repositoryItemImageComboBox1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                               new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemImageComboBox1.Items.AddRange(new object[] {
                                                                       new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Request Print", 0, -1),
                                                                       new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Print in Progress", 1, -1),
                                                                       new DevExpress.XtraEditors.Controls.ImageComboBoxItem("In Transit", 3, -1),
                                                                       new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Card Received", 4, -1),
                                                                       new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Card Issued", 5, -1),
                                                                       new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Cancelled", 6, -1),
                                                                       new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Transfer Request", 7, -1)});
     this.repositoryItemImageComboBox1.Name = "repositoryItemImageComboBox1";
     //
     // repositoryItemImageComboBox2
     //
     this.repositoryItemImageComboBox2.AutoHeight = false;
     this.repositoryItemImageComboBox2.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                               new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemImageComboBox2.Name = "repositoryItemImageComboBox2";
     //
     // mcard_lblNStatusID
     //
     this.mcard_lblNStatusID.BackColor = System.Drawing.Color.Transparent;
     this.mcard_lblNStatusID.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.mcard_lblNStatusID.Location = new System.Drawing.Point(16, 40);
     this.mcard_lblNStatusID.Name = "mcard_lblNStatusID";
     this.mcard_lblNStatusID.Size = new System.Drawing.Size(56, 16);
     this.mcard_lblNStatusID.TabIndex = 122;
     this.mcard_lblNStatusID.Text = "Status";
     //
     // cmbMemberCard
     //
     this.cmbMemberCard.Location = new System.Drawing.Point(72, 32);
     this.cmbMemberCard.Name = "cmbMemberCard";
     //
     // cmbMemberCard.Properties
     //
     this.cmbMemberCard.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                           new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cmbMemberCard.Properties.Items.AddRange(new object[] {
                                                                   new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Show All", null, -1),
                                                                   new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Request Print", 0, -1),
                                                                   new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Print in Progress", 1, -1),
                                                                   new DevExpress.XtraEditors.Controls.ImageComboBoxItem("In Transit", 3, -1),
                                                                   new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Card Received", 4, -1),
                                                                   new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Card Issued", 5, -1),
                                                                   new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Cancelled", 6, -1)});
     this.cmbMemberCard.Properties.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.cmbMemberCard.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.cmbMemberCard.Size = new System.Drawing.Size(160, 20);
     this.cmbMemberCard.TabIndex = 120;
     this.cmbMemberCard.SelectedIndexChanged += new System.EventHandler(this.cmbMemberCard_SelectedIndexChanged);
     //
     // btnMemberCard_Reprint
     //
     this.btnMemberCard_Reprint.Appearance.BackColor = System.Drawing.Color.LightGray;
     this.btnMemberCard_Reprint.Appearance.BorderColor = System.Drawing.Color.Black;
     this.btnMemberCard_Reprint.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.btnMemberCard_Reprint.Appearance.ForeColor = System.Drawing.Color.Black;
     this.btnMemberCard_Reprint.Appearance.Options.UseBackColor = true;
     this.btnMemberCard_Reprint.Appearance.Options.UseBorderColor = true;
     this.btnMemberCard_Reprint.Appearance.Options.UseFont = true;
     this.btnMemberCard_Reprint.Appearance.Options.UseForeColor = true;
     this.btnMemberCard_Reprint.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnMemberCard_Reprint.Enabled = false;
     this.btnMemberCard_Reprint.Location = new System.Drawing.Point(384, 32);
     this.btnMemberCard_Reprint.Name = "btnMemberCard_Reprint";
     this.btnMemberCard_Reprint.Size = new System.Drawing.Size(140, 20);
     this.btnMemberCard_Reprint.TabIndex = 119;
     this.btnMemberCard_Reprint.Text = "Reprint Member Card";
     this.btnMemberCard_Reprint.Click += new System.EventHandler(this.btnMemberCard_Reprint_Click);
     //
     // btnMemberCard_Print
     //
     this.btnMemberCard_Print.Appearance.BackColor = System.Drawing.Color.LightGray;
     this.btnMemberCard_Print.Appearance.BorderColor = System.Drawing.Color.Black;
     this.btnMemberCard_Print.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.btnMemberCard_Print.Appearance.ForeColor = System.Drawing.Color.Black;
     this.btnMemberCard_Print.Appearance.Options.UseBackColor = true;
     this.btnMemberCard_Print.Appearance.Options.UseBorderColor = true;
     this.btnMemberCard_Print.Appearance.Options.UseFont = true;
     this.btnMemberCard_Print.Appearance.Options.UseForeColor = true;
     this.btnMemberCard_Print.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnMemberCard_Print.Enabled = false;
     this.btnMemberCard_Print.Location = new System.Drawing.Point(248, 32);
     this.btnMemberCard_Print.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.btnMemberCard_Print.Name = "btnMemberCard_Print";
     this.btnMemberCard_Print.Size = new System.Drawing.Size(128, 20);
     this.btnMemberCard_Print.TabIndex = 118;
     this.btnMemberCard_Print.Text = "Print Member Card";
     this.btnMemberCard_Print.Click += new System.EventHandler(this.btnMemberCard_Print_Click);
     //
     // groupControl1
     //
     this.groupControl1.Appearance.BackColor = System.Drawing.SystemColors.Control;
     this.groupControl1.Appearance.Options.UseBackColor = true;
     this.groupControl1.Controls.Add(this.btnCancelCard);
     this.groupControl1.Controls.Add(this.grpMemberCardBelow);
     this.groupControl1.Controls.Add(this.btnMemberCard_Reprint);
     this.groupControl1.Controls.Add(this.mcard_lblNStatusID);
     this.groupControl1.Controls.Add(this.cmbMemberCard);
     this.groupControl1.Controls.Add(this.btnMemberCard_Print);
     this.groupControl1.Controls.Add(this.GridMemberCard);
     this.groupControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.groupControl1.Location = new System.Drawing.Point(0, 0);
     this.groupControl1.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.groupControl1.LookAndFeel.UseDefaultLookAndFeel = false;
     this.groupControl1.Name = "groupControl1";
     this.groupControl1.Size = new System.Drawing.Size(984, 541);
     this.groupControl1.TabIndex = 123;
     this.groupControl1.Text = "Member Card";
     //
     // grpMemberCardBelow
     //
     this.grpMemberCardBelow.Appearance.BackColor = System.Drawing.Color.White;
     this.grpMemberCardBelow.Appearance.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.grpMemberCardBelow.Appearance.Options.UseBackColor = true;
     this.grpMemberCardBelow.Controls.Add(this.gcTransferMember);
     this.grpMemberCardBelow.Controls.Add(this.txtMemberName);
     this.grpMemberCardBelow.Controls.Add(this.txtMemberID);
     this.grpMemberCardBelow.Controls.Add(this.label2);
     this.grpMemberCardBelow.Controls.Add(this.label1);
     this.grpMemberCardBelow.Location = new System.Drawing.Point(16, 288);
     this.grpMemberCardBelow.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.grpMemberCardBelow.LookAndFeel.UseDefaultLookAndFeel = false;
     this.grpMemberCardBelow.LookAndFeel.UseWindowsXPTheme = false;
     this.grpMemberCardBelow.Name = "grpMemberCardBelow";
     this.grpMemberCardBelow.Size = new System.Drawing.Size(936, 224);
     this.grpMemberCardBelow.TabIndex = 123;
     this.grpMemberCardBelow.Text = "In Transit Member Card";
     //
     // gcTransferMember
     //
     this.gcTransferMember.Dock = System.Windows.Forms.DockStyle.Left;
     //
     // gcTransferMember.EmbeddedNavigator
     //
     this.gcTransferMember.EmbeddedNavigator.Name = "";
     this.gcTransferMember.Location = new System.Drawing.Point(2, 20);
     this.gcTransferMember.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.gcTransferMember.LookAndFeel.UseDefaultLookAndFeel = false;
     this.gcTransferMember.MainView = this.gvTransferMember;
     this.gcTransferMember.Name = "gcTransferMember";
     this.gcTransferMember.Size = new System.Drawing.Size(398, 202);
     this.gcTransferMember.TabIndex = 6;
     this.gcTransferMember.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
                                                                                                     this.gvTransferMember});
     //
     // gvTransferMember
     //
     this.gvTransferMember.GridControl = this.gcTransferMember;
     this.gvTransferMember.Name = "gvTransferMember";
     this.gvTransferMember.OptionsBehavior.Editable = false;
     this.gvTransferMember.OptionsCustomization.AllowColumnMoving = false;
     this.gvTransferMember.OptionsCustomization.AllowFilter = false;
     this.gvTransferMember.OptionsCustomization.AllowSort = false;
     this.gvTransferMember.OptionsView.ShowGroupPanel = false;
     //
     // txtMemberName
     //
     this.txtMemberName.EditValue = "";
     this.txtMemberName.Enabled = false;
     this.txtMemberName.Location = new System.Drawing.Point(536, 144);
     this.txtMemberName.Name = "txtMemberName";
     this.txtMemberName.Size = new System.Drawing.Size(224, 20);
     this.txtMemberName.TabIndex = 5;
     //
     // txtMemberID
     //
     this.txtMemberID.EditValue = "";
     this.txtMemberID.Enabled = false;
     this.txtMemberID.Location = new System.Drawing.Point(536, 96);
     this.txtMemberID.Name = "txtMemberID";
     //
     // txtMemberID.Properties
     //
     this.txtMemberID.Properties.Appearance.BackColor = System.Drawing.Color.LightBlue;
     this.txtMemberID.Properties.Appearance.Options.UseBackColor = true;
     this.txtMemberID.Size = new System.Drawing.Size(176, 20);
     this.txtMemberID.TabIndex = 4;
     this.txtMemberID.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtMemberID_KeyPress);
     //
     // label2
     //
     this.label2.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label2.Location = new System.Drawing.Point(432, 144);
     this.label2.Name = "label2";
     this.label2.TabIndex = 3;
     this.label2.Text = "Member Name";
     //
     // label1
     //
     this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label1.Location = new System.Drawing.Point(432, 96);
     this.label1.Name = "label1";
     this.label1.TabIndex = 2;
     this.label1.Text = "Member ID";
     //
     // btnCancelCard
     //
     this.btnCancelCard.Appearance.BackColor = System.Drawing.Color.LightGray;
     this.btnCancelCard.Appearance.BorderColor = System.Drawing.Color.Black;
     this.btnCancelCard.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.btnCancelCard.Appearance.ForeColor = System.Drawing.Color.Black;
     this.btnCancelCard.Appearance.Options.UseBackColor = true;
     this.btnCancelCard.Appearance.Options.UseBorderColor = true;
     this.btnCancelCard.Appearance.Options.UseFont = true;
     this.btnCancelCard.Appearance.Options.UseForeColor = true;
     this.btnCancelCard.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnCancelCard.Location = new System.Drawing.Point(544, 32);
     this.btnCancelCard.Name = "btnCancelCard";
     this.btnCancelCard.Size = new System.Drawing.Size(72, 20);
     this.btnCancelCard.TabIndex = 124;
     this.btnCancelCard.Text = "Cancel";
     this.btnCancelCard.Click += new System.EventHandler(this.btnCancelCard_Click);
     //
     // frmMemberCard
     //
     this.AutoScale = false;
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.BackColor = System.Drawing.Color.White;
     this.ClientSize = new System.Drawing.Size(984, 541);
     this.Controls.Add(this.groupControl1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
     this.Name = "frmMemberCard";
     this.Text = "Member Card";
     this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
     this.Load += new System.EventHandler(this.frmMemberCard_Load);
     ((System.ComponentModel.ISupportInitialize)(this.GridMemberCard)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMemberCard)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemImageComboBox1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemImageComboBox2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbMemberCard.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.grpMemberCardBelow)).EndInit();
     this.grpMemberCardBelow.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gcTransferMember)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvTransferMember)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMemberName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMemberID.Properties)).EndInit();
     this.ResumeLayout(false);
 }
Beispiel #21
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.pvSpaFitness = new DevExpress.XtraPivotGrid.PivotGridControl();
     this.pivotGridField1 = new DevExpress.XtraPivotGrid.PivotGridField();
     this.pivotGridField2 = new DevExpress.XtraPivotGrid.PivotGridField();
     this.pivotGridField3 = new DevExpress.XtraPivotGrid.PivotGridField();
     this.pivotGridField4 = new DevExpress.XtraPivotGrid.PivotGridField();
     this.pivotGridField5 = new DevExpress.XtraPivotGrid.PivotGridField();
     this.cmbCategory = new DevExpress.XtraEditors.ImageComboBoxEdit();
     this.label1 = new System.Windows.Forms.Label();
     this.DateFrom = new DevExpress.XtraEditors.DateEdit();
     this.DateTo = new System.Windows.Forms.Label();
     this.label2 = new System.Windows.Forms.Label();
     this.DateRangeTo = new DevExpress.XtraEditors.DateEdit();
     this.btnReset = new DevExpress.XtraEditors.SimpleButton();
     this.btnSearch = new DevExpress.XtraEditors.SimpleButton();
     this.label3 = new System.Windows.Forms.Label();
     this.txtItemDesc = new DevExpress.XtraEditors.TextEdit();
     this.label6 = new System.Windows.Forms.Label();
     this.txtItemCode = new DevExpress.XtraEditors.TextEdit();
     ((System.ComponentModel.ISupportInitialize)(this.pvSpaFitness)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbCategory.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DateFrom.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DateRangeTo.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtItemDesc.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtItemCode.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // pvSpaFitness
     //
     this.pvSpaFitness.Cursor = System.Windows.Forms.Cursors.Default;
     this.pvSpaFitness.Fields.AddRange(new DevExpress.XtraPivotGrid.PivotGridField[] {
                                                                                         this.pivotGridField1,
                                                                                         this.pivotGridField2,
                                                                                         this.pivotGridField3,
                                                                                         this.pivotGridField4,
                                                                                         this.pivotGridField5});
     this.pvSpaFitness.Location = new System.Drawing.Point(8, 48);
     this.pvSpaFitness.Name = "pvSpaFitness";
     this.pvSpaFitness.OptionsCustomization.AllowDrag = false;
     this.pvSpaFitness.OptionsView.ShowDataHeaders = false;
     this.pvSpaFitness.OptionsView.ShowFilterHeaders = false;
     this.pvSpaFitness.Size = new System.Drawing.Size(760, 352);
     this.pvSpaFitness.TabIndex = 0;
     //
     // pivotGridField1
     //
     this.pivotGridField1.Area = DevExpress.XtraPivotGrid.PivotArea.RowArea;
     this.pivotGridField1.AreaIndex = 1;
     this.pivotGridField1.Caption = "Item Code";
     this.pivotGridField1.FieldName = "strCode";
     this.pivotGridField1.Name = "pivotGridField1";
     //
     // pivotGridField2
     //
     this.pivotGridField2.Area = DevExpress.XtraPivotGrid.PivotArea.RowArea;
     this.pivotGridField2.AreaIndex = 2;
     this.pivotGridField2.Caption = "Item Desc";
     this.pivotGridField2.FieldName = "strDescription";
     this.pivotGridField2.Name = "pivotGridField2";
     //
     // pivotGridField3
     //
     this.pivotGridField3.Area = DevExpress.XtraPivotGrid.PivotArea.DataArea;
     this.pivotGridField3.AreaIndex = 0;
     this.pivotGridField3.Caption = "Quantity";
     this.pivotGridField3.FieldName = "nQuantity";
     this.pivotGridField3.Name = "pivotGridField3";
     //
     // pivotGridField4
     //
     this.pivotGridField4.Area = DevExpress.XtraPivotGrid.PivotArea.ColumnArea;
     this.pivotGridField4.AreaIndex = 0;
     this.pivotGridField4.Caption = "Branch";
     this.pivotGridField4.FieldName = "strBranchCode";
     this.pivotGridField4.Name = "pivotGridField4";
     this.pivotGridField4.Options.AllowDrag = DevExpress.Utils.DefaultBoolean.False;
     this.pivotGridField4.Options.AllowFilter = DevExpress.Utils.DefaultBoolean.False;
     this.pivotGridField4.Options.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     //
     // pivotGridField5
     //
     this.pivotGridField5.Area = DevExpress.XtraPivotGrid.PivotArea.RowArea;
     this.pivotGridField5.AreaIndex = 0;
     this.pivotGridField5.Caption = "Category";
     this.pivotGridField5.FieldName = "Category";
     this.pivotGridField5.Name = "pivotGridField5";
     //
     // cmbCategory
     //
     this.cmbCategory.Location = new System.Drawing.Point(72, 24);
     this.cmbCategory.Name = "cmbCategory";
     //
     // cmbCategory.Properties
     //
     this.cmbCategory.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cmbCategory.Size = new System.Drawing.Size(112, 20);
     this.cmbCategory.TabIndex = 1;
     //
     // label1
     //
     this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.label1.Location = new System.Drawing.Point(8, 24);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(64, 16);
     this.label1.TabIndex = 2;
     this.label1.Text = "Category";
     //
     // DateFrom
     //
     this.DateFrom.EditValue = null;
     this.DateFrom.Location = new System.Drawing.Point(48, 0);
     this.DateFrom.Name = "DateFrom";
     //
     // DateFrom.Properties
     //
     this.DateFrom.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                      new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.DateFrom.Size = new System.Drawing.Size(72, 20);
     this.DateFrom.TabIndex = 13;
     //
     // DateTo
     //
     this.DateTo.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.DateTo.Location = new System.Drawing.Point(120, 0);
     this.DateTo.Name = "DateTo";
     this.DateTo.Size = new System.Drawing.Size(24, 16);
     this.DateTo.TabIndex = 12;
     this.DateTo.Text = "To";
     //
     // label2
     //
     this.label2.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.label2.Location = new System.Drawing.Point(8, 0);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(40, 16);
     this.label2.TabIndex = 11;
     this.label2.Text = "From";
     //
     // DateRangeTo
     //
     this.DateRangeTo.EditValue = null;
     this.DateRangeTo.Location = new System.Drawing.Point(152, 0);
     this.DateRangeTo.Name = "DateRangeTo";
     //
     // DateRangeTo.Properties
     //
     this.DateRangeTo.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.DateRangeTo.Properties.DisplayFormat.FormatString = "dd/MM/yyyy";
     this.DateRangeTo.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.DateRangeTo.Properties.EditFormat.FormatString = "dd/MM/yyyy";
     this.DateRangeTo.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.DateRangeTo.Properties.Mask.EditMask = "dd/MM/yyyy";
     this.DateRangeTo.Size = new System.Drawing.Size(64, 20);
     this.DateRangeTo.TabIndex = 10;
     //
     // btnReset
     //
     this.btnReset.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnReset.Location = new System.Drawing.Point(520, 24);
     this.btnReset.Name = "btnReset";
     this.btnReset.Size = new System.Drawing.Size(56, 20);
     this.btnReset.TabIndex = 66;
     this.btnReset.Text = "Reset";
     this.btnReset.Click += new System.EventHandler(this.btnReset_Click);
     //
     // btnSearch
     //
     this.btnSearch.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnSearch.Location = new System.Drawing.Point(456, 24);
     this.btnSearch.Name = "btnSearch";
     this.btnSearch.Size = new System.Drawing.Size(56, 20);
     this.btnSearch.TabIndex = 65;
     this.btnSearch.Text = "Search";
     this.btnSearch.Click += new System.EventHandler(this.btnSearch_Click);
     //
     // label3
     //
     this.label3.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.label3.Location = new System.Drawing.Point(312, 24);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(64, 16);
     this.label3.TabIndex = 60;
     this.label3.Text = "Item Desc";
     //
     // txtItemDesc
     //
     this.txtItemDesc.EditValue = "";
     this.txtItemDesc.Location = new System.Drawing.Point(376, 24);
     this.txtItemDesc.Name = "txtItemDesc";
     this.txtItemDesc.Size = new System.Drawing.Size(72, 20);
     this.txtItemDesc.TabIndex = 59;
     //
     // label6
     //
     this.label6.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.label6.Location = new System.Drawing.Point(184, 24);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(64, 16);
     this.label6.TabIndex = 58;
     this.label6.Text = "Item Code";
     //
     // txtItemCode
     //
     this.txtItemCode.EditValue = "";
     this.txtItemCode.Location = new System.Drawing.Point(248, 24);
     this.txtItemCode.Name = "txtItemCode";
     this.txtItemCode.Size = new System.Drawing.Size(64, 20);
     this.txtItemCode.TabIndex = 57;
     //
     // RPSpaFitness
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize = new System.Drawing.Size(864, 501);
     this.Controls.Add(this.btnReset);
     this.Controls.Add(this.btnSearch);
     this.Controls.Add(this.label3);
     this.Controls.Add(this.txtItemDesc);
     this.Controls.Add(this.label6);
     this.Controls.Add(this.txtItemCode);
     this.Controls.Add(this.DateFrom);
     this.Controls.Add(this.DateTo);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.DateRangeTo);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.cmbCategory);
     this.Controls.Add(this.pvSpaFitness);
     this.Name = "RPSpaFitness";
     this.Text = "Spa & Fitness";
     this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
     this.Load += new System.EventHandler(this.RPSpaFitness_Load);
     ((System.ComponentModel.ISupportInitialize)(this.pvSpaFitness)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbCategory.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DateFrom.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DateRangeTo.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtItemDesc.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtItemCode.Properties)).EndInit();
     this.ResumeLayout(false);
 }
Beispiel #22
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.tabRPCommission = new DevExpress.XtraTab.XtraTabControl();
     this.xtraTabPage1 = new DevExpress.XtraTab.XtraTabPage();
     this.gcSalesCommission = 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.xtraTabPage2 = new DevExpress.XtraTab.XtraTabPage();
     this.gridControl2 = new DevExpress.XtraGrid.GridControl();
     this.gridView2 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn8 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn10 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn12 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn13 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn14 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.label1 = new System.Windows.Forms.Label();
     this.label2 = new System.Windows.Forms.Label();
     this.cmYear = new DevExpress.XtraEditors.ImageComboBoxEdit();
     this.cmMonth = new DevExpress.XtraEditors.ImageComboBoxEdit();
     this.label3 = new System.Windows.Forms.Label();
     this.sbtnEnquiry = new DevExpress.XtraEditors.SimpleButton();
     this.lkedtEmployee = new DevExpress.XtraEditors.LookUpEdit();
     ((System.ComponentModel.ISupportInitialize)(this.tabRPCommission)).BeginInit();
     this.tabRPCommission.SuspendLayout();
     this.xtraTabPage1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gcSalesCommission)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     this.xtraTabPage2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControl2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmYear.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmMonth.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkedtEmployee.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // tabRPCommission
     //
     this.tabRPCommission.Location = new System.Drawing.Point(6, 40);
     this.tabRPCommission.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.tabRPCommission.LookAndFeel.UseDefaultLookAndFeel = false;
     this.tabRPCommission.Name = "tabRPCommission";
     this.tabRPCommission.SelectedTabPage = this.xtraTabPage1;
     this.tabRPCommission.Size = new System.Drawing.Size(960, 424);
     this.tabRPCommission.TabIndex = 1;
     this.tabRPCommission.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
                                                                                     this.xtraTabPage1,
                                                                                     this.xtraTabPage2});
     this.tabRPCommission.Text = "xtraTabControl1";
     //
     // xtraTabPage1
     //
     this.xtraTabPage1.Controls.Add(this.gcSalesCommission);
     this.xtraTabPage1.Name = "xtraTabPage1";
     this.xtraTabPage1.Size = new System.Drawing.Size(954, 398);
     this.xtraTabPage1.Text = "Sales Commission";
     //
     // gcSalesCommission
     //
     this.gcSalesCommission.Dock = System.Windows.Forms.DockStyle.Fill;
     //
     // gcSalesCommission.EmbeddedNavigator
     //
     this.gcSalesCommission.EmbeddedNavigator.Name = "";
     this.gcSalesCommission.Location = new System.Drawing.Point(0, 0);
     this.gcSalesCommission.MainView = this.gridView1;
     this.gcSalesCommission.Name = "gcSalesCommission";
     this.gcSalesCommission.Size = new System.Drawing.Size(954, 398);
     this.gcSalesCommission.TabIndex = 1;
     this.gcSalesCommission.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.gridView1.GridControl = this.gcSalesCommission;
     this.gridView1.Name = "gridView1";
     this.gridView1.OptionsBehavior.Editable = false;
     this.gridView1.OptionsCustomization.AllowFilter = false;
     this.gridView1.OptionsCustomization.AllowSort = false;
     this.gridView1.OptionsView.ShowGroupPanel = false;
     //
     // gridColumn1
     //
     this.gridColumn1.Caption = "Commission Code";
     this.gridColumn1.FieldName = "strCommission";
     this.gridColumn1.Name = "gridColumn1";
     this.gridColumn1.Visible = true;
     this.gridColumn1.VisibleIndex = 0;
     //
     // gridColumn2
     //
     this.gridColumn2.Caption = "Amount";
     this.gridColumn2.FieldName = "mTotalCommission";
     this.gridColumn2.Name = "gridColumn2";
     this.gridColumn2.Visible = true;
     this.gridColumn2.VisibleIndex = 1;
     //
     // xtraTabPage2
     //
     this.xtraTabPage2.Controls.Add(this.gridControl2);
     this.xtraTabPage2.Name = "xtraTabPage2";
     this.xtraTabPage2.Size = new System.Drawing.Size(954, 398);
     this.xtraTabPage2.Text = "Service Commission";
     //
     // 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.Size = new System.Drawing.Size(954, 398);
     this.gridControl2.TabIndex = 2;
     this.gridControl2.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
                                                                                                 this.gridView2});
     //
     // gridView2
     //
     this.gridView2.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
                                                                                      this.gridColumn8,
                                                                                      this.gridColumn10,
                                                                                      this.gridColumn12,
                                                                                      this.gridColumn13,
                                                                                      this.gridColumn14});
     this.gridView2.GridControl = this.gridControl2;
     this.gridView2.Name = "gridView2";
     this.gridView2.OptionsBehavior.Editable = false;
     this.gridView2.OptionsCustomization.AllowFilter = false;
     this.gridView2.OptionsCustomization.AllowSort = false;
     this.gridView2.OptionsView.ShowGroupPanel = false;
     //
     // gridColumn8
     //
     this.gridColumn8.Caption = "Date";
     this.gridColumn8.FieldName = "dtDate";
     this.gridColumn8.Name = "gridColumn8";
     this.gridColumn8.Visible = true;
     this.gridColumn8.VisibleIndex = 0;
     this.gridColumn8.Width = 85;
     //
     // gridColumn10
     //
     this.gridColumn10.Caption = "Branch";
     this.gridColumn10.FieldName = "strBranchCode";
     this.gridColumn10.Name = "gridColumn10";
     this.gridColumn10.Visible = true;
     this.gridColumn10.VisibleIndex = 1;
     this.gridColumn10.Width = 89;
     //
     // gridColumn12
     //
     this.gridColumn12.Caption = "Service Code";
     this.gridColumn12.FieldName = "strServiceCode";
     this.gridColumn12.Name = "gridColumn12";
     this.gridColumn12.Visible = true;
     this.gridColumn12.VisibleIndex = 2;
     this.gridColumn12.Width = 90;
     //
     // gridColumn13
     //
     this.gridColumn13.Caption = "Service Description";
     this.gridColumn13.FieldName = "strDescription";
     this.gridColumn13.Name = "gridColumn13";
     this.gridColumn13.Visible = true;
     this.gridColumn13.VisibleIndex = 3;
     this.gridColumn13.Width = 93;
     //
     // gridColumn14
     //
     this.gridColumn14.Caption = "Commission Amount";
     this.gridColumn14.FieldName = "mCommission";
     this.gridColumn14.Name = "gridColumn14";
     this.gridColumn14.Visible = true;
     this.gridColumn14.VisibleIndex = 4;
     this.gridColumn14.Width = 78;
     //
     // label1
     //
     this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label1.Location = new System.Drawing.Point(16, 8);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(64, 23);
     this.label1.TabIndex = 2;
     this.label1.Text = "Year";
     //
     // label2
     //
     this.label2.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label2.Location = new System.Drawing.Point(208, 8);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(64, 23);
     this.label2.TabIndex = 3;
     this.label2.Text = "Month";
     //
     // cmYear
     //
     this.cmYear.Location = new System.Drawing.Point(80, 8);
     this.cmYear.Name = "cmYear";
     //
     // cmYear.Properties
     //
     this.cmYear.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                    new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cmYear.Properties.Items.AddRange(new object[] {
                                                            new DevExpress.XtraEditors.Controls.ImageComboBoxItem("2005", 2005, -1),
                                                            new DevExpress.XtraEditors.Controls.ImageComboBoxItem("2006", 2006, -1),
                                                            new DevExpress.XtraEditors.Controls.ImageComboBoxItem("2007", 2007, -1),
                                                            new DevExpress.XtraEditors.Controls.ImageComboBoxItem("2008", 2008, -1),
                                                            new DevExpress.XtraEditors.Controls.ImageComboBoxItem("2009", 2009, -1),
                                                            new DevExpress.XtraEditors.Controls.ImageComboBoxItem("2010", 2010, -1),
                                                            new DevExpress.XtraEditors.Controls.ImageComboBoxItem("2011", 2011, -1),
                                                            new DevExpress.XtraEditors.Controls.ImageComboBoxItem("2012", 2012, -1)});
     this.cmYear.TabIndex = 4;
     //
     // cmMonth
     //
     this.cmMonth.Location = new System.Drawing.Point(272, 8);
     this.cmMonth.Name = "cmMonth";
     //
     // cmMonth.Properties
     //
     this.cmMonth.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cmMonth.Properties.Items.AddRange(new object[] {
                                                             new DevExpress.XtraEditors.Controls.ImageComboBoxItem("1", 1, -1),
                                                             new DevExpress.XtraEditors.Controls.ImageComboBoxItem("2", 2, -1),
                                                             new DevExpress.XtraEditors.Controls.ImageComboBoxItem("3", 3, -1),
                                                             new DevExpress.XtraEditors.Controls.ImageComboBoxItem("4", 4, -1),
                                                             new DevExpress.XtraEditors.Controls.ImageComboBoxItem("5", 5, -1),
                                                             new DevExpress.XtraEditors.Controls.ImageComboBoxItem("6", 6, -1),
                                                             new DevExpress.XtraEditors.Controls.ImageComboBoxItem("7", 7, -1),
                                                             new DevExpress.XtraEditors.Controls.ImageComboBoxItem("8", 8, -1),
                                                             new DevExpress.XtraEditors.Controls.ImageComboBoxItem("9", 9, -1),
                                                             new DevExpress.XtraEditors.Controls.ImageComboBoxItem("10", 10, -1),
                                                             new DevExpress.XtraEditors.Controls.ImageComboBoxItem("11", 11, -1),
                                                             new DevExpress.XtraEditors.Controls.ImageComboBoxItem("12", 12, -1)});
     this.cmMonth.TabIndex = 5;
     //
     // label3
     //
     this.label3.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label3.Location = new System.Drawing.Point(400, 8);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(80, 23);
     this.label3.TabIndex = 6;
     this.label3.Text = "Employee";
     //
     // sbtnEnquiry
     //
     this.sbtnEnquiry.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.sbtnEnquiry.Appearance.Options.UseFont = true;
     this.sbtnEnquiry.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.sbtnEnquiry.Location = new System.Drawing.Point(672, 8);
     this.sbtnEnquiry.Name = "sbtnEnquiry";
     this.sbtnEnquiry.TabIndex = 8;
     this.sbtnEnquiry.Text = "Enquiry";
     this.sbtnEnquiry.Click += new System.EventHandler(this.sbtnEnquiry_Click);
     //
     // lkedtEmployee
     //
     this.lkedtEmployee.EditValue = "";
     this.lkedtEmployee.Location = new System.Drawing.Point(472, 8);
     this.lkedtEmployee.Name = "lkedtEmployee";
     //
     // lkedtEmployee.Properties
     //
     this.lkedtEmployee.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                           new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lkedtEmployee.Size = new System.Drawing.Size(184, 20);
     this.lkedtEmployee.TabIndex = 16;
     //
     // RPCommission
     //
     this.AutoScale = false;
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize = new System.Drawing.Size(978, 472);
     this.Controls.Add(this.lkedtEmployee);
     this.Controls.Add(this.sbtnEnquiry);
     this.Controls.Add(this.label3);
     this.Controls.Add(this.cmMonth);
     this.Controls.Add(this.cmYear);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.tabRPCommission);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
     this.Name = "RPCommission";
     this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Show;
     this.Text = "Commission";
     this.Load += new System.EventHandler(this.RPCommission_Load);
     ((System.ComponentModel.ISupportInitialize)(this.tabRPCommission)).EndInit();
     this.tabRPCommission.ResumeLayout(false);
     this.xtraTabPage1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gcSalesCommission)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     this.xtraTabPage2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControl2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmYear.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmMonth.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkedtEmployee.Properties)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(EditTernaryRelationship));
     this.btnOK = new DevExpress.XtraEditors.SimpleButton();
     this.btnCancel = new DevExpress.XtraEditors.SimpleButton();
     this.imageComboBoxEdit2 = new DevExpress.XtraEditors.ImageComboBoxEdit();
     this.imageCollection2 = new DevExpress.Utils.ImageCollection(this.components);
     this.imageComboBoxEdit1 = new DevExpress.XtraEditors.ImageComboBoxEdit();
     this.labEntity1 = new System.Windows.Forms.GroupBox();
     this.labEntity2 = new System.Windows.Forms.GroupBox();
     this.imageComboBoxEdit3 = new DevExpress.XtraEditors.ImageComboBoxEdit();
     this.labEntity3 = new System.Windows.Forms.GroupBox();
     this.panelDoubleBuffered1 = new ERDesigner.PanelDoubleBuffered();
     ((System.ComponentModel.ISupportInitialize)(this.imageComboBoxEdit2.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.imageCollection2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.imageComboBoxEdit1.Properties)).BeginInit();
     this.labEntity1.SuspendLayout();
     this.labEntity2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.imageComboBoxEdit3.Properties)).BeginInit();
     this.labEntity3.SuspendLayout();
     this.SuspendLayout();
     //
     // btnOK
     //
     this.btnOK.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.btnOK.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.btnOK.Location = new System.Drawing.Point(169, 307);
     this.btnOK.Name = "btnOK";
     this.btnOK.Size = new System.Drawing.Size(46, 23);
     this.btnOK.TabIndex = 8;
     this.btnOK.Text = "OK";
     //
     // btnCancel
     //
     this.btnCancel.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.btnCancel.Location = new System.Drawing.Point(221, 307);
     this.btnCancel.Name = "btnCancel";
     this.btnCancel.Size = new System.Drawing.Size(50, 23);
     this.btnCancel.TabIndex = 9;
     this.btnCancel.Text = "Cancel";
     //
     // imageComboBoxEdit2
     //
     this.imageComboBoxEdit2.Location = new System.Drawing.Point(9, 20);
     this.imageComboBoxEdit2.Name = "imageComboBoxEdit2";
     this.imageComboBoxEdit2.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.imageComboBoxEdit2.Properties.Items.AddRange(new DevExpress.XtraEditors.Controls.ImageComboBoxItem[] {
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Optional One", "0, 1", 1),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Mandatory One", "1, 1", 3),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Optional Many", "0, n", 0),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Mandatory Many", "1, n", 2)});
     this.imageComboBoxEdit2.Properties.SmallImages = this.imageCollection2;
     this.imageComboBoxEdit2.Size = new System.Drawing.Size(130, 20);
     this.imageComboBoxEdit2.TabIndex = 11;
     this.imageComboBoxEdit2.SelectedIndexChanged += new System.EventHandler(this.imageComboBoxEdit2_SelectedIndexChanged);
     //
     // imageCollection2
     //
     this.imageCollection2.ImageSize = new System.Drawing.Size(20, 15);
     this.imageCollection2.ImageStream = ((DevExpress.Utils.ImageCollectionStreamer)(resources.GetObject("imageCollection2.ImageStream")));
     //
     // imageComboBoxEdit1
     //
     this.imageComboBoxEdit1.Location = new System.Drawing.Point(9, 19);
     this.imageComboBoxEdit1.Name = "imageComboBoxEdit1";
     this.imageComboBoxEdit1.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.imageComboBoxEdit1.Properties.Items.AddRange(new DevExpress.XtraEditors.Controls.ImageComboBoxItem[] {
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Optional One", "0, 1", 1),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Mandatory One", "1, 1", 3),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Optional Many", "0, n", 0),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Mandatory Many", "1, n", 2)});
     this.imageComboBoxEdit1.Properties.SmallImages = this.imageCollection2;
     this.imageComboBoxEdit1.Size = new System.Drawing.Size(130, 20);
     this.imageComboBoxEdit1.TabIndex = 11;
     this.imageComboBoxEdit1.SelectedIndexChanged += new System.EventHandler(this.imageComboBoxEdit1_SelectedIndexChanged);
     //
     // labEntity1
     //
     this.labEntity1.Anchor = System.Windows.Forms.AnchorStyles.Top;
     this.labEntity1.Controls.Add(this.imageComboBoxEdit1);
     this.labEntity1.Location = new System.Drawing.Point(152, 12);
     this.labEntity1.Name = "labEntity1";
     this.labEntity1.Size = new System.Drawing.Size(145, 52);
     this.labEntity1.TabIndex = 13;
     this.labEntity1.TabStop = false;
     this.labEntity1.Text = "Entity 1";
     //
     // labEntity2
     //
     this.labEntity2.Anchor = System.Windows.Forms.AnchorStyles.Top;
     this.labEntity2.Controls.Add(this.imageComboBoxEdit2);
     this.labEntity2.Location = new System.Drawing.Point(12, 290);
     this.labEntity2.Name = "labEntity2";
     this.labEntity2.Size = new System.Drawing.Size(145, 52);
     this.labEntity2.TabIndex = 13;
     this.labEntity2.TabStop = false;
     this.labEntity2.Text = "Entity 2";
     //
     // imageComboBoxEdit3
     //
     this.imageComboBoxEdit3.Location = new System.Drawing.Point(9, 20);
     this.imageComboBoxEdit3.Name = "imageComboBoxEdit3";
     this.imageComboBoxEdit3.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.imageComboBoxEdit3.Properties.Items.AddRange(new DevExpress.XtraEditors.Controls.ImageComboBoxItem[] {
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Optional One", "0, 1", 1),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Mandatory One", "1, 1", 3),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Optional Many", "0, n", 0),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Mandatory Many", "1, n", 2)});
     this.imageComboBoxEdit3.Properties.SmallImages = this.imageCollection2;
     this.imageComboBoxEdit3.Size = new System.Drawing.Size(130, 20);
     this.imageComboBoxEdit3.TabIndex = 11;
     this.imageComboBoxEdit3.SelectedIndexChanged += new System.EventHandler(this.imageComboBoxEdit3_SelectedIndexChanged);
     //
     // labEntity3
     //
     this.labEntity3.Anchor = System.Windows.Forms.AnchorStyles.Top;
     this.labEntity3.Controls.Add(this.imageComboBoxEdit3);
     this.labEntity3.Location = new System.Drawing.Point(287, 290);
     this.labEntity3.Name = "labEntity3";
     this.labEntity3.Size = new System.Drawing.Size(145, 52);
     this.labEntity3.TabIndex = 13;
     this.labEntity3.TabStop = false;
     this.labEntity3.Text = "Entity 3";
     //
     // panelDoubleBuffered1
     //
     this.panelDoubleBuffered1.BackColor = System.Drawing.Color.WhiteSmoke;
     this.panelDoubleBuffered1.Location = new System.Drawing.Point(11, 76);
     this.panelDoubleBuffered1.Name = "panelDoubleBuffered1";
     this.panelDoubleBuffered1.Size = new System.Drawing.Size(421, 202);
     this.panelDoubleBuffered1.TabIndex = 12;
     //
     // EditTernaryRelationship
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(444, 354);
     this.Controls.Add(this.panelDoubleBuffered1);
     this.Controls.Add(this.btnCancel);
     this.Controls.Add(this.btnOK);
     this.Controls.Add(this.labEntity3);
     this.Controls.Add(this.labEntity2);
     this.Controls.Add(this.labEntity1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "EditTernaryRelationship";
     this.ShowInTaskbar = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Edit Tenary Relationship";
     ((System.ComponentModel.ISupportInitialize)(this.imageComboBoxEdit2.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.imageCollection2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.imageComboBoxEdit1.Properties)).EndInit();
     this.labEntity1.ResumeLayout(false);
     this.labEntity2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.imageComboBoxEdit3.Properties)).EndInit();
     this.labEntity3.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Beispiel #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.groupRoster      = new DevExpress.XtraEditors.GroupControl();
     this.label3           = new System.Windows.Forms.Label();
     this.cbYear           = new DevExpress.XtraEditors.ImageComboBoxEdit();
     this.comboBoxRosterCC = new DevExpress.XtraEditors.ImageComboBoxEdit();
     this.groupControl1    = new DevExpress.XtraEditors.GroupControl();
     this.groupControl35   = new DevExpress.XtraEditors.GroupControl();
     this.label71          = new System.Windows.Forms.Label();
     this.label72          = new System.Windows.Forms.Label();
     this.label73          = new System.Windows.Forms.Label();
     this.label74          = new System.Windows.Forms.Label();
     this.label75          = new System.Windows.Forms.Label();
     this.label76          = new System.Windows.Forms.Label();
     this.label77          = new System.Windows.Forms.Label();
     this.label78          = new System.Windows.Forms.Label();
     this.btnNextWeek      = new DevExpress.XtraEditors.SimpleButton();
     this.btnPastWeek      = new DevExpress.XtraEditors.SimpleButton();
     this.btnPrint         = new DevExpress.XtraEditors.SimpleButton();
     this.label2           = new System.Windows.Forms.Label();
     this.comboBoxRoster   = new DevExpress.XtraEditors.ImageComboBoxEdit();
     this.label1           = new System.Windows.Forms.Label();
     ((System.ComponentModel.ISupportInitialize)(this.groupRoster)).BeginInit();
     this.groupRoster.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cbYear.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.comboBoxRosterCC.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl35)).BeginInit();
     this.groupControl35.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.comboBoxRoster.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // groupRoster
     //
     this.groupRoster.Appearance.BackColor            = System.Drawing.SystemColors.Control;
     this.groupRoster.Appearance.GradientMode         = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.groupRoster.Appearance.Options.UseBackColor = true;
     this.groupRoster.Controls.Add(this.label3);
     this.groupRoster.Controls.Add(this.cbYear);
     this.groupRoster.Controls.Add(this.comboBoxRosterCC);
     this.groupRoster.Controls.Add(this.groupControl1);
     this.groupRoster.Controls.Add(this.btnPrint);
     this.groupRoster.Controls.Add(this.label2);
     this.groupRoster.Controls.Add(this.comboBoxRoster);
     this.groupRoster.Controls.Add(this.label1);
     this.groupRoster.Location          = new System.Drawing.Point(8, 0);
     this.groupRoster.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.groupRoster.LookAndFeel.UseDefaultLookAndFeel = false;
     this.groupRoster.LookAndFeel.UseWindowsXPTheme     = false;
     this.groupRoster.Name     = "groupRoster";
     this.groupRoster.Size     = new System.Drawing.Size(984, 570);
     this.groupRoster.TabIndex = 28;
     this.groupRoster.Text     = "Roster";
     //
     // label3
     //
     this.label3.BackColor = System.Drawing.Color.Transparent;
     this.label3.Font      = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label3.ForeColor = System.Drawing.Color.Black;
     this.label3.Location  = new System.Drawing.Point(800, 27);
     this.label3.Name      = "label3";
     this.label3.Size      = new System.Drawing.Size(38, 16);
     this.label3.TabIndex  = 26;
     this.label3.Text      = "Year";
     //
     // cbYear
     //
     this.cbYear.EditValue = 2008;
     this.cbYear.ImeMode   = System.Windows.Forms.ImeMode.NoControl;
     this.cbYear.Location  = new System.Drawing.Point(848, 24);
     this.cbYear.Name      = "cbYear";
     //
     // cbYear.Properties
     //
     this.cbYear.Properties.Appearance.BackColor            = System.Drawing.SystemColors.Window;
     this.cbYear.Properties.Appearance.Options.UseBackColor = true;
     this.cbYear.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Style3D;
     this.cbYear.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.cbYear.Properties.Items.AddRange(new object[] {
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("2007", 2007, -1),
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("2008", 2008, -1),
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("2009", 2009, -1)
     });
     this.cbYear.Properties.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.cbYear.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.cbYear.Size     = new System.Drawing.Size(128, 22);
     this.cbYear.TabIndex = 25;
     //
     // comboBoxRosterCC
     //
     this.comboBoxRosterCC.EditValue = 0;
     this.comboBoxRosterCC.Location  = new System.Drawing.Point(304, 32);
     this.comboBoxRosterCC.Name      = "comboBoxRosterCC";
     //
     // comboBoxRosterCC.Properties
     //
     this.comboBoxRosterCC.Properties.Appearance.BackColor            = System.Drawing.SystemColors.Window;
     this.comboBoxRosterCC.Properties.Appearance.Options.UseBackColor = true;
     this.comboBoxRosterCC.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.comboBoxRosterCC.Properties.Items.AddRange(new object[] {
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("-- Select All --", 0, -1)
     });
     this.comboBoxRosterCC.Properties.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.comboBoxRosterCC.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.comboBoxRosterCC.Size                  = new System.Drawing.Size(128, 20);
     this.comboBoxRosterCC.TabIndex              = 20;
     this.comboBoxRosterCC.SelectedValueChanged += new System.EventHandler(this.comboBoxRosterCC_SelectedValueChanged);
     //
     // groupControl1
     //
     this.groupControl1.Controls.Add(this.groupControl35);
     this.groupControl1.Controls.Add(this.btnNextWeek);
     this.groupControl1.Controls.Add(this.btnPastWeek);
     this.groupControl1.Dock     = System.Windows.Forms.DockStyle.Bottom;
     this.groupControl1.Location = new System.Drawing.Point(2, 56);
     this.groupControl1.LookAndFeel.UseDefaultLookAndFeel = false;
     this.groupControl1.Name     = "groupControl1";
     this.groupControl1.Size     = new System.Drawing.Size(980, 512);
     this.groupControl1.TabIndex = 12;
     //
     // groupControl35
     //
     this.groupControl35.Appearance.BackColor              = System.Drawing.SystemColors.Control;
     this.groupControl35.Appearance.ForeColor              = System.Drawing.Color.Black;
     this.groupControl35.Appearance.Options.UseBackColor   = true;
     this.groupControl35.Appearance.Options.UseForeColor   = true;
     this.groupControl35.AppearanceCaption.Font            = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.groupControl35.AppearanceCaption.Options.UseFont = true;
     this.groupControl35.Controls.Add(this.label71);
     this.groupControl35.Controls.Add(this.label72);
     this.groupControl35.Controls.Add(this.label73);
     this.groupControl35.Controls.Add(this.label74);
     this.groupControl35.Controls.Add(this.label75);
     this.groupControl35.Controls.Add(this.label76);
     this.groupControl35.Controls.Add(this.label77);
     this.groupControl35.Controls.Add(this.label78);
     this.groupControl35.Location = new System.Drawing.Point(824, 24);
     this.groupControl35.LookAndFeel.UseDefaultLookAndFeel = false;
     this.groupControl35.Name     = "groupControl35";
     this.groupControl35.Size     = new System.Drawing.Size(144, 168);
     this.groupControl35.TabIndex = 32;
     this.groupControl35.Text     = "Legend";
     //
     // label71
     //
     this.label71.Location = new System.Drawing.Point(42, 120);
     this.label71.Name     = "label71";
     this.label71.Size     = new System.Drawing.Size(86, 16);
     this.label71.TabIndex = 7;
     this.label71.Text     = "Time off";
     //
     // label72
     //
     this.label72.BackColor = System.Drawing.Color.Green;
     this.label72.Location  = new System.Drawing.Point(10, 120);
     this.label72.Name      = "label72";
     this.label72.Size      = new System.Drawing.Size(26, 23);
     this.label72.TabIndex  = 6;
     //
     // label73
     //
     this.label73.Location = new System.Drawing.Point(42, 93);
     this.label73.Name     = "label73";
     this.label73.Size     = new System.Drawing.Size(86, 16);
     this.label73.TabIndex = 5;
     this.label73.Text     = "Full day leave";
     //
     // label74
     //
     this.label74.BackColor = System.Drawing.Color.LightBlue;
     this.label74.Location  = new System.Drawing.Point(10, 89);
     this.label74.Name      = "label74";
     this.label74.Size      = new System.Drawing.Size(26, 23);
     this.label74.TabIndex  = 4;
     //
     // label75
     //
     this.label75.Location = new System.Drawing.Point(42, 64);
     this.label75.Name     = "label75";
     this.label75.Size     = new System.Drawing.Size(86, 16);
     this.label75.TabIndex = 3;
     this.label75.Text     = "Half day leave";
     //
     // label76
     //
     this.label76.BackColor = System.Drawing.Color.Yellow;
     this.label76.Location  = new System.Drawing.Point(10, 56);
     this.label76.Name      = "label76";
     this.label76.Size      = new System.Drawing.Size(26, 23);
     this.label76.TabIndex  = 2;
     //
     // label77
     //
     this.label77.Location = new System.Drawing.Point(40, 24);
     this.label77.Name     = "label77";
     this.label77.Size     = new System.Drawing.Size(94, 28);
     this.label77.TabIndex = 1;
     this.label77.Text     = "Applied leave in pending status";
     //
     // label78
     //
     this.label78.BackColor = System.Drawing.Color.Red;
     this.label78.Location  = new System.Drawing.Point(10, 22);
     this.label78.Name      = "label78";
     this.label78.Size      = new System.Drawing.Size(26, 23);
     this.label78.TabIndex  = 0;
     //
     // btnNextWeek
     //
     this.btnNextWeek.Appearance.BackColor            = System.Drawing.Color.Transparent;
     this.btnNextWeek.Appearance.Font                 = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.btnNextWeek.Appearance.Options.UseBackColor = true;
     this.btnNextWeek.Appearance.Options.UseFont      = true;
     this.btnNextWeek.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnNextWeek.Location    = new System.Drawing.Point(712, 24);
     this.btnNextWeek.Name        = "btnNextWeek";
     this.btnNextWeek.Size        = new System.Drawing.Size(80, 20);
     this.btnNextWeek.TabIndex    = 20;
     this.btnNextWeek.Text        = "Next >>";
     this.btnNextWeek.Click      += new System.EventHandler(this.btnNextWeek_Click);
     //
     // btnPastWeek
     //
     this.btnPastWeek.Appearance.BackColor            = System.Drawing.Color.Transparent;
     this.btnPastWeek.Appearance.Font                 = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.btnPastWeek.Appearance.Options.UseBackColor = true;
     this.btnPastWeek.Appearance.Options.UseFont      = true;
     this.btnPastWeek.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnPastWeek.Location    = new System.Drawing.Point(8, 24);
     this.btnPastWeek.Name        = "btnPastWeek";
     this.btnPastWeek.Size        = new System.Drawing.Size(80, 20);
     this.btnPastWeek.TabIndex    = 19;
     this.btnPastWeek.Text        = "<< Previous";
     this.btnPastWeek.Click      += new System.EventHandler(this.btnPastWeek_Click);
     //
     // btnPrint
     //
     this.btnPrint.Appearance.BackColor            = System.Drawing.Color.Transparent;
     this.btnPrint.Appearance.Font                 = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.btnPrint.Appearance.Options.UseBackColor = true;
     this.btnPrint.Appearance.Options.UseFont      = true;
     this.btnPrint.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnPrint.Location    = new System.Drawing.Point(488, 32);
     this.btnPrint.Name        = "btnPrint";
     this.btnPrint.Size        = new System.Drawing.Size(80, 20);
     this.btnPrint.TabIndex    = 11;
     this.btnPrint.Text        = "Print";
     this.btnPrint.Click      += new System.EventHandler(this.btnPrint_Click);
     //
     // label2
     //
     this.label2.BackColor = System.Drawing.Color.Transparent;
     this.label2.Font      = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label2.ForeColor = System.Drawing.Color.Black;
     this.label2.Location  = new System.Drawing.Point(224, 32);
     this.label2.Name      = "label2";
     this.label2.Size      = new System.Drawing.Size(88, 16);
     this.label2.TabIndex  = 22;
     this.label2.Text      = "Cost Center";
     //
     // comboBoxRoster
     //
     this.comboBoxRoster.EditValue = "imageComboBoxEdit3";
     this.comboBoxRoster.Location  = new System.Drawing.Point(80, 32);
     this.comboBoxRoster.Name      = "comboBoxRoster";
     //
     // comboBoxRoster.Properties
     //
     this.comboBoxRoster.Properties.Appearance.BackColor            = System.Drawing.SystemColors.Window;
     this.comboBoxRoster.Properties.Appearance.Options.UseBackColor = true;
     this.comboBoxRoster.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.comboBoxRoster.Properties.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.comboBoxRoster.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.comboBoxRoster.Size                  = new System.Drawing.Size(128, 20);
     this.comboBoxRoster.TabIndex              = 19;
     this.comboBoxRoster.SelectedIndexChanged += new System.EventHandler(this.comboBoxRoster_SelectedValueChanged);
     //
     // label1
     //
     this.label1.BackColor = System.Drawing.Color.Transparent;
     this.label1.Font      = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label1.ForeColor = System.Drawing.Color.Black;
     this.label1.Location  = new System.Drawing.Point(24, 32);
     this.label1.Name      = "label1";
     this.label1.Size      = new System.Drawing.Size(56, 16);
     this.label1.TabIndex  = 21;
     this.label1.Text      = "Branch";
     //
     // frmRosterMain
     //
     this.AutoScale         = false;
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.BackColor         = System.Drawing.Color.White;
     this.ClientSize        = new System.Drawing.Size(1000, 570);
     this.Controls.Add(this.groupRoster);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
     this.Name            = "frmRosterMain";
     this.Text            = "frmRosterMain";
     this.Load           += new System.EventHandler(this.frmRosterMain_Load);
     ((System.ComponentModel.ISupportInitialize)(this.groupRoster)).EndInit();
     this.groupRoster.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.cbYear.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.comboBoxRosterCC.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl35)).EndInit();
     this.groupControl35.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.comboBoxRoster.Properties)).EndInit();
     this.ResumeLayout(false);
 }
Beispiel #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.groupOverTime    = new DevExpress.XtraEditors.GroupControl();
     this.btnViewAll       = new DevExpress.XtraEditors.SimpleButton();
     this.groupControl1    = new DevExpress.XtraEditors.GroupControl();
     this.prevToMonth      = new DevExpress.XtraEditors.ImageComboBoxEdit();
     this.prevFromMonth    = new DevExpress.XtraEditors.ImageComboBoxEdit();
     this.btnPrevGo        = new DevExpress.XtraEditors.SimpleButton();
     this.label5           = new System.Windows.Forms.Label();
     this.label4           = new System.Windows.Forms.Label();
     this.prevToYear       = new DevExpress.XtraEditors.ImageComboBoxEdit();
     this.prevFromYear     = new DevExpress.XtraEditors.ImageComboBoxEdit();
     this.cmbBranch        = new DevExpress.XtraEditors.ImageComboBoxEdit();
     this.label25          = new System.Windows.Forms.Label();
     this.OvertimeStatus   = new DevExpress.XtraEditors.ImageComboBoxEdit();
     this.label151         = new System.Windows.Forms.Label();
     this.gridOverTime     = new DevExpress.XtraGrid.GridControl();
     this.gridViewOverTime = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn69     = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn62     = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn63     = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn64     = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn65     = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn5      = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn54     = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn1      = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn2      = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn3      = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn4      = new DevExpress.XtraGrid.Columns.GridColumn();
     this.btnApprove       = new DevExpress.XtraEditors.SimpleButton();
     this.btnReject        = new DevExpress.XtraEditors.SimpleButton();
     this.btnClear         = new DevExpress.XtraEditors.SimpleButton();
     ((System.ComponentModel.ISupportInitialize)(this.groupOverTime)).BeginInit();
     this.groupOverTime.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.prevToMonth.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.prevFromMonth.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.prevToYear.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.prevFromYear.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbBranch.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.OvertimeStatus.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridOverTime)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewOverTime)).BeginInit();
     this.SuspendLayout();
     //
     // groupOverTime
     //
     this.groupOverTime.Appearance.BackColor            = System.Drawing.SystemColors.Control;
     this.groupOverTime.Appearance.Options.UseBackColor = true;
     this.groupOverTime.Controls.Add(this.btnClear);
     this.groupOverTime.Controls.Add(this.btnViewAll);
     this.groupOverTime.Controls.Add(this.groupControl1);
     this.groupOverTime.Controls.Add(this.cmbBranch);
     this.groupOverTime.Controls.Add(this.label25);
     this.groupOverTime.Controls.Add(this.OvertimeStatus);
     this.groupOverTime.Controls.Add(this.label151);
     this.groupOverTime.Controls.Add(this.gridOverTime);
     this.groupOverTime.Controls.Add(this.btnApprove);
     this.groupOverTime.Controls.Add(this.btnReject);
     this.groupOverTime.Dock              = System.Windows.Forms.DockStyle.Fill;
     this.groupOverTime.Location          = new System.Drawing.Point(0, 0);
     this.groupOverTime.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.groupOverTime.LookAndFeel.UseDefaultLookAndFeel = false;
     this.groupOverTime.Name     = "groupOverTime";
     this.groupOverTime.Size     = new System.Drawing.Size(992, 568);
     this.groupOverTime.TabIndex = 27;
     this.groupOverTime.Text     = "OverTime";
     //
     // btnViewAll
     //
     this.btnViewAll.Appearance.Font            = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnViewAll.Appearance.Options.UseFont = true;
     this.btnViewAll.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnViewAll.Location    = new System.Drawing.Point(464, 88);
     this.btnViewAll.Name        = "btnViewAll";
     this.btnViewAll.Size        = new System.Drawing.Size(72, 20);
     this.btnViewAll.TabIndex    = 182;
     this.btnViewAll.Text        = "View All";
     this.btnViewAll.Click      += new System.EventHandler(this.btnViewAll_Click);
     //
     // groupControl1
     //
     this.groupControl1.Controls.Add(this.prevToMonth);
     this.groupControl1.Controls.Add(this.prevFromMonth);
     this.groupControl1.Controls.Add(this.btnPrevGo);
     this.groupControl1.Controls.Add(this.label5);
     this.groupControl1.Controls.Add(this.label4);
     this.groupControl1.Controls.Add(this.prevToYear);
     this.groupControl1.Controls.Add(this.prevFromYear);
     this.groupControl1.Location = new System.Drawing.Point(16, 32);
     this.groupControl1.LookAndFeel.UseDefaultLookAndFeel = false;
     this.groupControl1.Name     = "groupControl1";
     this.groupControl1.Size     = new System.Drawing.Size(560, 48);
     this.groupControl1.TabIndex = 181;
     //
     // prevToMonth
     //
     this.prevToMonth.Location = new System.Drawing.Point(272, 16);
     this.prevToMonth.Name     = "prevToMonth";
     this.prevToMonth.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.prevToMonth.Properties.Items.AddRange(new DevExpress.XtraEditors.Controls.ImageComboBoxItem[] {
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("January", 1, -1),
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("February", 2, -1),
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("March", 3, -1),
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("April", 4, -1),
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("May", 5, -1),
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("June", 6, -1),
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("July", 7, -1),
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("August", 8, -1),
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("September", 9, -1),
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("October", 10, -1),
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("November", 11, -1),
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("December", 12, -1)
     });
     this.prevToMonth.Size     = new System.Drawing.Size(72, 20);
     this.prevToMonth.TabIndex = 56;
     //
     // prevFromMonth
     //
     this.prevFromMonth.Location = new System.Drawing.Point(64, 16);
     this.prevFromMonth.Name     = "prevFromMonth";
     this.prevFromMonth.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.prevFromMonth.Properties.Items.AddRange(new DevExpress.XtraEditors.Controls.ImageComboBoxItem[] {
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("January", 1, -1),
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("February", 2, -1),
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("March", 3, -1),
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("April", 4, -1),
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("May", 5, -1),
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("June", 6, -1),
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("July", 7, -1),
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("August", 8, -1),
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("September", 9, -1),
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("October", 10, -1),
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("November", 11, -1),
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("December", 12, -1)
     });
     this.prevFromMonth.Size     = new System.Drawing.Size(72, 20);
     this.prevFromMonth.TabIndex = 55;
     //
     // btnPrevGo
     //
     this.btnPrevGo.Appearance.Font            = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnPrevGo.Appearance.Options.UseFont = true;
     this.btnPrevGo.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnPrevGo.Location    = new System.Drawing.Point(448, 16);
     this.btnPrevGo.Name        = "btnPrevGo";
     this.btnPrevGo.Size        = new System.Drawing.Size(72, 20);
     this.btnPrevGo.TabIndex    = 54;
     this.btnPrevGo.Text        = "Go";
     this.btnPrevGo.Click      += new System.EventHandler(this.btnPrevGo_Click);
     //
     // label5
     //
     this.label5.BackColor = System.Drawing.Color.Transparent;
     this.label5.Font      = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label5.Location  = new System.Drawing.Point(240, 16);
     this.label5.Name      = "label5";
     this.label5.Size      = new System.Drawing.Size(24, 16);
     this.label5.TabIndex  = 53;
     this.label5.Text      = "To";
     //
     // label4
     //
     this.label4.BackColor = System.Drawing.Color.Transparent;
     this.label4.Font      = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label4.Location  = new System.Drawing.Point(16, 16);
     this.label4.Name      = "label4";
     this.label4.Size      = new System.Drawing.Size(48, 16);
     this.label4.TabIndex  = 52;
     this.label4.Text      = "From";
     //
     // prevToYear
     //
     this.prevToYear.EditValue = "cbGIROStatus";
     this.prevToYear.Location  = new System.Drawing.Point(352, 16);
     this.prevToYear.Name      = "prevToYear";
     this.prevToYear.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.prevToYear.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.prevToYear.Size     = new System.Drawing.Size(80, 20);
     this.prevToYear.TabIndex = 51;
     //
     // prevFromYear
     //
     this.prevFromYear.EditValue = "cbGIROStatus";
     this.prevFromYear.Location  = new System.Drawing.Point(144, 16);
     this.prevFromYear.Name      = "prevFromYear";
     this.prevFromYear.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.prevFromYear.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.prevFromYear.Size     = new System.Drawing.Size(72, 20);
     this.prevFromYear.TabIndex = 50;
     //
     // cmbBranch
     //
     this.cmbBranch.Location = new System.Drawing.Point(288, 88);
     this.cmbBranch.Name     = "cmbBranch";
     this.cmbBranch.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.cmbBranch.Size                  = new System.Drawing.Size(120, 20);
     this.cmbBranch.TabIndex              = 179;
     this.cmbBranch.SelectedValueChanged += new System.EventHandler(this.cmbBranch_SelectedValueChanged);
     //
     // label25
     //
     this.label25.Font      = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label25.ForeColor = System.Drawing.Color.Black;
     this.label25.Location  = new System.Drawing.Point(224, 88);
     this.label25.Name      = "label25";
     this.label25.Size      = new System.Drawing.Size(56, 16);
     this.label25.TabIndex  = 174;
     this.label25.Text      = "Branch";
     //
     // OvertimeStatus
     //
     this.OvertimeStatus.EditValue = 0;
     this.OvertimeStatus.Location  = new System.Drawing.Point(80, 88);
     this.OvertimeStatus.Name      = "OvertimeStatus";
     this.OvertimeStatus.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.OvertimeStatus.Properties.Items.AddRange(new DevExpress.XtraEditors.Controls.ImageComboBoxItem[] {
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Pending", 0, -1),
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Approved", 1, -1),
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Rejected", 2, -1)
     });
     this.OvertimeStatus.Size                  = new System.Drawing.Size(128, 20);
     this.OvertimeStatus.TabIndex              = 124;
     this.OvertimeStatus.SelectedValueChanged += new System.EventHandler(this.OvertimeStatus_SelectedValueChanged);
     //
     // label151
     //
     this.label151.Font      = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label151.ForeColor = System.Drawing.Color.Black;
     this.label151.Location  = new System.Drawing.Point(24, 88);
     this.label151.Name      = "label151";
     this.label151.Size      = new System.Drawing.Size(56, 16);
     this.label151.TabIndex  = 19;
     this.label151.Text      = "Status";
     //
     // gridOverTime
     //
     this.gridOverTime.Dock     = System.Windows.Forms.DockStyle.Bottom;
     this.gridOverTime.Location = new System.Drawing.Point(2, 118);
     this.gridOverTime.LookAndFeel.UseDefaultLookAndFeel = false;
     this.gridOverTime.MainView = this.gridViewOverTime;
     this.gridOverTime.Name     = "gridOverTime";
     this.gridOverTime.Size     = new System.Drawing.Size(988, 448);
     this.gridOverTime.TabIndex = 12;
     this.gridOverTime.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
         this.gridViewOverTime
     });
     //
     // gridViewOverTime
     //
     this.gridViewOverTime.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
         this.gridColumn69,
         this.gridColumn62,
         this.gridColumn63,
         this.gridColumn64,
         this.gridColumn65,
         this.gridColumn5,
         this.gridColumn54,
         this.gridColumn1,
         this.gridColumn2,
         this.gridColumn3,
         this.gridColumn4
     });
     this.gridViewOverTime.GridControl = this.gridOverTime;
     this.gridViewOverTime.Name        = "gridViewOverTime";
     this.gridViewOverTime.OptionsBehavior.Editable         = false;
     this.gridViewOverTime.OptionsCustomization.AllowFilter = false;
     this.gridViewOverTime.OptionsCustomization.AllowSort   = false;
     this.gridViewOverTime.OptionsView.ColumnAutoWidth      = false;
     this.gridViewOverTime.OptionsView.ShowGroupPanel       = false;
     //
     // gridColumn69
     //
     this.gridColumn69.Caption = "Date";
     this.gridColumn69.DisplayFormat.FormatString = "dd/MM/yyyy";
     this.gridColumn69.DisplayFormat.FormatType   = DevExpress.Utils.FormatType.DateTime;
     this.gridColumn69.FieldName = "dtDate";
     this.gridColumn69.GroupFormat.FormatString = "dd/MM/yyyy";
     this.gridColumn69.GroupFormat.FormatType   = DevExpress.Utils.FormatType.Custom;
     this.gridColumn69.Name         = "gridColumn69";
     this.gridColumn69.Visible      = true;
     this.gridColumn69.VisibleIndex = 0;
     this.gridColumn69.Width        = 74;
     //
     // gridColumn62
     //
     this.gridColumn62.Caption      = "Employee Id";
     this.gridColumn62.FieldName    = "nEmployeeID";
     this.gridColumn62.Name         = "gridColumn62";
     this.gridColumn62.Visible      = true;
     this.gridColumn62.VisibleIndex = 1;
     this.gridColumn62.Width        = 84;
     //
     // gridColumn63
     //
     this.gridColumn63.Caption      = "Name";
     this.gridColumn63.FieldName    = "strEmployeeName";
     this.gridColumn63.Name         = "gridColumn63";
     this.gridColumn63.Visible      = true;
     this.gridColumn63.VisibleIndex = 2;
     this.gridColumn63.Width        = 148;
     //
     // gridColumn64
     //
     this.gridColumn64.Caption = "Start Time";
     this.gridColumn64.DisplayFormat.FormatString = "hh:mm:ss tt";
     this.gridColumn64.DisplayFormat.FormatType   = DevExpress.Utils.FormatType.Custom;
     this.gridColumn64.FieldName = "dtStartTime";
     this.gridColumn64.GroupFormat.FormatString = "hh:mm:ss tt";
     this.gridColumn64.GroupFormat.FormatType   = DevExpress.Utils.FormatType.Custom;
     this.gridColumn64.Name         = "gridColumn64";
     this.gridColumn64.Visible      = true;
     this.gridColumn64.VisibleIndex = 3;
     this.gridColumn64.Width        = 74;
     //
     // gridColumn65
     //
     this.gridColumn65.Caption = "End Time";
     this.gridColumn65.DisplayFormat.FormatString = "hh:mm:ss tt";
     this.gridColumn65.DisplayFormat.FormatType   = DevExpress.Utils.FormatType.Custom;
     this.gridColumn65.FieldName = "dtEndTime";
     this.gridColumn65.GroupFormat.FormatString = "hh:mm:ss tt";
     this.gridColumn65.GroupFormat.FormatType   = DevExpress.Utils.FormatType.Custom;
     this.gridColumn65.Name         = "gridColumn65";
     this.gridColumn65.Visible      = true;
     this.gridColumn65.VisibleIndex = 4;
     this.gridColumn65.Width        = 78;
     //
     // gridColumn5
     //
     this.gridColumn5.Caption   = "Hours";
     this.gridColumn5.FieldName = "nHours";
     this.gridColumn5.GroupFormat.FormatString = "f";
     this.gridColumn5.GroupFormat.FormatType   = DevExpress.Utils.FormatType.Custom;
     this.gridColumn5.Name         = "gridColumn5";
     this.gridColumn5.Visible      = true;
     this.gridColumn5.VisibleIndex = 5;
     //
     // gridColumn54
     //
     this.gridColumn54.Caption   = "gridColumn54";
     this.gridColumn54.FieldName = "nOverTimeId";
     this.gridColumn54.Name      = "gridColumn54";
     //
     // gridColumn1
     //
     this.gridColumn1.Caption      = "Charging To ( 0-Time Off, 1-Overtime Pay)";
     this.gridColumn1.FieldName    = "nChargingID";
     this.gridColumn1.Name         = "gridColumn1";
     this.gridColumn1.Visible      = true;
     this.gridColumn1.VisibleIndex = 6;
     this.gridColumn1.Width        = 236;
     //
     // gridColumn2
     //
     this.gridColumn2.Caption      = "Reason";
     this.gridColumn2.FieldName    = "strReason";
     this.gridColumn2.Name         = "gridColumn2";
     this.gridColumn2.Visible      = true;
     this.gridColumn2.VisibleIndex = 7;
     this.gridColumn2.Width        = 109;
     //
     // gridColumn3
     //
     this.gridColumn3.Caption      = "Approving Manager";
     this.gridColumn3.FieldName    = "strApprovingManager";
     this.gridColumn3.Name         = "gridColumn3";
     this.gridColumn3.Visible      = true;
     this.gridColumn3.VisibleIndex = 8;
     this.gridColumn3.Width        = 106;
     //
     // gridColumn4
     //
     this.gridColumn4.Caption      = "Status";
     this.gridColumn4.FieldName    = "OvertimeStatus";
     this.gridColumn4.Name         = "gridColumn4";
     this.gridColumn4.Visible      = true;
     this.gridColumn4.VisibleIndex = 9;
     this.gridColumn4.Width        = 81;
     //
     // btnApprove
     //
     this.btnApprove.Appearance.BackColor            = System.Drawing.SystemColors.Control;
     this.btnApprove.Appearance.Font                 = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnApprove.Appearance.Options.UseBackColor = true;
     this.btnApprove.Appearance.Options.UseFont      = true;
     this.btnApprove.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnApprove.ImeMode     = System.Windows.Forms.ImeMode.NoControl;
     this.btnApprove.Location    = new System.Drawing.Point(544, 88);
     this.btnApprove.Name        = "btnApprove";
     this.btnApprove.Size        = new System.Drawing.Size(72, 20);
     this.btnApprove.TabIndex    = 123;
     this.btnApprove.Text        = "Approve";
     this.btnApprove.Click      += new System.EventHandler(this.btnApprove_Click);
     //
     // btnReject
     //
     this.btnReject.Appearance.BackColor            = System.Drawing.SystemColors.Control;
     this.btnReject.Appearance.Font                 = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnReject.Appearance.Options.UseBackColor = true;
     this.btnReject.Appearance.Options.UseFont      = true;
     this.btnReject.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnReject.ImeMode     = System.Windows.Forms.ImeMode.NoControl;
     this.btnReject.Location    = new System.Drawing.Point(624, 88);
     this.btnReject.Name        = "btnReject";
     this.btnReject.Size        = new System.Drawing.Size(72, 20);
     this.btnReject.TabIndex    = 124;
     this.btnReject.Text        = "Reject";
     this.btnReject.Click      += new System.EventHandler(this.btnReject_Click);
     //
     // btnClear
     //
     this.btnClear.Appearance.Font            = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnClear.Appearance.Options.UseFont = true;
     this.btnClear.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnClear.Location    = new System.Drawing.Point(702, 88);
     this.btnClear.Name        = "btnClear";
     this.btnClear.Size        = new System.Drawing.Size(112, 20);
     this.btnClear.TabIndex    = 183;
     this.btnClear.Text        = "Clear OT Balance";
     this.btnClear.Click      += new System.EventHandler(this.btnClear_Click);
     //
     // frmOvertimeMain
     //
     this.BackColor  = System.Drawing.Color.White;
     this.ClientSize = new System.Drawing.Size(992, 568);
     this.Controls.Add(this.groupOverTime);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
     this.Name            = "frmOvertimeMain";
     this.Text            = "frmOvertimeMain";
     this.Load           += new System.EventHandler(this.frmOvertimeMain_Load);
     ((System.ComponentModel.ISupportInitialize)(this.groupOverTime)).EndInit();
     this.groupOverTime.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.prevToMonth.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.prevFromMonth.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.prevToYear.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.prevFromYear.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbBranch.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.OvertimeStatus.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridOverTime)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewOverTime)).EndInit();
     this.ResumeLayout(false);
 }
Beispiel #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.gridStaffPerformance = new DevExpress.XtraPivotGrid.PivotGridControl();
     this.pivotGridField1      = new DevExpress.XtraPivotGrid.PivotGridField();
     this.pivotGridField2      = new DevExpress.XtraPivotGrid.PivotGridField();
     this.pivotGridField3      = new DevExpress.XtraPivotGrid.PivotGridField();
     this.pivotGridField4      = new DevExpress.XtraPivotGrid.PivotGridField();
     this.label1 = new System.Windows.Forms.Label();
     this.label2 = new System.Windows.Forms.Label();
     this.luedtRPStaffSalesPerfmEmpID    = new DevExpress.XtraEditors.LookUpEdit();
     this.luedtRPStaffSalesPerfmCategory = new DevExpress.XtraEditors.LookUpEdit();
     this.label3      = new System.Windows.Forms.Label();
     this.label4      = new System.Windows.Forms.Label();
     this.label5      = new System.Windows.Forms.Label();
     this.label6      = new System.Windows.Forms.Label();
     this.label7      = new System.Windows.Forms.Label();
     this.cmbMonthFrm = new DevExpress.XtraEditors.ImageComboBoxEdit();
     this.cmbMonthTo  = new DevExpress.XtraEditors.ImageComboBoxEdit();
     this.sbtnReset   = new DevExpress.XtraEditors.SimpleButton();
     this.btnReset    = new DevExpress.XtraEditors.SimpleButton();
     this.cmbYearFrm  = new DevExpress.XtraEditors.ImageComboBoxEdit();
     this.cmbYearTo   = new DevExpress.XtraEditors.ImageComboBoxEdit();
     ((System.ComponentModel.ISupportInitialize)(this.gridStaffPerformance)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.luedtRPStaffSalesPerfmEmpID.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.luedtRPStaffSalesPerfmCategory.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbMonthFrm.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbMonthTo.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbYearFrm.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbYearTo.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // gridStaffPerformance
     //
     this.gridStaffPerformance.Cursor = System.Windows.Forms.Cursors.Default;
     this.gridStaffPerformance.Dock   = System.Windows.Forms.DockStyle.Bottom;
     this.gridStaffPerformance.Fields.AddRange(new DevExpress.XtraPivotGrid.PivotGridField[] {
         this.pivotGridField1,
         this.pivotGridField2,
         this.pivotGridField3,
         this.pivotGridField4
     });
     this.gridStaffPerformance.Location = new System.Drawing.Point(0, 62);
     this.gridStaffPerformance.Name     = "gridStaffPerformance";
     this.gridStaffPerformance.OptionsCustomization.AllowDrag   = false;
     this.gridStaffPerformance.OptionsCustomization.AllowExpand = false;
     this.gridStaffPerformance.OptionsCustomization.AllowFilter = false;
     this.gridStaffPerformance.OptionsCustomization.AllowSort   = false;
     this.gridStaffPerformance.OptionsView.ShowDataHeaders      = false;
     this.gridStaffPerformance.OptionsView.ShowFilterHeaders    = false;
     this.gridStaffPerformance.Size     = new System.Drawing.Size(976, 400);
     this.gridStaffPerformance.TabIndex = 0;
     //
     // pivotGridField1
     //
     this.pivotGridField1.Area          = DevExpress.XtraPivotGrid.PivotArea.RowArea;
     this.pivotGridField1.AreaIndex     = 0;
     this.pivotGridField1.Caption       = "Year";
     this.pivotGridField1.FieldName     = "dtDate";
     this.pivotGridField1.GroupInterval = DevExpress.XtraPivotGrid.PivotGroupInterval.DateYear;
     this.pivotGridField1.Name          = "pivotGridField1";
     //
     // pivotGridField2
     //
     this.pivotGridField2.Area          = DevExpress.XtraPivotGrid.PivotArea.RowArea;
     this.pivotGridField2.AreaIndex     = 1;
     this.pivotGridField2.Caption       = "Month";
     this.pivotGridField2.FieldName     = "dtDate";
     this.pivotGridField2.GroupInterval = DevExpress.XtraPivotGrid.PivotGroupInterval.DateMonth;
     this.pivotGridField2.Name          = "pivotGridField2";
     //
     // pivotGridField3
     //
     this.pivotGridField3.Area      = DevExpress.XtraPivotGrid.PivotArea.ColumnArea;
     this.pivotGridField3.AreaIndex = 0;
     this.pivotGridField3.Caption   = "Branch";
     this.pivotGridField3.FieldName = "strBranchCode";
     this.pivotGridField3.Name      = "pivotGridField3";
     //
     // pivotGridField4
     //
     this.pivotGridField4.Area      = DevExpress.XtraPivotGrid.PivotArea.DataArea;
     this.pivotGridField4.AreaIndex = 0;
     this.pivotGridField4.Caption   = "Amount";
     this.pivotGridField4.FieldName = "mNettAmount";
     this.pivotGridField4.Name      = "pivotGridField4";
     //
     // label1
     //
     this.label1.Font     = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.label1.Location = new System.Drawing.Point(8, 32);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(72, 16);
     this.label1.TabIndex = 3;
     this.label1.Text     = "Category";
     //
     // label2
     //
     this.label2.Font     = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.label2.Location = new System.Drawing.Point(240, 32);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(40, 16);
     this.label2.TabIndex = 4;
     this.label2.Text     = "Staff";
     //
     // luedtRPStaffSalesPerfmEmpID
     //
     this.luedtRPStaffSalesPerfmEmpID.EditValue = "";
     this.luedtRPStaffSalesPerfmEmpID.Location  = new System.Drawing.Point(288, 32);
     this.luedtRPStaffSalesPerfmEmpID.Name      = "luedtRPStaffSalesPerfmEmpID";
     //
     // luedtRPStaffSalesPerfmEmpID.Properties
     //
     this.luedtRPStaffSalesPerfmEmpID.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.luedtRPStaffSalesPerfmEmpID.Size     = new System.Drawing.Size(168, 22);
     this.luedtRPStaffSalesPerfmEmpID.TabIndex = 43;
     //
     // luedtRPStaffSalesPerfmCategory
     //
     this.luedtRPStaffSalesPerfmCategory.EditValue = "";
     this.luedtRPStaffSalesPerfmCategory.Location  = new System.Drawing.Point(80, 32);
     this.luedtRPStaffSalesPerfmCategory.Name      = "luedtRPStaffSalesPerfmCategory";
     //
     // luedtRPStaffSalesPerfmCategory.Properties
     //
     this.luedtRPStaffSalesPerfmCategory.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.luedtRPStaffSalesPerfmCategory.Size     = new System.Drawing.Size(152, 22);
     this.luedtRPStaffSalesPerfmCategory.TabIndex = 44;
     //
     // label3
     //
     this.label3.Font     = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.label3.Location = new System.Drawing.Point(8, 8);
     this.label3.Name     = "label3";
     this.label3.Size     = new System.Drawing.Size(72, 23);
     this.label3.TabIndex = 45;
     this.label3.Text     = "Year";
     //
     // label4
     //
     this.label4.Font     = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.label4.Location = new System.Drawing.Point(296, 8);
     this.label4.Name     = "label4";
     this.label4.Size     = new System.Drawing.Size(48, 23);
     this.label4.TabIndex = 46;
     this.label4.Text     = "Year";
     //
     // label5
     //
     this.label5.Font     = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.label5.Location = new System.Drawing.Point(112, 8);
     this.label5.Name     = "label5";
     this.label5.Size     = new System.Drawing.Size(48, 23);
     this.label5.TabIndex = 47;
     this.label5.Text     = "Month";
     //
     // label6
     //
     this.label6.Font     = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.label6.Location = new System.Drawing.Point(400, 8);
     this.label6.Name     = "label6";
     this.label6.Size     = new System.Drawing.Size(48, 23);
     this.label6.TabIndex = 48;
     this.label6.Text     = "Month";
     //
     // label7
     //
     this.label7.Font     = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.label7.Location = new System.Drawing.Point(256, 8);
     this.label7.Name     = "label7";
     this.label7.Size     = new System.Drawing.Size(24, 23);
     this.label7.TabIndex = 53;
     this.label7.Text     = "To";
     //
     // cmbMonthFrm
     //
     this.cmbMonthFrm.EditValue = 1;
     this.cmbMonthFrm.Location  = new System.Drawing.Point(160, 8);
     this.cmbMonthFrm.Name      = "cmbMonthFrm";
     //
     // cmbMonthFrm.Properties
     //
     this.cmbMonthFrm.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.cmbMonthFrm.Properties.Items.AddRange(new object[] {
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("January", 1, -1),
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("February", 2, -1),
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("March", 3, -1),
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("April", 4, -1),
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("May", 5, -1),
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("June", 6, -1),
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("July", 7, -1),
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("August", 8, -1),
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("September", 9, -1),
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("October", 10, -1),
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("November", 11, -1),
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("December", 12, -1)
     });
     this.cmbMonthFrm.Size     = new System.Drawing.Size(80, 22);
     this.cmbMonthFrm.TabIndex = 56;
     //
     // cmbMonthTo
     //
     this.cmbMonthTo.EditValue = 1;
     this.cmbMonthTo.Location  = new System.Drawing.Point(448, 8);
     this.cmbMonthTo.Name      = "cmbMonthTo";
     //
     // cmbMonthTo.Properties
     //
     this.cmbMonthTo.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.cmbMonthTo.Properties.Items.AddRange(new object[] {
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("January", 1, -1),
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("February", 2, -1),
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("March", 3, -1),
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("April", 4, -1),
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("May", 5, -1),
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("June", 6, -1),
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("July", 7, -1),
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("August", 8, -1),
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("September", 9, -1),
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("October", 10, -1),
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("November", 11, -1),
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("December", 12, -1)
     });
     this.cmbMonthTo.Size     = new System.Drawing.Size(88, 22);
     this.cmbMonthTo.TabIndex = 57;
     //
     // sbtnReset
     //
     this.sbtnReset.Appearance.Font            = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.sbtnReset.Appearance.Options.UseFont = true;
     this.sbtnReset.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.sbtnReset.Location    = new System.Drawing.Point(464, 32);
     this.sbtnReset.LookAndFeel.UseDefaultLookAndFeel = false;
     this.sbtnReset.Name     = "sbtnReset";
     this.sbtnReset.Size     = new System.Drawing.Size(56, 16);
     this.sbtnReset.TabIndex = 195;
     this.sbtnReset.Text     = "Enquiry";
     this.sbtnReset.Click   += new System.EventHandler(this.sbtnReset_Click);
     //
     // btnReset
     //
     this.btnReset.Appearance.Font            = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.btnReset.Appearance.Options.UseFont = true;
     this.btnReset.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnReset.Location    = new System.Drawing.Point(528, 32);
     this.btnReset.LookAndFeel.UseDefaultLookAndFeel = false;
     this.btnReset.Name     = "btnReset";
     this.btnReset.Size     = new System.Drawing.Size(56, 16);
     this.btnReset.TabIndex = 196;
     this.btnReset.Text     = "Reset";
     this.btnReset.Click   += new System.EventHandler(this.btnReset_Click);
     //
     // cmbYearFrm
     //
     this.cmbYearFrm.Location = new System.Drawing.Point(48, 8);
     this.cmbYearFrm.Name     = "cmbYearFrm";
     //
     // cmbYearFrm.Properties
     //
     this.cmbYearFrm.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.cmbYearFrm.Size     = new System.Drawing.Size(64, 22);
     this.cmbYearFrm.TabIndex = 197;
     //
     // cmbYearTo
     //
     this.cmbYearTo.Location = new System.Drawing.Point(336, 8);
     this.cmbYearTo.Name     = "cmbYearTo";
     //
     // cmbYearTo.Properties
     //
     this.cmbYearTo.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.cmbYearTo.Size     = new System.Drawing.Size(64, 22);
     this.cmbYearTo.TabIndex = 198;
     //
     // RPStaffReport
     //
     this.AutoScale         = false;
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(976, 462);
     this.Controls.Add(this.cmbYearTo);
     this.Controls.Add(this.cmbYearFrm);
     this.Controls.Add(this.btnReset);
     this.Controls.Add(this.sbtnReset);
     this.Controls.Add(this.cmbMonthTo);
     this.Controls.Add(this.cmbMonthFrm);
     this.Controls.Add(this.label7);
     this.Controls.Add(this.label6);
     this.Controls.Add(this.label5);
     this.Controls.Add(this.label4);
     this.Controls.Add(this.label3);
     this.Controls.Add(this.luedtRPStaffSalesPerfmCategory);
     this.Controls.Add(this.luedtRPStaffSalesPerfmEmpID);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.gridStaffPerformance);
     this.Name        = "RPStaffReport";
     this.Text        = "Staff Sales Performance";
     this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
     this.Load       += new System.EventHandler(this.RPStaffReport_Load);
     ((System.ComponentModel.ISupportInitialize)(this.gridStaffPerformance)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.luedtRPStaffSalesPerfmEmpID.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.luedtRPStaffSalesPerfmCategory.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbMonthFrm.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbMonthTo.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbYearFrm.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbYearTo.Properties)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(AddCardinality));
     this.btnOK = new DevExpress.XtraEditors.SimpleButton();
     this.btnCancel = new DevExpress.XtraEditors.SimpleButton();
     this.labEntity2 = new DevExpress.XtraEditors.LabelControl();
     this.labEntity11 = new DevExpress.XtraEditors.LabelControl();
     this.imageComboBoxEdit2 = new DevExpress.XtraEditors.ImageComboBoxEdit();
     this.imageCollection2 = new DevExpress.Utils.ImageCollection(this.components);
     this.imageComboBoxEdit1 = new DevExpress.XtraEditors.ImageComboBoxEdit();
     this.labRel = new DevExpress.XtraEditors.LabelControl();
     this.labRel2 = new DevExpress.XtraEditors.LabelControl();
     this.panelDoubleBuffered1 = new ERDesigner.PanelDoubleBuffered();
     this.labEntity1 = new System.Windows.Forms.GroupBox();
     this.labEntity22 = new System.Windows.Forms.GroupBox();
     ((System.ComponentModel.ISupportInitialize)(this.imageComboBoxEdit2.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.imageCollection2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.imageComboBoxEdit1.Properties)).BeginInit();
     this.labEntity1.SuspendLayout();
     this.labEntity22.SuspendLayout();
     this.SuspendLayout();
     //
     // btnOK
     //
     this.btnOK.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.btnOK.Location = new System.Drawing.Point(141, 217);
     this.btnOK.Name = "btnOK";
     this.btnOK.Size = new System.Drawing.Size(75, 23);
     this.btnOK.TabIndex = 8;
     this.btnOK.Text = "OK";
     //
     // btnCancel
     //
     this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.btnCancel.Location = new System.Drawing.Point(222, 217);
     this.btnCancel.Name = "btnCancel";
     this.btnCancel.Size = new System.Drawing.Size(75, 23);
     this.btnCancel.TabIndex = 9;
     this.btnCancel.Text = "Cancel";
     //
     // labEntity2
     //
     this.labEntity2.Location = new System.Drawing.Point(284, 25);
     this.labEntity2.Name = "labEntity2";
     this.labEntity2.Size = new System.Drawing.Size(34, 13);
     this.labEntity2.TabIndex = 10;
     this.labEntity2.Text = "Entity2";
     //
     // labEntity11
     //
     this.labEntity11.Location = new System.Drawing.Point(284, 26);
     this.labEntity11.Name = "labEntity11";
     this.labEntity11.Size = new System.Drawing.Size(34, 13);
     this.labEntity11.TabIndex = 10;
     this.labEntity11.Text = "Entity1";
     //
     // imageComboBoxEdit2
     //
     this.imageComboBoxEdit2.Location = new System.Drawing.Point(148, 22);
     this.imageComboBoxEdit2.Name = "imageComboBoxEdit2";
     this.imageComboBoxEdit2.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.imageComboBoxEdit2.Properties.Items.AddRange(new DevExpress.XtraEditors.Controls.ImageComboBoxItem[] {
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Optional One", "0, 1", 1),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Mandatory One", "1, 1", 3),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Optional Many", "0, n", 0),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Mandatory Many", "1, n", 2)});
     this.imageComboBoxEdit2.Properties.SmallImages = this.imageCollection2;
     this.imageComboBoxEdit2.Size = new System.Drawing.Size(130, 20);
     this.imageComboBoxEdit2.TabIndex = 11;
     this.imageComboBoxEdit2.SelectedIndexChanged += new System.EventHandler(this.imageComboBoxEdit2_SelectedIndexChanged);
     //
     // imageCollection2
     //
     this.imageCollection2.ImageSize = new System.Drawing.Size(20, 15);
     this.imageCollection2.ImageStream = ((DevExpress.Utils.ImageCollectionStreamer)(resources.GetObject("imageCollection2.ImageStream")));
     //
     // imageComboBoxEdit1
     //
     this.imageComboBoxEdit1.Location = new System.Drawing.Point(148, 23);
     this.imageComboBoxEdit1.Name = "imageComboBoxEdit1";
     this.imageComboBoxEdit1.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.imageComboBoxEdit1.Properties.Items.AddRange(new DevExpress.XtraEditors.Controls.ImageComboBoxItem[] {
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Optional One", "0, 1", 1),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Mandatory One", "1, 1", 3),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Optional Many", "0, n", 0),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Mandatory Many", "1, n", 2)});
     this.imageComboBoxEdit1.Properties.SmallImages = this.imageCollection2;
     this.imageComboBoxEdit1.Size = new System.Drawing.Size(130, 20);
     this.imageComboBoxEdit1.TabIndex = 11;
     this.imageComboBoxEdit1.SelectedIndexChanged += new System.EventHandler(this.imageComboBoxEdit1_SelectedIndexChanged);
     //
     // labRel
     //
     this.labRel.Location = new System.Drawing.Point(6, 25);
     this.labRel.Name = "labRel";
     this.labRel.Size = new System.Drawing.Size(58, 13);
     this.labRel.TabIndex = 10;
     this.labRel.Text = "Relationship";
     //
     // labRel2
     //
     this.labRel2.Location = new System.Drawing.Point(6, 26);
     this.labRel2.Name = "labRel2";
     this.labRel2.Size = new System.Drawing.Size(58, 13);
     this.labRel2.TabIndex = 10;
     this.labRel2.Text = "Relationship";
     //
     // panelDoubleBuffered1
     //
     this.panelDoubleBuffered1.BackColor = System.Drawing.Color.WhiteSmoke;
     this.panelDoubleBuffered1.Location = new System.Drawing.Point(12, 12);
     this.panelDoubleBuffered1.Name = "panelDoubleBuffered1";
     this.panelDoubleBuffered1.Size = new System.Drawing.Size(421, 70);
     this.panelDoubleBuffered1.TabIndex = 12;
     //
     // labEntity1
     //
     this.labEntity1.Controls.Add(this.labRel);
     this.labEntity1.Controls.Add(this.imageComboBoxEdit2);
     this.labEntity1.Controls.Add(this.labEntity2);
     this.labEntity1.Location = new System.Drawing.Point(12, 156);
     this.labEntity1.Name = "labEntity1";
     this.labEntity1.Size = new System.Drawing.Size(421, 52);
     this.labEntity1.TabIndex = 13;
     this.labEntity1.TabStop = false;
     this.labEntity1.Text = "Entity1";
     //
     // labEntity22
     //
     this.labEntity22.Controls.Add(this.labRel2);
     this.labEntity22.Controls.Add(this.labEntity11);
     this.labEntity22.Controls.Add(this.imageComboBoxEdit1);
     this.labEntity22.Location = new System.Drawing.Point(12, 98);
     this.labEntity22.Name = "labEntity22";
     this.labEntity22.Size = new System.Drawing.Size(421, 52);
     this.labEntity22.TabIndex = 13;
     this.labEntity22.TabStop = false;
     this.labEntity22.Text = "Entity2";
     //
     // AddCardinality
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(448, 255);
     this.Controls.Add(this.panelDoubleBuffered1);
     this.Controls.Add(this.btnCancel);
     this.Controls.Add(this.btnOK);
     this.Controls.Add(this.labEntity1);
     this.Controls.Add(this.labEntity22);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "AddCardinality";
     this.ShowInTaskbar = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Edit Relationship";
     ((System.ComponentModel.ISupportInitialize)(this.imageComboBoxEdit2.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.imageCollection2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.imageComboBoxEdit1.Properties)).EndInit();
     this.labEntity1.ResumeLayout(false);
     this.labEntity1.PerformLayout();
     this.labEntity22.ResumeLayout(false);
     this.labEntity22.PerformLayout();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     DevExpress.XtraGrid.GridLevelNode gridLevelNode1 = new DevExpress.XtraGrid.GridLevelNode();
     this.gvReceiptPayment = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn27 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn28 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridReceipt = new DevExpress.XtraGrid.GridControl();
     this.gvReceipt = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.GridTotalCollection = new DevExpress.XtraPivotGrid.PivotGridControl();
     this.pivotGridField1 = new DevExpress.XtraPivotGrid.PivotGridField();
     this.pivotGridField2 = new DevExpress.XtraPivotGrid.PivotGridField();
     this.dateEdit1 = new DevExpress.XtraEditors.DateEdit();
     this.label1 = new System.Windows.Forms.Label();
     this.label2 = new System.Windows.Forms.Label();
     this.label3 = new System.Windows.Forms.Label();
     this.label4 = new System.Windows.Forms.Label();
     this.GridSingleTreatment = new DevExpress.XtraGrid.GridControl();
     this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn4 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn5 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridSpaPackage = new DevExpress.XtraGrid.GridControl();
     this.gridView2 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn6 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn7 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn8 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.label5 = new System.Windows.Forms.Label();
     this.label6 = new System.Windows.Forms.Label();
     this.label7 = new System.Windows.Forms.Label();
     this.label8 = new System.Windows.Forms.Label();
     this.gridVouchers = new DevExpress.XtraGrid.GridControl();
     this.gridView3 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn9 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn10 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn11 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridFreeSpa = new DevExpress.XtraGrid.GridControl();
     this.gridView4 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn12 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn13 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn14 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.label9 = new System.Windows.Forms.Label();
     this.gridTreatment = new DevExpress.XtraGrid.GridControl();
     this.gridView5 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn15 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn16 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn17 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.label10 = new System.Windows.Forms.Label();
     this.label11 = new System.Windows.Forms.Label();
     this.GridIPLPackage = new DevExpress.XtraGrid.GridControl();
     this.gridView6 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn18 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn19 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn20 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.GridSpaProduct = new DevExpress.XtraGrid.GridControl();
     this.gridView7 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn21 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn22 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn23 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.label12 = new System.Windows.Forms.Label();
     this.gridCreditPackage = new DevExpress.XtraGrid.GridControl();
     this.gridView8 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn24 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn25 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn26 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.cmbBranch = new DevExpress.XtraEditors.ImageComboBoxEdit();
     this.printingSystem1 = new DevExpress.XtraPrinting.PrintingSystem(this.components);
     this.printableComponentLink1 = new DevExpress.XtraPrinting.PrintableComponentLink(this.components);
     this.printableComponentLink2 = new DevExpress.XtraPrinting.PrintableComponentLink(this.components);
     this.printableComponentLink3 = new DevExpress.XtraPrinting.PrintableComponentLink(this.components);
     this.printableComponentLink4 = new DevExpress.XtraPrinting.PrintableComponentLink(this.components);
     this.printableComponentLink5 = new DevExpress.XtraPrinting.PrintableComponentLink(this.components);
     this.printableComponentLink6 = new DevExpress.XtraPrinting.PrintableComponentLink(this.components);
     this.printableComponentLink7 = new DevExpress.XtraPrinting.PrintableComponentLink(this.components);
     this.printableComponentLink8 = new DevExpress.XtraPrinting.PrintableComponentLink(this.components);
     this.printableComponentLink9 = new DevExpress.XtraPrinting.PrintableComponentLink(this.components);
     this.printableComponentLink10 = new DevExpress.XtraPrinting.PrintableComponentLink(this.components);
     this.PRINT1 = new DevExpress.XtraEditors.HyperLinkEdit();
     this.PRINT2 = new DevExpress.XtraEditors.HyperLinkEdit();
     this.PRINT3 = new DevExpress.XtraEditors.HyperLinkEdit();
     this.PRINT4 = new DevExpress.XtraEditors.HyperLinkEdit();
     this.PRINT5 = new DevExpress.XtraEditors.HyperLinkEdit();
     this.PRINT6 = new DevExpress.XtraEditors.HyperLinkEdit();
     this.PRINT7 = new DevExpress.XtraEditors.HyperLinkEdit();
     this.PRINT8 = new DevExpress.XtraEditors.HyperLinkEdit();
     this.PRINT9 = new DevExpress.XtraEditors.HyperLinkEdit();
     ((System.ComponentModel.ISupportInitialize)(this.gvReceiptPayment)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridReceipt)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvReceipt)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.GridTotalCollection)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEdit1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.GridSingleTreatment)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridSpaPackage)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridVouchers)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridFreeSpa)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridTreatment)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.GridIPLPackage)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView6)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.GridSpaProduct)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView7)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridCreditPackage)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView8)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbBranch.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.printingSystem1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.PRINT1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.PRINT2.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.PRINT3.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.PRINT4.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.PRINT5.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.PRINT6.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.PRINT7.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.PRINT8.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.PRINT9.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // gvReceiptPayment
     //
     this.gvReceiptPayment.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
                                                                                             this.gridColumn27,
                                                                                             this.gridColumn28});
     this.gvReceiptPayment.GridControl = this.gridReceipt;
     this.gvReceiptPayment.Name = "gvReceiptPayment";
     this.gvReceiptPayment.OptionsBehavior.Editable = false;
     this.gvReceiptPayment.OptionsCustomization.AllowColumnMoving = false;
     this.gvReceiptPayment.OptionsCustomization.AllowColumnResizing = false;
     this.gvReceiptPayment.OptionsCustomization.AllowFilter = false;
     this.gvReceiptPayment.OptionsCustomization.AllowSort = false;
     this.gvReceiptPayment.OptionsMenu.EnableColumnMenu = false;
     this.gvReceiptPayment.OptionsMenu.EnableGroupPanelMenu = false;
     this.gvReceiptPayment.OptionsPrint.ExpandAllDetails = true;
     this.gvReceiptPayment.OptionsPrint.PrintDetails = true;
     this.gvReceiptPayment.OptionsPrint.UsePrintStyles = true;
     this.gvReceiptPayment.OptionsView.ShowGroupPanel = false;
     //
     // gridColumn27
     //
     this.gridColumn27.Caption = "Payment Code";
     this.gridColumn27.FieldName = "Payment Code";
     this.gridColumn27.Name = "gridColumn27";
     this.gridColumn27.Visible = true;
     this.gridColumn27.VisibleIndex = 0;
     //
     // gridColumn28
     //
     this.gridColumn28.Caption = "Amount";
     this.gridColumn28.FieldName = "Amount";
     this.gridColumn28.Name = "gridColumn28";
     this.gridColumn28.Visible = true;
     this.gridColumn28.VisibleIndex = 1;
     //
     // gridReceipt
     //
     //
     // gridReceipt.EmbeddedNavigator
     //
     this.gridReceipt.EmbeddedNavigator.Name = "";
     gridLevelNode1.LevelTemplate = this.gvReceiptPayment;
     gridLevelNode1.RelationName = "ReceiptPayment";
     this.gridReceipt.LevelTree.Nodes.AddRange(new DevExpress.XtraGrid.GridLevelNode[] {
                                                                                           gridLevelNode1});
     this.gridReceipt.Location = new System.Drawing.Point(16, 56);
     this.gridReceipt.MainView = this.gvReceipt;
     this.gridReceipt.Name = "gridReceipt";
     this.gridReceipt.Size = new System.Drawing.Size(624, 184);
     this.gridReceipt.TabIndex = 0;
     this.gridReceipt.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
                                                                                                this.gvReceipt,
                                                                                                this.gvReceiptPayment});
     // gvReceipt
     //
     this.gvReceipt.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
                                                                                      this.gridColumn1,
                                                                                      this.gridColumn2});
     this.gvReceipt.GridControl = this.gridReceipt;
     this.gvReceipt.Name = "gvReceipt";
     this.gvReceipt.OptionsBehavior.AutoExpandAllGroups = true;
     this.gvReceipt.OptionsCustomization.AllowSort = false;
     this.gvReceipt.OptionsPrint.ExpandAllDetails = true;
     this.gvReceipt.OptionsPrint.PrintDetails = true;
     this.gvReceipt.OptionsPrint.UsePrintStyles = true;
     this.gvReceipt.OptionsView.ShowGroupedColumns = true;
     this.gvReceipt.OptionsView.ShowGroupPanel = false;
     //
     // gridColumn1
     //
     this.gridColumn1.Caption = "Receipt No";
     this.gridColumn1.FieldName = "strReceiptNo";
     this.gridColumn1.Name = "gridColumn1";
     this.gridColumn1.Visible = true;
     this.gridColumn1.VisibleIndex = 0;
     this.gridColumn1.Width = 297;
     //
     // gridColumn2
     //
     this.gridColumn2.Caption = "Shift";
     this.gridColumn2.FieldName = "nShiftID";
     this.gridColumn2.Name = "gridColumn2";
     this.gridColumn2.Visible = true;
     this.gridColumn2.VisibleIndex = 1;
     this.gridColumn2.Width = 313;
     //
     // GridTotalCollection
     //
     this.GridTotalCollection.Cursor = System.Windows.Forms.Cursors.Default;
     this.GridTotalCollection.Fields.AddRange(new DevExpress.XtraPivotGrid.PivotGridField[] {
                                                                                                this.pivotGridField1,
                                                                                                this.pivotGridField2});
     this.GridTotalCollection.Location = new System.Drawing.Point(648, 56);
     this.GridTotalCollection.Name = "GridTotalCollection";
     this.GridTotalCollection.OptionsCustomization.AllowDrag = false;
     this.GridTotalCollection.OptionsCustomization.AllowExpand = false;
     this.GridTotalCollection.OptionsCustomization.AllowFilter = false;
     this.GridTotalCollection.OptionsCustomization.AllowSort = false;
     this.GridTotalCollection.OptionsView.ShowColumnHeaders = false;
     this.GridTotalCollection.OptionsView.ShowDataHeaders = false;
     this.GridTotalCollection.OptionsView.ShowFilterHeaders = false;
     this.GridTotalCollection.Size = new System.Drawing.Size(272, 184);
     this.GridTotalCollection.TabIndex = 1;
     //
     // pivotGridField1
     //
     this.pivotGridField1.Area = DevExpress.XtraPivotGrid.PivotArea.RowArea;
     this.pivotGridField1.AreaIndex = 0;
     this.pivotGridField1.Caption = "Payment Mode";
     this.pivotGridField1.FieldName = "strPaymentCode";
     this.pivotGridField1.Name = "pivotGridField1";
     //
     // pivotGridField2
     //
     this.pivotGridField2.Area = DevExpress.XtraPivotGrid.PivotArea.DataArea;
     this.pivotGridField2.AreaIndex = 0;
     this.pivotGridField2.Caption = "Amount";
     this.pivotGridField2.FieldName = "mAmount";
     this.pivotGridField2.Name = "pivotGridField2";
     //
     // dateEdit1
     //
     this.dateEdit1.EditValue = null;
     this.dateEdit1.Location = new System.Drawing.Point(56, 8);
     this.dateEdit1.Name = "dateEdit1";
     //
     // dateEdit1.Properties
     //
     this.dateEdit1.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                       new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.dateEdit1.Size = new System.Drawing.Size(96, 20);
     this.dateEdit1.TabIndex = 2;
     this.dateEdit1.EditValueChanged += new System.EventHandler(this.dateEdit1_EditValueChanged);
     //
     // label1
     //
     this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.label1.Location = new System.Drawing.Point(8, 8);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(40, 23);
     this.label1.TabIndex = 3;
     this.label1.Text = "Date";
     //
     // label2
     //
     this.label2.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.label2.Location = new System.Drawing.Point(168, 8);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(56, 23);
     this.label2.TabIndex = 5;
     this.label2.Text = "Branch";
     //
     // label3
     //
     this.label3.BackColor = System.Drawing.Color.Transparent;
     this.label3.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.label3.Location = new System.Drawing.Point(24, 32);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(144, 23);
     this.label3.TabIndex = 6;
     this.label3.Text = "Receipt Generated";
     this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // label4
     //
     this.label4.BackColor = System.Drawing.Color.Transparent;
     this.label4.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.label4.Location = new System.Drawing.Point(648, 32);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(176, 23);
     this.label4.TabIndex = 7;
     this.label4.Text = "Total Collection";
     this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // GridSingleTreatment
     //
     //
     // GridSingleTreatment.EmbeddedNavigator
     //
     this.GridSingleTreatment.EmbeddedNavigator.Name = "";
     this.GridSingleTreatment.Location = new System.Drawing.Point(16, 272);
     this.GridSingleTreatment.MainView = this.gridView1;
     this.GridSingleTreatment.Name = "GridSingleTreatment";
     this.GridSingleTreatment.Size = new System.Drawing.Size(464, 184);
     this.GridSingleTreatment.TabIndex = 8;
     this.GridSingleTreatment.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
                                                                                                        this.gridView1});
     //
     // gridView1
     //
     this.gridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
                                                                                      this.gridColumn3,
                                                                                      this.gridColumn4,
                                                                                      this.gridColumn5});
     this.gridView1.GridControl = this.GridSingleTreatment;
     this.gridView1.Name = "gridView1";
     this.gridView1.OptionsBehavior.Editable = false;
     this.gridView1.OptionsCustomization.AllowFilter = false;
     this.gridView1.OptionsCustomization.AllowSort = false;
     this.gridView1.OptionsView.ShowGroupPanel = false;
     //
     // gridColumn3
     //
     this.gridColumn3.Caption = "Code";
     this.gridColumn3.FieldName = "Code";
     this.gridColumn3.Name = "gridColumn3";
     this.gridColumn3.Visible = true;
     this.gridColumn3.VisibleIndex = 0;
     this.gridColumn3.Width = 55;
     //
     // gridColumn4
     //
     this.gridColumn4.Caption = "Description";
     this.gridColumn4.FieldName = "Description";
     this.gridColumn4.Name = "gridColumn4";
     this.gridColumn4.Visible = true;
     this.gridColumn4.VisibleIndex = 1;
     this.gridColumn4.Width = 155;
     //
     // gridColumn5
     //
     this.gridColumn5.Caption = "Total";
     this.gridColumn5.FieldName = "Quantity";
     this.gridColumn5.Name = "gridColumn5";
     this.gridColumn5.Visible = true;
     this.gridColumn5.VisibleIndex = 2;
     this.gridColumn5.Width = 80;
     //
     // gridSpaPackage
     //
     //
     // gridSpaPackage.EmbeddedNavigator
     //
     this.gridSpaPackage.EmbeddedNavigator.Name = "";
     this.gridSpaPackage.Location = new System.Drawing.Point(488, 272);
     this.gridSpaPackage.MainView = this.gridView2;
     this.gridSpaPackage.Name = "gridSpaPackage";
     this.gridSpaPackage.Size = new System.Drawing.Size(432, 184);
     this.gridSpaPackage.TabIndex = 9;
     this.gridSpaPackage.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
                                                                                                   this.gridView2});
     //
     // gridView2
     //
     this.gridView2.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
                                                                                      this.gridColumn6,
                                                                                      this.gridColumn7,
                                                                                      this.gridColumn8});
     this.gridView2.GridControl = this.gridSpaPackage;
     this.gridView2.Name = "gridView2";
     this.gridView2.OptionsBehavior.Editable = false;
     this.gridView2.OptionsCustomization.AllowFilter = false;
     this.gridView2.OptionsCustomization.AllowSort = false;
     this.gridView2.OptionsView.ShowGroupPanel = false;
     //
     // gridColumn6
     //
     this.gridColumn6.Caption = "Code";
     this.gridColumn6.FieldName = "Code";
     this.gridColumn6.Name = "gridColumn6";
     this.gridColumn6.Visible = true;
     this.gridColumn6.VisibleIndex = 0;
     this.gridColumn6.Width = 55;
     //
     // gridColumn7
     //
     this.gridColumn7.Caption = "Description";
     this.gridColumn7.FieldName = "Description";
     this.gridColumn7.Name = "gridColumn7";
     this.gridColumn7.Visible = true;
     this.gridColumn7.VisibleIndex = 1;
     this.gridColumn7.Width = 155;
     //
     // gridColumn8
     //
     this.gridColumn8.Caption = "Total";
     this.gridColumn8.FieldName = "Quantity";
     this.gridColumn8.Name = "gridColumn8";
     this.gridColumn8.Visible = true;
     this.gridColumn8.VisibleIndex = 2;
     this.gridColumn8.Width = 80;
     //
     // label5
     //
     this.label5.BackColor = System.Drawing.Color.Transparent;
     this.label5.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.label5.Location = new System.Drawing.Point(24, 248);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(176, 23);
     this.label5.TabIndex = 10;
     this.label5.Text = "Spa Single Treatment";
     this.label5.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // label6
     //
     this.label6.BackColor = System.Drawing.Color.Transparent;
     this.label6.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.label6.Location = new System.Drawing.Point(488, 248);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(176, 23);
     this.label6.TabIndex = 11;
     this.label6.Text = "Spa Package";
     this.label6.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // label7
     //
     this.label7.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.label7.Location = new System.Drawing.Point(488, 912);
     this.label7.Name = "label7";
     this.label7.Size = new System.Drawing.Size(176, 23);
     this.label7.TabIndex = 15;
     this.label7.Text = "Vouchers";
     //
     // label8
     //
     this.label8.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.label8.Location = new System.Drawing.Point(24, 912);
     this.label8.Name = "label8";
     this.label8.Size = new System.Drawing.Size(176, 23);
     this.label8.TabIndex = 14;
     this.label8.Text = "Free Spa Menu Trial";
     //
     // gridVouchers
     //
     //
     // gridVouchers.EmbeddedNavigator
     //
     this.gridVouchers.EmbeddedNavigator.Name = "";
     this.gridVouchers.Location = new System.Drawing.Point(488, 936);
     this.gridVouchers.MainView = this.gridView3;
     this.gridVouchers.Name = "gridVouchers";
     this.gridVouchers.Size = new System.Drawing.Size(432, 160);
     this.gridVouchers.TabIndex = 13;
     this.gridVouchers.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
                                                                                                 this.gridView3});
     //
     // gridView3
     //
     this.gridView3.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
                                                                                      this.gridColumn9,
                                                                                      this.gridColumn10,
                                                                                      this.gridColumn11});
     this.gridView3.GridControl = this.gridVouchers;
     this.gridView3.Name = "gridView3";
     this.gridView3.OptionsBehavior.Editable = false;
     this.gridView3.OptionsCustomization.AllowFilter = false;
     this.gridView3.OptionsCustomization.AllowSort = false;
     this.gridView3.OptionsView.ShowGroupPanel = false;
     //
     // gridColumn9
     //
     this.gridColumn9.Caption = "Code";
     this.gridColumn9.FieldName = "Code";
     this.gridColumn9.Name = "gridColumn9";
     this.gridColumn9.Visible = true;
     this.gridColumn9.VisibleIndex = 0;
     this.gridColumn9.Width = 55;
     //
     // gridColumn10
     //
     this.gridColumn10.Caption = "Description";
     this.gridColumn10.FieldName = "Description";
     this.gridColumn10.Name = "gridColumn10";
     this.gridColumn10.Visible = true;
     this.gridColumn10.VisibleIndex = 1;
     this.gridColumn10.Width = 155;
     //
     // gridColumn11
     //
     this.gridColumn11.Caption = "Total";
     this.gridColumn11.FieldName = "Quantity";
     this.gridColumn11.Name = "gridColumn11";
     this.gridColumn11.Visible = true;
     this.gridColumn11.VisibleIndex = 2;
     this.gridColumn11.Width = 80;
     //
     // gridFreeSpa
     //
     //
     // gridFreeSpa.EmbeddedNavigator
     //
     this.gridFreeSpa.EmbeddedNavigator.Name = "";
     this.gridFreeSpa.Location = new System.Drawing.Point(16, 936);
     this.gridFreeSpa.MainView = this.gridView4;
     this.gridFreeSpa.Name = "gridFreeSpa";
     this.gridFreeSpa.Size = new System.Drawing.Size(464, 160);
     this.gridFreeSpa.TabIndex = 12;
     this.gridFreeSpa.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
                                                                                                this.gridView4});
     //
     // gridView4
     //
     this.gridView4.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
                                                                                      this.gridColumn12,
                                                                                      this.gridColumn13,
                                                                                      this.gridColumn14});
     this.gridView4.GridControl = this.gridFreeSpa;
     this.gridView4.Name = "gridView4";
     this.gridView4.OptionsBehavior.Editable = false;
     this.gridView4.OptionsCustomization.AllowFilter = false;
     this.gridView4.OptionsCustomization.AllowSort = false;
     this.gridView4.OptionsView.ShowGroupPanel = false;
     //
     // gridColumn12
     //
     this.gridColumn12.Caption = "Code";
     this.gridColumn12.FieldName = "Code";
     this.gridColumn12.Name = "gridColumn12";
     this.gridColumn12.Visible = true;
     this.gridColumn12.VisibleIndex = 0;
     this.gridColumn12.Width = 55;
     //
     // gridColumn13
     //
     this.gridColumn13.Caption = "Description";
     this.gridColumn13.FieldName = "Description";
     this.gridColumn13.Name = "gridColumn13";
     this.gridColumn13.Visible = true;
     this.gridColumn13.VisibleIndex = 1;
     this.gridColumn13.Width = 155;
     //
     // gridColumn14
     //
     this.gridColumn14.Caption = "Total";
     this.gridColumn14.FieldName = "Quantity";
     this.gridColumn14.Name = "gridColumn14";
     this.gridColumn14.Visible = true;
     this.gridColumn14.VisibleIndex = 2;
     this.gridColumn14.Width = 80;
     //
     // label9
     //
     this.label9.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.label9.Location = new System.Drawing.Point(24, 688);
     this.label9.Name = "label9";
     this.label9.Size = new System.Drawing.Size(176, 23);
     this.label9.TabIndex = 17;
     this.label9.Text = "Treatment";
     //
     // gridTreatment
     //
     //
     // gridTreatment.EmbeddedNavigator
     //
     this.gridTreatment.EmbeddedNavigator.Name = "";
     this.gridTreatment.Location = new System.Drawing.Point(16, 704);
     this.gridTreatment.MainView = this.gridView5;
     this.gridTreatment.Name = "gridTreatment";
     this.gridTreatment.Size = new System.Drawing.Size(464, 192);
     this.gridTreatment.TabIndex = 16;
     this.gridTreatment.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
                                                                                                  this.gridView5});
     //
     // gridView5
     //
     this.gridView5.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
                                                                                      this.gridColumn15,
                                                                                      this.gridColumn16,
                                                                                      this.gridColumn17});
     this.gridView5.GridControl = this.gridTreatment;
     this.gridView5.Name = "gridView5";
     this.gridView5.OptionsBehavior.Editable = false;
     this.gridView5.OptionsCustomization.AllowFilter = false;
     this.gridView5.OptionsCustomization.AllowSort = false;
     this.gridView5.OptionsView.ShowGroupPanel = false;
     //
     // gridColumn15
     //
     this.gridColumn15.Caption = "Code";
     this.gridColumn15.FieldName = "Code";
     this.gridColumn15.Name = "gridColumn15";
     this.gridColumn15.Visible = true;
     this.gridColumn15.VisibleIndex = 0;
     this.gridColumn15.Width = 55;
     //
     // gridColumn16
     //
     this.gridColumn16.Caption = "Description";
     this.gridColumn16.FieldName = "Description";
     this.gridColumn16.Name = "gridColumn16";
     this.gridColumn16.Visible = true;
     this.gridColumn16.VisibleIndex = 1;
     this.gridColumn16.Width = 155;
     //
     // gridColumn17
     //
     this.gridColumn17.Caption = "Total";
     this.gridColumn17.FieldName = "Quantity";
     this.gridColumn17.Name = "gridColumn17";
     this.gridColumn17.Visible = true;
     this.gridColumn17.VisibleIndex = 2;
     this.gridColumn17.Width = 80;
     //
     // label10
     //
     this.label10.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.label10.Location = new System.Drawing.Point(488, 464);
     this.label10.Name = "label10";
     this.label10.Size = new System.Drawing.Size(224, 23);
     this.label10.TabIndex = 21;
     this.label10.Text = "IPL Package";
     //
     // label11
     //
     this.label11.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.label11.Location = new System.Drawing.Point(24, 464);
     this.label11.Name = "label11";
     this.label11.Size = new System.Drawing.Size(176, 23);
     this.label11.TabIndex = 20;
     this.label11.Text = "Spa Product";
     //
     // GridIPLPackage
     //
     //
     // GridIPLPackage.EmbeddedNavigator
     //
     this.GridIPLPackage.EmbeddedNavigator.Name = "";
     this.GridIPLPackage.Location = new System.Drawing.Point(488, 488);
     this.GridIPLPackage.MainView = this.gridView6;
     this.GridIPLPackage.Name = "GridIPLPackage";
     this.GridIPLPackage.Size = new System.Drawing.Size(432, 192);
     this.GridIPLPackage.TabIndex = 19;
     this.GridIPLPackage.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
                                                                                                   this.gridView6});
     //
     // gridView6
     //
     this.gridView6.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
                                                                                      this.gridColumn18,
                                                                                      this.gridColumn19,
                                                                                      this.gridColumn20});
     this.gridView6.GridControl = this.GridIPLPackage;
     this.gridView6.Name = "gridView6";
     this.gridView6.OptionsBehavior.Editable = false;
     this.gridView6.OptionsCustomization.AllowFilter = false;
     this.gridView6.OptionsCustomization.AllowSort = false;
     this.gridView6.OptionsView.ShowGroupPanel = false;
     //
     // gridColumn18
     //
     this.gridColumn18.Caption = "Code";
     this.gridColumn18.FieldName = "Code";
     this.gridColumn18.Name = "gridColumn18";
     this.gridColumn18.Visible = true;
     this.gridColumn18.VisibleIndex = 0;
     this.gridColumn18.Width = 55;
     //
     // gridColumn19
     //
     this.gridColumn19.Caption = "Description";
     this.gridColumn19.FieldName = "Description";
     this.gridColumn19.Name = "gridColumn19";
     this.gridColumn19.Visible = true;
     this.gridColumn19.VisibleIndex = 1;
     this.gridColumn19.Width = 155;
     //
     // gridColumn20
     //
     this.gridColumn20.Caption = "Total";
     this.gridColumn20.FieldName = "Quantity";
     this.gridColumn20.Name = "gridColumn20";
     this.gridColumn20.Visible = true;
     this.gridColumn20.VisibleIndex = 2;
     this.gridColumn20.Width = 80;
     //
     // GridSpaProduct
     //
     //
     // GridSpaProduct.EmbeddedNavigator
     //
     this.GridSpaProduct.EmbeddedNavigator.Name = "";
     this.GridSpaProduct.Location = new System.Drawing.Point(16, 488);
     this.GridSpaProduct.MainView = this.gridView7;
     this.GridSpaProduct.Name = "GridSpaProduct";
     this.GridSpaProduct.Size = new System.Drawing.Size(464, 192);
     this.GridSpaProduct.TabIndex = 18;
     this.GridSpaProduct.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
                                                                                                   this.gridView7});
     //
     // gridView7
     //
     this.gridView7.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
                                                                                      this.gridColumn21,
                                                                                      this.gridColumn22,
                                                                                      this.gridColumn23});
     this.gridView7.GridControl = this.GridSpaProduct;
     this.gridView7.Name = "gridView7";
     this.gridView7.OptionsBehavior.Editable = false;
     this.gridView7.OptionsCustomization.AllowFilter = false;
     this.gridView7.OptionsCustomization.AllowSort = false;
     this.gridView7.OptionsView.ShowGroupPanel = false;
     //
     // gridColumn21
     //
     this.gridColumn21.Caption = "Code";
     this.gridColumn21.FieldName = "Code";
     this.gridColumn21.Name = "gridColumn21";
     this.gridColumn21.Visible = true;
     this.gridColumn21.VisibleIndex = 0;
     this.gridColumn21.Width = 55;
     //
     // gridColumn22
     //
     this.gridColumn22.Caption = "Description";
     this.gridColumn22.FieldName = "Description";
     this.gridColumn22.Name = "gridColumn22";
     this.gridColumn22.Visible = true;
     this.gridColumn22.VisibleIndex = 1;
     this.gridColumn22.Width = 155;
     //
     // gridColumn23
     //
     this.gridColumn23.Caption = "Total";
     this.gridColumn23.FieldName = "Quantity";
     this.gridColumn23.Name = "gridColumn23";
     this.gridColumn23.Visible = true;
     this.gridColumn23.VisibleIndex = 2;
     this.gridColumn23.Width = 80;
     //
     // label12
     //
     this.label12.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.label12.Location = new System.Drawing.Point(488, 688);
     this.label12.Name = "label12";
     this.label12.Size = new System.Drawing.Size(176, 23);
     this.label12.TabIndex = 25;
     this.label12.Text = "Credit Package Sales";
     //
     // gridCreditPackage
     //
     //
     // gridCreditPackage.EmbeddedNavigator
     //
     this.gridCreditPackage.EmbeddedNavigator.Name = "";
     this.gridCreditPackage.Location = new System.Drawing.Point(488, 704);
     this.gridCreditPackage.MainView = this.gridView8;
     this.gridCreditPackage.Name = "gridCreditPackage";
     this.gridCreditPackage.Size = new System.Drawing.Size(432, 192);
     this.gridCreditPackage.TabIndex = 23;
     this.gridCreditPackage.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
                                                                                                      this.gridView8});
     //
     // gridView8
     //
     this.gridView8.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
                                                                                      this.gridColumn24,
                                                                                      this.gridColumn25,
                                                                                      this.gridColumn26});
     this.gridView8.GridControl = this.gridCreditPackage;
     this.gridView8.Name = "gridView8";
     this.gridView8.OptionsBehavior.Editable = false;
     this.gridView8.OptionsCustomization.AllowFilter = false;
     this.gridView8.OptionsCustomization.AllowSort = false;
     this.gridView8.OptionsView.ShowGroupPanel = false;
     //
     // gridColumn24
     //
     this.gridColumn24.Caption = "Code";
     this.gridColumn24.FieldName = "Code";
     this.gridColumn24.Name = "gridColumn24";
     this.gridColumn24.Visible = true;
     this.gridColumn24.VisibleIndex = 0;
     this.gridColumn24.Width = 55;
     //
     // gridColumn25
     //
     this.gridColumn25.Caption = "Description";
     this.gridColumn25.FieldName = "Description";
     this.gridColumn25.Name = "gridColumn25";
     this.gridColumn25.Visible = true;
     this.gridColumn25.VisibleIndex = 1;
     this.gridColumn25.Width = 155;
     //
     // gridColumn26
     //
     this.gridColumn26.Caption = "Total";
     this.gridColumn26.FieldName = "Quantity";
     this.gridColumn26.Name = "gridColumn26";
     this.gridColumn26.Visible = true;
     this.gridColumn26.VisibleIndex = 2;
     this.gridColumn26.Width = 80;
     //
     // cmbBranch
     //
     this.cmbBranch.Location = new System.Drawing.Point(232, 8);
     this.cmbBranch.Name = "cmbBranch";
     //
     // cmbBranch.Properties
     //
     this.cmbBranch.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                       new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cmbBranch.Size = new System.Drawing.Size(144, 20);
     this.cmbBranch.TabIndex = 26;
     this.cmbBranch.SelectedValueChanged += new System.EventHandler(this.cmbBranch_SelectedValueChanged);
     //
     // printingSystem1
     //
     this.printingSystem1.Links.AddRange(new object[] {
                                                          this.printableComponentLink1,
                                                          this.printableComponentLink2,
                                                          this.printableComponentLink3,
                                                          this.printableComponentLink4,
                                                          this.printableComponentLink5,
                                                          this.printableComponentLink6,
                                                          this.printableComponentLink7,
                                                          this.printableComponentLink8,
                                                          this.printableComponentLink9,
                                                          this.printableComponentLink10});
     //
     // printableComponentLink1
     //
     this.printableComponentLink1.Component = this.gridReceipt;
     this.printableComponentLink1.EnablePageDialog = false;
     this.printableComponentLink1.PrintingSystem = this.printingSystem1;
     this.printableComponentLink1.CreateReportHeaderArea += new DevExpress.XtraPrinting.CreateAreaEventHandler(this.printableComponentLink1_CreateReportHeaderArea);
     //
     // printableComponentLink2
     //
     this.printableComponentLink2.Component = this.GridTotalCollection;
     this.printableComponentLink2.PrintingSystem = this.printingSystem1;
     this.printableComponentLink2.CreateReportHeaderArea += new DevExpress.XtraPrinting.CreateAreaEventHandler(this.printableComponentLink2_CreateReportHeaderArea);
     //
     // printableComponentLink3
     //
     this.printableComponentLink3.Component = this.GridSingleTreatment;
     this.printableComponentLink3.PrintingSystem = this.printingSystem1;
     this.printableComponentLink3.CreateReportHeaderArea += new DevExpress.XtraPrinting.CreateAreaEventHandler(this.printableComponentLink3_CreateReportHeaderArea);
     //
     // printableComponentLink4
     //
     this.printableComponentLink4.Component = this.gridSpaPackage;
     this.printableComponentLink4.PrintingSystem = this.printingSystem1;
     this.printableComponentLink4.CreateReportHeaderArea += new DevExpress.XtraPrinting.CreateAreaEventHandler(this.printableComponentLink4_CreateReportHeaderArea);
     //
     // printableComponentLink5
     //
     this.printableComponentLink5.Component = this.GridSpaProduct;
     this.printableComponentLink5.PrintingSystem = this.printingSystem1;
     this.printableComponentLink5.CreateReportHeaderArea += new DevExpress.XtraPrinting.CreateAreaEventHandler(this.printableComponentLink5_CreateReportHeaderArea);
     //
     // printableComponentLink6
     //
     this.printableComponentLink6.Component = this.GridIPLPackage;
     this.printableComponentLink6.PrintingSystem = this.printingSystem1;
     this.printableComponentLink6.CreateReportHeaderArea += new DevExpress.XtraPrinting.CreateAreaEventHandler(this.printableComponentLink6_CreateReportHeaderArea);
     //
     // printableComponentLink7
     //
     this.printableComponentLink7.Component = this.gridTreatment;
     this.printableComponentLink7.PrintingSystem = this.printingSystem1;
     this.printableComponentLink7.CreateReportHeaderArea += new DevExpress.XtraPrinting.CreateAreaEventHandler(this.printableComponentLink7_CreateReportHeaderArea);
     //
     // printableComponentLink8
     //
     this.printableComponentLink8.Component = this.gridCreditPackage;
     this.printableComponentLink8.PrintingSystem = this.printingSystem1;
     this.printableComponentLink8.CreateReportHeaderArea += new DevExpress.XtraPrinting.CreateAreaEventHandler(this.printableComponentLink8_CreateReportHeaderArea);
     //
     // printableComponentLink9
     //
     this.printableComponentLink9.Component = this.gridFreeSpa;
     this.printableComponentLink9.PrintingSystem = this.printingSystem1;
     this.printableComponentLink9.CreateReportHeaderArea += new DevExpress.XtraPrinting.CreateAreaEventHandler(this.printableComponentLink9_CreateReportHeaderArea);
     //
     // printableComponentLink10
     //
     this.printableComponentLink10.Component = this.gridVouchers;
     this.printableComponentLink10.PrintingSystem = this.printingSystem1;
     this.printableComponentLink10.CreateReportHeaderArea += new DevExpress.XtraPrinting.CreateAreaEventHandler(this.printableComponentLink10_CreateReportHeaderArea);
     //
     // PRINT1
     //
     this.PRINT1.EditValue = "PRINT";
     this.PRINT1.Location = new System.Drawing.Point(424, 8);
     this.PRINT1.Name = "PRINT1";
     //
     // PRINT1.Properties
     //
     this.PRINT1.Properties.Appearance.BackColor = System.Drawing.SystemColors.Control;
     this.PRINT1.Properties.Appearance.Options.UseBackColor = true;
     this.PRINT1.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.PRINT1.Size = new System.Drawing.Size(40, 18);
     this.PRINT1.TabIndex = 141;
     this.PRINT1.OpenLink += new DevExpress.XtraEditors.Controls.OpenLinkEventHandler(this.PRINT1_OpenLink);
     //
     // PRINT2
     //
     this.PRINT2.EditValue = "PRINT";
     this.PRINT2.Location = new System.Drawing.Point(432, 248);
     this.PRINT2.Name = "PRINT2";
     //
     // PRINT2.Properties
     //
     this.PRINT2.Properties.Appearance.BackColor = System.Drawing.SystemColors.Control;
     this.PRINT2.Properties.Appearance.Options.UseBackColor = true;
     this.PRINT2.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.PRINT2.Size = new System.Drawing.Size(40, 18);
     this.PRINT2.TabIndex = 142;
     this.PRINT2.OpenLink += new DevExpress.XtraEditors.Controls.OpenLinkEventHandler(this.PRINT2_OpenLink);
     //
     // PRINT3
     //
     this.PRINT3.EditValue = "PRINT";
     this.PRINT3.Location = new System.Drawing.Point(848, 248);
     this.PRINT3.Name = "PRINT3";
     //
     // PRINT3.Properties
     //
     this.PRINT3.Properties.Appearance.BackColor = System.Drawing.SystemColors.Control;
     this.PRINT3.Properties.Appearance.Options.UseBackColor = true;
     this.PRINT3.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.PRINT3.Size = new System.Drawing.Size(40, 18);
     this.PRINT3.TabIndex = 143;
     this.PRINT3.OpenLink += new DevExpress.XtraEditors.Controls.OpenLinkEventHandler(this.PRINT3_OpenLink);
     //
     // PRINT4
     //
     this.PRINT4.EditValue = "PRINT";
     this.PRINT4.Location = new System.Drawing.Point(432, 464);
     this.PRINT4.Name = "PRINT4";
     //
     // PRINT4.Properties
     //
     this.PRINT4.Properties.Appearance.BackColor = System.Drawing.SystemColors.Control;
     this.PRINT4.Properties.Appearance.Options.UseBackColor = true;
     this.PRINT4.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.PRINT4.Size = new System.Drawing.Size(40, 18);
     this.PRINT4.TabIndex = 144;
     this.PRINT4.OpenLink += new DevExpress.XtraEditors.Controls.OpenLinkEventHandler(this.PRINT4_OpenLink);
     //
     // PRINT5
     //
     this.PRINT5.EditValue = "PRINT";
     this.PRINT5.Location = new System.Drawing.Point(848, 464);
     this.PRINT5.Name = "PRINT5";
     //
     // PRINT5.Properties
     //
     this.PRINT5.Properties.Appearance.BackColor = System.Drawing.SystemColors.Control;
     this.PRINT5.Properties.Appearance.Options.UseBackColor = true;
     this.PRINT5.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.PRINT5.Size = new System.Drawing.Size(40, 18);
     this.PRINT5.TabIndex = 145;
     this.PRINT5.OpenLink += new DevExpress.XtraEditors.Controls.OpenLinkEventHandler(this.PRINT5_OpenLink);
     //
     // PRINT6
     //
     this.PRINT6.EditValue = "PRINT";
     this.PRINT6.Location = new System.Drawing.Point(432, 680);
     this.PRINT6.Name = "PRINT6";
     //
     // PRINT6.Properties
     //
     this.PRINT6.Properties.Appearance.BackColor = System.Drawing.SystemColors.Control;
     this.PRINT6.Properties.Appearance.Options.UseBackColor = true;
     this.PRINT6.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.PRINT6.Size = new System.Drawing.Size(40, 18);
     this.PRINT6.TabIndex = 146;
     this.PRINT6.OpenLink += new DevExpress.XtraEditors.Controls.OpenLinkEventHandler(this.PRINT6_OpenLink);
     //
     // PRINT7
     //
     this.PRINT7.EditValue = "PRINT";
     this.PRINT7.Location = new System.Drawing.Point(848, 680);
     this.PRINT7.Name = "PRINT7";
     //
     // PRINT7.Properties
     //
     this.PRINT7.Properties.Appearance.BackColor = System.Drawing.SystemColors.Control;
     this.PRINT7.Properties.Appearance.Options.UseBackColor = true;
     this.PRINT7.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.PRINT7.Size = new System.Drawing.Size(40, 18);
     this.PRINT7.TabIndex = 147;
     this.PRINT7.OpenLink += new DevExpress.XtraEditors.Controls.OpenLinkEventHandler(this.PRINT7_OpenLink);
     //
     // PRINT8
     //
     this.PRINT8.EditValue = "PRINT";
     this.PRINT8.Location = new System.Drawing.Point(432, 912);
     this.PRINT8.Name = "PRINT8";
     //
     // PRINT8.Properties
     //
     this.PRINT8.Properties.Appearance.BackColor = System.Drawing.SystemColors.Control;
     this.PRINT8.Properties.Appearance.Options.UseBackColor = true;
     this.PRINT8.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.PRINT8.Size = new System.Drawing.Size(40, 18);
     this.PRINT8.TabIndex = 148;
     this.PRINT8.OpenLink += new DevExpress.XtraEditors.Controls.OpenLinkEventHandler(this.PRINT8_OpenLink);
     //
     // PRINT9
     //
     this.PRINT9.EditValue = "PRINT";
     this.PRINT9.Location = new System.Drawing.Point(848, 912);
     this.PRINT9.Name = "PRINT9";
     //
     // PRINT9.Properties
     //
     this.PRINT9.Properties.Appearance.BackColor = System.Drawing.SystemColors.Control;
     this.PRINT9.Properties.Appearance.Options.UseBackColor = true;
     this.PRINT9.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.PRINT9.Size = new System.Drawing.Size(40, 18);
     this.PRINT9.TabIndex = 149;
     this.PRINT9.OpenLink += new DevExpress.XtraEditors.Controls.OpenLinkEventHandler(this.PRINT9_OpenLink);
     //
     // RPSpaDailyBranchSales
     //
     this.AutoScale = false;
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.AutoScroll = true;
     this.ClientSize = new System.Drawing.Size(859, 384);
     this.Controls.Add(this.GridSingleTreatment);
     this.Controls.Add(this.gridSpaPackage);
     this.Controls.Add(this.gridVouchers);
     this.Controls.Add(this.gridFreeSpa);
     this.Controls.Add(this.gridTreatment);
     this.Controls.Add(this.GridIPLPackage);
     this.Controls.Add(this.GridSpaProduct);
     this.Controls.Add(this.gridCreditPackage);
     this.Controls.Add(this.PRINT9);
     this.Controls.Add(this.PRINT8);
     this.Controls.Add(this.PRINT7);
     this.Controls.Add(this.PRINT6);
     this.Controls.Add(this.PRINT5);
     this.Controls.Add(this.PRINT4);
     this.Controls.Add(this.PRINT3);
     this.Controls.Add(this.PRINT2);
     this.Controls.Add(this.PRINT1);
     this.Controls.Add(this.cmbBranch);
     this.Controls.Add(this.label12);
     this.Controls.Add(this.label10);
     this.Controls.Add(this.label11);
     this.Controls.Add(this.label9);
     this.Controls.Add(this.label7);
     this.Controls.Add(this.label8);
     this.Controls.Add(this.label6);
     this.Controls.Add(this.label5);
     this.Controls.Add(this.label4);
     this.Controls.Add(this.label3);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.dateEdit1);
     this.Controls.Add(this.GridTotalCollection);
     this.Controls.Add(this.gridReceipt);
     this.DockPadding.Bottom = 20;
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
     this.Name = "RPSpaDailyBranchSales";
     this.ShowInTaskbar = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text = "Spa Daily Branch Sales";
     this.TopMost = true;
     this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
     this.Load += new System.EventHandler(this.RPSpaDailyBranchSales_Load);
     ((System.ComponentModel.ISupportInitialize)(this.gvReceiptPayment)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridReceipt)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvReceipt)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.GridTotalCollection)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEdit1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.GridSingleTreatment)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridSpaPackage)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridVouchers)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridFreeSpa)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridTreatment)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.GridIPLPackage)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView6)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.GridSpaProduct)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView7)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridCreditPackage)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView8)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbBranch.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.printingSystem1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.PRINT1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.PRINT2.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.PRINT3.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.PRINT4.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.PRINT5.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.PRINT6.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.PRINT7.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.PRINT8.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.PRINT9.Properties)).EndInit();
     this.ResumeLayout(false);
 }
Beispiel #29
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.txtReceiptNo    = new DevExpress.XtraEditors.TextEdit();
     this.lblDepositMoney = new System.Windows.Forms.Label();
     this.btnSave         = new DevExpress.XtraEditors.SimpleButton();
     this.Cancel          = new DevExpress.XtraEditors.SimpleButton();
     this.label1          = new System.Windows.Forms.Label();
     this.cmbPaymentMode  = new DevExpress.XtraEditors.ImageComboBoxEdit();
     this.label2          = new System.Windows.Forms.Label();
     this.txtCreditCard   = new DevExpress.XtraEditors.TextEdit();
     this.txtMode         = new System.Windows.Forms.TextBox();
     this.label3          = new System.Windows.Forms.Label();
     this.label4          = new System.Windows.Forms.Label();
     this.txtMode1        = new System.Windows.Forms.TextBox();
     this.txtCreditCard1  = new DevExpress.XtraEditors.TextEdit();
     this.label5          = new System.Windows.Forms.Label();
     this.cmbPaymentMode1 = new DevExpress.XtraEditors.ImageComboBoxEdit();
     this.label6          = new System.Windows.Forms.Label();
     ((System.ComponentModel.ISupportInitialize)(this.txtReceiptNo.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbPaymentMode.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCreditCard.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCreditCard1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbPaymentMode1.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // txtReceiptNo
     //
     this.txtReceiptNo.EditValue = "";
     this.txtReceiptNo.Enabled   = false;
     this.txtReceiptNo.Location  = new System.Drawing.Point(168, 16);
     this.txtReceiptNo.Name      = "txtReceiptNo";
     //
     // txtReceiptNo.Properties
     //
     this.txtReceiptNo.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.False;
     this.txtReceiptNo.Properties.ReadOnly       = true;
     this.txtReceiptNo.Size     = new System.Drawing.Size(168, 20);
     this.txtReceiptNo.TabIndex = 8;
     //
     // lblDepositMoney
     //
     this.lblDepositMoney.Font     = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.lblDepositMoney.Location = new System.Drawing.Point(32, 16);
     this.lblDepositMoney.Name     = "lblDepositMoney";
     this.lblDepositMoney.Size     = new System.Drawing.Size(112, 23);
     this.lblDepositMoney.TabIndex = 7;
     this.lblDepositMoney.Text     = "Receipt No :";
     //
     // btnSave
     //
     this.btnSave.Appearance.Font            = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.btnSave.Appearance.Options.UseFont = true;
     this.btnSave.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnSave.Location    = new System.Drawing.Point(168, 248);
     this.btnSave.Name        = "btnSave";
     this.btnSave.Size        = new System.Drawing.Size(80, 20);
     this.btnSave.TabIndex    = 9;
     this.btnSave.Text        = "Save";
     this.btnSave.Click      += new System.EventHandler(this.btnSave_Click);
     //
     // Cancel
     //
     this.Cancel.Appearance.Font            = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.Cancel.Appearance.Options.UseFont = true;
     this.Cancel.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.Cancel.Location    = new System.Drawing.Point(256, 248);
     this.Cancel.Name        = "Cancel";
     this.Cancel.Size        = new System.Drawing.Size(80, 20);
     this.Cancel.TabIndex    = 10;
     this.Cancel.Text        = "Cancel";
     this.Cancel.Click      += new System.EventHandler(this.Cancel_Click);
     //
     // 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(32, 48);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(112, 23);
     this.label1.TabIndex = 11;
     this.label1.Text     = "Payment Mode : ";
     //
     // cmbPaymentMode
     //
     this.cmbPaymentMode.Location = new System.Drawing.Point(168, 48);
     this.cmbPaymentMode.Name     = "cmbPaymentMode";
     //
     // cmbPaymentMode.Properties
     //
     this.cmbPaymentMode.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.cmbPaymentMode.Size              = new System.Drawing.Size(168, 20);
     this.cmbPaymentMode.TabIndex          = 12;
     this.cmbPaymentMode.EditValueChanged += new System.EventHandler(this.cmbPaymentMode_EditValueChanged);
     //
     // 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(32, 80);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(112, 23);
     this.label2.TabIndex = 13;
     this.label2.Text     = "Credit Card No. :";
     //
     // txtCreditCard
     //
     this.txtCreditCard.AllowDrop = true;
     this.txtCreditCard.EditValue = "____-____-____-____";
     this.txtCreditCard.Enabled   = false;
     this.txtCreditCard.Location  = new System.Drawing.Point(168, 80);
     this.txtCreditCard.Name      = "txtCreditCard";
     //
     // txtCreditCard.Properties
     //
     this.txtCreditCard.Properties.Appearance.Font            = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.txtCreditCard.Properties.Appearance.Options.UseFont = true;
     this.txtCreditCard.Properties.BorderStyle       = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.txtCreditCard.Properties.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.txtCreditCard.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.txtCreditCard.Properties.Mask.EditMask        = "\\d{4}-\\d{4}-\\d{4}-\\d{4}";
     this.txtCreditCard.Properties.Mask.IgnoreMaskBlank = false;
     this.txtCreditCard.Properties.Mask.MaskType        = DevExpress.XtraEditors.Mask.MaskType.Regular;
     this.txtCreditCard.Properties.MaxLength            = 19;
     this.txtCreditCard.Size     = new System.Drawing.Size(168, 20);
     this.txtCreditCard.TabIndex = 15;
     //
     // txtMode
     //
     this.txtMode.Location = new System.Drawing.Point(168, 112);
     this.txtMode.Name     = "txtMode";
     this.txtMode.Size     = new System.Drawing.Size(168, 20);
     this.txtMode.TabIndex = 16;
     this.txtMode.Text     = "";
     //
     // label3
     //
     this.label3.Font     = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label3.Location = new System.Drawing.Point(34, 112);
     this.label3.Name     = "label3";
     this.label3.Size     = new System.Drawing.Size(72, 23);
     this.label3.TabIndex = 17;
     this.label3.Text     = "Amount :";
     //
     // label4
     //
     this.label4.Font     = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label4.Location = new System.Drawing.Point(32, 208);
     this.label4.Name     = "label4";
     this.label4.Size     = new System.Drawing.Size(72, 23);
     this.label4.TabIndex = 23;
     this.label4.Text     = "Amount :";
     //
     // txtMode1
     //
     this.txtMode1.Location     = new System.Drawing.Point(168, 208);
     this.txtMode1.Name         = "txtMode1";
     this.txtMode1.Size         = new System.Drawing.Size(168, 20);
     this.txtMode1.TabIndex     = 22;
     this.txtMode1.Text         = "";
     this.txtMode1.TextChanged += new System.EventHandler(this.txtMode1_TextChanged);
     //
     // txtCreditCard1
     //
     this.txtCreditCard1.AllowDrop = true;
     this.txtCreditCard1.EditValue = "____-____-____-____";
     this.txtCreditCard1.Enabled   = false;
     this.txtCreditCard1.Location  = new System.Drawing.Point(168, 176);
     this.txtCreditCard1.Name      = "txtCreditCard1";
     //
     // txtCreditCard1.Properties
     //
     this.txtCreditCard1.Properties.Appearance.Font            = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.txtCreditCard1.Properties.Appearance.Options.UseFont = true;
     this.txtCreditCard1.Properties.BorderStyle       = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.txtCreditCard1.Properties.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.txtCreditCard1.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.txtCreditCard1.Properties.Mask.EditMask        = "\\d{4}-\\d{4}-\\d{4}-\\d{4}";
     this.txtCreditCard1.Properties.Mask.IgnoreMaskBlank = false;
     this.txtCreditCard1.Properties.Mask.MaskType        = DevExpress.XtraEditors.Mask.MaskType.Regular;
     this.txtCreditCard1.Properties.MaxLength            = 19;
     this.txtCreditCard1.Size     = new System.Drawing.Size(168, 20);
     this.txtCreditCard1.TabIndex = 21;
     //
     // label5
     //
     this.label5.Font     = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label5.Location = new System.Drawing.Point(32, 176);
     this.label5.Name     = "label5";
     this.label5.Size     = new System.Drawing.Size(112, 23);
     this.label5.TabIndex = 20;
     this.label5.Text     = "Credit Card No. :";
     //
     // cmbPaymentMode1
     //
     this.cmbPaymentMode1.Location = new System.Drawing.Point(168, 144);
     this.cmbPaymentMode1.Name     = "cmbPaymentMode1";
     //
     // cmbPaymentMode1.Properties
     //
     this.cmbPaymentMode1.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.cmbPaymentMode1.Size              = new System.Drawing.Size(168, 20);
     this.cmbPaymentMode1.TabIndex          = 19;
     this.cmbPaymentMode1.EditValueChanged += new System.EventHandler(this.cmbPaymentMode1_EditValueChanged);
     this.cmbPaymentMode1.Click            += new System.EventHandler(this.cmbPaymentMode1_Click);
     //
     // label6
     //
     this.label6.Font     = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label6.Location = new System.Drawing.Point(32, 144);
     this.label6.Name     = "label6";
     this.label6.Size     = new System.Drawing.Size(112, 23);
     this.label6.TabIndex = 18;
     this.label6.Text     = "Payment Mode : ";
     //
     // frmPaymentCode
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(432, 278);
     this.Controls.Add(this.label4);
     this.Controls.Add(this.txtMode1);
     this.Controls.Add(this.txtCreditCard1);
     this.Controls.Add(this.label5);
     this.Controls.Add(this.cmbPaymentMode1);
     this.Controls.Add(this.label6);
     this.Controls.Add(this.label3);
     this.Controls.Add(this.txtMode);
     this.Controls.Add(this.txtCreditCard);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.cmbPaymentMode);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.txtReceiptNo);
     this.Controls.Add(this.lblDepositMoney);
     this.Controls.Add(this.btnSave);
     this.Controls.Add(this.Cancel);
     this.Name  = "frmPaymentCode";
     this.Text  = "Edit Payment Code";
     this.Load += new System.EventHandler(this.frmPaymentCode_Load);
     ((System.ComponentModel.ISupportInitialize)(this.txtReceiptNo.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbPaymentMode.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCreditCard.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCreditCard1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbPaymentMode1.Properties)).EndInit();
     this.ResumeLayout(false);
 }
Beispiel #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.txtReceiptNo = new DevExpress.XtraEditors.TextEdit();
     this.lblDepositMoney = new System.Windows.Forms.Label();
     this.btnSave = new DevExpress.XtraEditors.SimpleButton();
     this.Cancel = new DevExpress.XtraEditors.SimpleButton();
     this.label1 = new System.Windows.Forms.Label();
     this.cmbPaymentMode = new DevExpress.XtraEditors.ImageComboBoxEdit();
     this.label2 = new System.Windows.Forms.Label();
     this.txtCreditCard = new DevExpress.XtraEditors.TextEdit();
     this.txtMode = new System.Windows.Forms.TextBox();
     this.label3 = new System.Windows.Forms.Label();
     this.label4 = new System.Windows.Forms.Label();
     this.txtMode1 = new System.Windows.Forms.TextBox();
     this.txtCreditCard1 = new DevExpress.XtraEditors.TextEdit();
     this.label5 = new System.Windows.Forms.Label();
     this.cmbPaymentMode1 = new DevExpress.XtraEditors.ImageComboBoxEdit();
     this.label6 = new System.Windows.Forms.Label();
     ((System.ComponentModel.ISupportInitialize)(this.txtReceiptNo.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbPaymentMode.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCreditCard.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCreditCard1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbPaymentMode1.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // txtReceiptNo
     //
     this.txtReceiptNo.EditValue = "";
     this.txtReceiptNo.Enabled = false;
     this.txtReceiptNo.Location = new System.Drawing.Point(168, 16);
     this.txtReceiptNo.Name = "txtReceiptNo";
     //
     // txtReceiptNo.Properties
     //
     this.txtReceiptNo.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.False;
     this.txtReceiptNo.Properties.ReadOnly = true;
     this.txtReceiptNo.Size = new System.Drawing.Size(168, 20);
     this.txtReceiptNo.TabIndex = 8;
     //
     // lblDepositMoney
     //
     this.lblDepositMoney.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.lblDepositMoney.Location = new System.Drawing.Point(32, 16);
     this.lblDepositMoney.Name = "lblDepositMoney";
     this.lblDepositMoney.Size = new System.Drawing.Size(112, 23);
     this.lblDepositMoney.TabIndex = 7;
     this.lblDepositMoney.Text = "Receipt No :";
     //
     // btnSave
     //
     this.btnSave.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.btnSave.Appearance.Options.UseFont = true;
     this.btnSave.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnSave.Location = new System.Drawing.Point(168, 248);
     this.btnSave.Name = "btnSave";
     this.btnSave.Size = new System.Drawing.Size(80, 20);
     this.btnSave.TabIndex = 9;
     this.btnSave.Text = "Save";
     this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
     //
     // Cancel
     //
     this.Cancel.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.Cancel.Appearance.Options.UseFont = true;
     this.Cancel.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.Cancel.Location = new System.Drawing.Point(256, 248);
     this.Cancel.Name = "Cancel";
     this.Cancel.Size = new System.Drawing.Size(80, 20);
     this.Cancel.TabIndex = 10;
     this.Cancel.Text = "Cancel";
     this.Cancel.Click += new System.EventHandler(this.Cancel_Click);
     //
     // 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(32, 48);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(112, 23);
     this.label1.TabIndex = 11;
     this.label1.Text = "Payment Mode : ";
     //
     // cmbPaymentMode
     //
     this.cmbPaymentMode.Location = new System.Drawing.Point(168, 48);
     this.cmbPaymentMode.Name = "cmbPaymentMode";
     //
     // cmbPaymentMode.Properties
     //
     this.cmbPaymentMode.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cmbPaymentMode.Size = new System.Drawing.Size(168, 20);
     this.cmbPaymentMode.TabIndex = 12;
     this.cmbPaymentMode.EditValueChanged += new System.EventHandler(this.cmbPaymentMode_EditValueChanged);
     //
     // 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(32, 80);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(112, 23);
     this.label2.TabIndex = 13;
     this.label2.Text = "Credit Card No. :";
     //
     // txtCreditCard
     //
     this.txtCreditCard.AllowDrop = true;
     this.txtCreditCard.EditValue = "____-____-____-____";
     this.txtCreditCard.Enabled = false;
     this.txtCreditCard.Location = new System.Drawing.Point(168, 80);
     this.txtCreditCard.Name = "txtCreditCard";
     //
     // txtCreditCard.Properties
     //
     this.txtCreditCard.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.txtCreditCard.Properties.Appearance.Options.UseFont = true;
     this.txtCreditCard.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.txtCreditCard.Properties.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.txtCreditCard.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.txtCreditCard.Properties.Mask.EditMask = "\\d{4}-\\d{4}-\\d{4}-\\d{4}";
     this.txtCreditCard.Properties.Mask.IgnoreMaskBlank = false;
     this.txtCreditCard.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Regular;
     this.txtCreditCard.Properties.MaxLength = 19;
     this.txtCreditCard.Size = new System.Drawing.Size(168, 20);
     this.txtCreditCard.TabIndex = 15;
     //
     // txtMode
     //
     this.txtMode.Location = new System.Drawing.Point(168, 112);
     this.txtMode.Name = "txtMode";
     this.txtMode.Size = new System.Drawing.Size(168, 20);
     this.txtMode.TabIndex = 16;
     this.txtMode.Text = "";
     //
     // label3
     //
     this.label3.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label3.Location = new System.Drawing.Point(34, 112);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(72, 23);
     this.label3.TabIndex = 17;
     this.label3.Text = "Amount :";
     //
     // label4
     //
     this.label4.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label4.Location = new System.Drawing.Point(32, 208);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(72, 23);
     this.label4.TabIndex = 23;
     this.label4.Text = "Amount :";
     //
     // txtMode1
     //
     this.txtMode1.Location = new System.Drawing.Point(168, 208);
     this.txtMode1.Name = "txtMode1";
     this.txtMode1.Size = new System.Drawing.Size(168, 20);
     this.txtMode1.TabIndex = 22;
     this.txtMode1.Text = "";
     this.txtMode1.TextChanged += new System.EventHandler(this.txtMode1_TextChanged);
     //
     // txtCreditCard1
     //
     this.txtCreditCard1.AllowDrop = true;
     this.txtCreditCard1.EditValue = "____-____-____-____";
     this.txtCreditCard1.Enabled = false;
     this.txtCreditCard1.Location = new System.Drawing.Point(168, 176);
     this.txtCreditCard1.Name = "txtCreditCard1";
     //
     // txtCreditCard1.Properties
     //
     this.txtCreditCard1.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.txtCreditCard1.Properties.Appearance.Options.UseFont = true;
     this.txtCreditCard1.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.txtCreditCard1.Properties.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.txtCreditCard1.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.txtCreditCard1.Properties.Mask.EditMask = "\\d{4}-\\d{4}-\\d{4}-\\d{4}";
     this.txtCreditCard1.Properties.Mask.IgnoreMaskBlank = false;
     this.txtCreditCard1.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Regular;
     this.txtCreditCard1.Properties.MaxLength = 19;
     this.txtCreditCard1.Size = new System.Drawing.Size(168, 20);
     this.txtCreditCard1.TabIndex = 21;
     //
     // label5
     //
     this.label5.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label5.Location = new System.Drawing.Point(32, 176);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(112, 23);
     this.label5.TabIndex = 20;
     this.label5.Text = "Credit Card No. :";
     //
     // cmbPaymentMode1
     //
     this.cmbPaymentMode1.Location = new System.Drawing.Point(168, 144);
     this.cmbPaymentMode1.Name = "cmbPaymentMode1";
     //
     // cmbPaymentMode1.Properties
     //
     this.cmbPaymentMode1.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                             new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cmbPaymentMode1.Size = new System.Drawing.Size(168, 20);
     this.cmbPaymentMode1.TabIndex = 19;
     this.cmbPaymentMode1.EditValueChanged += new System.EventHandler(this.cmbPaymentMode1_EditValueChanged);
     this.cmbPaymentMode1.Click += new System.EventHandler(this.cmbPaymentMode1_Click);
     //
     // label6
     //
     this.label6.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label6.Location = new System.Drawing.Point(32, 144);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(112, 23);
     this.label6.TabIndex = 18;
     this.label6.Text = "Payment Mode : ";
     //
     // frmPaymentCode
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize = new System.Drawing.Size(432, 278);
     this.Controls.Add(this.label4);
     this.Controls.Add(this.txtMode1);
     this.Controls.Add(this.txtCreditCard1);
     this.Controls.Add(this.label5);
     this.Controls.Add(this.cmbPaymentMode1);
     this.Controls.Add(this.label6);
     this.Controls.Add(this.label3);
     this.Controls.Add(this.txtMode);
     this.Controls.Add(this.txtCreditCard);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.cmbPaymentMode);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.txtReceiptNo);
     this.Controls.Add(this.lblDepositMoney);
     this.Controls.Add(this.btnSave);
     this.Controls.Add(this.Cancel);
     this.Name = "frmPaymentCode";
     this.Text = "Edit Payment Code";
     this.Load += new System.EventHandler(this.frmPaymentCode_Load);
     ((System.ComponentModel.ISupportInitialize)(this.txtReceiptNo.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbPaymentMode.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCreditCard.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCreditCard1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbPaymentMode1.Properties)).EndInit();
     this.ResumeLayout(false);
 }
Beispiel #31
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.pvSpaFitness    = new DevExpress.XtraPivotGrid.PivotGridControl();
     this.pivotGridField1 = new DevExpress.XtraPivotGrid.PivotGridField();
     this.pivotGridField2 = new DevExpress.XtraPivotGrid.PivotGridField();
     this.pivotGridField3 = new DevExpress.XtraPivotGrid.PivotGridField();
     this.pivotGridField4 = new DevExpress.XtraPivotGrid.PivotGridField();
     this.pivotGridField5 = new DevExpress.XtraPivotGrid.PivotGridField();
     this.cmbCategory     = new DevExpress.XtraEditors.ImageComboBoxEdit();
     this.label1          = new System.Windows.Forms.Label();
     this.DateFrom        = new DevExpress.XtraEditors.DateEdit();
     this.DateTo          = new System.Windows.Forms.Label();
     this.label2          = new System.Windows.Forms.Label();
     this.DateRangeTo     = new DevExpress.XtraEditors.DateEdit();
     this.btnReset        = new DevExpress.XtraEditors.SimpleButton();
     this.btnSearch       = new DevExpress.XtraEditors.SimpleButton();
     this.label3          = new System.Windows.Forms.Label();
     this.txtItemDesc     = new DevExpress.XtraEditors.TextEdit();
     this.label6          = new System.Windows.Forms.Label();
     this.txtItemCode     = new DevExpress.XtraEditors.TextEdit();
     ((System.ComponentModel.ISupportInitialize)(this.pvSpaFitness)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbCategory.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DateFrom.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DateRangeTo.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtItemDesc.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtItemCode.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // pvSpaFitness
     //
     this.pvSpaFitness.Cursor = System.Windows.Forms.Cursors.Default;
     this.pvSpaFitness.Fields.AddRange(new DevExpress.XtraPivotGrid.PivotGridField[] {
         this.pivotGridField1,
         this.pivotGridField2,
         this.pivotGridField3,
         this.pivotGridField4,
         this.pivotGridField5
     });
     this.pvSpaFitness.Location = new System.Drawing.Point(8, 48);
     this.pvSpaFitness.Name     = "pvSpaFitness";
     this.pvSpaFitness.OptionsCustomization.AllowDrag = false;
     this.pvSpaFitness.OptionsView.ShowDataHeaders    = false;
     this.pvSpaFitness.OptionsView.ShowFilterHeaders  = false;
     this.pvSpaFitness.Size     = new System.Drawing.Size(760, 352);
     this.pvSpaFitness.TabIndex = 0;
     //
     // pivotGridField1
     //
     this.pivotGridField1.Area      = DevExpress.XtraPivotGrid.PivotArea.RowArea;
     this.pivotGridField1.AreaIndex = 1;
     this.pivotGridField1.Caption   = "Item Code";
     this.pivotGridField1.FieldName = "strCode";
     this.pivotGridField1.Name      = "pivotGridField1";
     //
     // pivotGridField2
     //
     this.pivotGridField2.Area      = DevExpress.XtraPivotGrid.PivotArea.RowArea;
     this.pivotGridField2.AreaIndex = 2;
     this.pivotGridField2.Caption   = "Item Desc";
     this.pivotGridField2.FieldName = "strDescription";
     this.pivotGridField2.Name      = "pivotGridField2";
     //
     // pivotGridField3
     //
     this.pivotGridField3.Area      = DevExpress.XtraPivotGrid.PivotArea.DataArea;
     this.pivotGridField3.AreaIndex = 0;
     this.pivotGridField3.Caption   = "Quantity";
     this.pivotGridField3.FieldName = "nQuantity";
     this.pivotGridField3.Name      = "pivotGridField3";
     //
     // pivotGridField4
     //
     this.pivotGridField4.Area                = DevExpress.XtraPivotGrid.PivotArea.ColumnArea;
     this.pivotGridField4.AreaIndex           = 0;
     this.pivotGridField4.Caption             = "Branch";
     this.pivotGridField4.FieldName           = "strBranchCode";
     this.pivotGridField4.Name                = "pivotGridField4";
     this.pivotGridField4.Options.AllowDrag   = DevExpress.Utils.DefaultBoolean.False;
     this.pivotGridField4.Options.AllowFilter = DevExpress.Utils.DefaultBoolean.False;
     this.pivotGridField4.Options.AllowSort   = DevExpress.Utils.DefaultBoolean.False;
     //
     // pivotGridField5
     //
     this.pivotGridField5.Area      = DevExpress.XtraPivotGrid.PivotArea.RowArea;
     this.pivotGridField5.AreaIndex = 0;
     this.pivotGridField5.Caption   = "Category";
     this.pivotGridField5.FieldName = "Category";
     this.pivotGridField5.Name      = "pivotGridField5";
     //
     // cmbCategory
     //
     this.cmbCategory.Location = new System.Drawing.Point(72, 24);
     this.cmbCategory.Name     = "cmbCategory";
     //
     // cmbCategory.Properties
     //
     this.cmbCategory.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.cmbCategory.Size     = new System.Drawing.Size(112, 20);
     this.cmbCategory.TabIndex = 1;
     //
     // label1
     //
     this.label1.Font     = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.label1.Location = new System.Drawing.Point(8, 24);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(64, 16);
     this.label1.TabIndex = 2;
     this.label1.Text     = "Category";
     //
     // DateFrom
     //
     this.DateFrom.EditValue = null;
     this.DateFrom.Location  = new System.Drawing.Point(48, 0);
     this.DateFrom.Name      = "DateFrom";
     //
     // DateFrom.Properties
     //
     this.DateFrom.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.DateFrom.Size     = new System.Drawing.Size(72, 20);
     this.DateFrom.TabIndex = 13;
     //
     // DateTo
     //
     this.DateTo.Font     = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.DateTo.Location = new System.Drawing.Point(120, 0);
     this.DateTo.Name     = "DateTo";
     this.DateTo.Size     = new System.Drawing.Size(24, 16);
     this.DateTo.TabIndex = 12;
     this.DateTo.Text     = "To";
     //
     // label2
     //
     this.label2.Font     = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.label2.Location = new System.Drawing.Point(8, 0);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(40, 16);
     this.label2.TabIndex = 11;
     this.label2.Text     = "From";
     //
     // DateRangeTo
     //
     this.DateRangeTo.EditValue = null;
     this.DateRangeTo.Location  = new System.Drawing.Point(152, 0);
     this.DateRangeTo.Name      = "DateRangeTo";
     //
     // DateRangeTo.Properties
     //
     this.DateRangeTo.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.DateRangeTo.Properties.DisplayFormat.FormatString = "dd/MM/yyyy";
     this.DateRangeTo.Properties.DisplayFormat.FormatType   = DevExpress.Utils.FormatType.DateTime;
     this.DateRangeTo.Properties.EditFormat.FormatString    = "dd/MM/yyyy";
     this.DateRangeTo.Properties.EditFormat.FormatType      = DevExpress.Utils.FormatType.DateTime;
     this.DateRangeTo.Properties.Mask.EditMask = "dd/MM/yyyy";
     this.DateRangeTo.Size     = new System.Drawing.Size(64, 20);
     this.DateRangeTo.TabIndex = 10;
     //
     // btnReset
     //
     this.btnReset.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnReset.Location    = new System.Drawing.Point(520, 24);
     this.btnReset.Name        = "btnReset";
     this.btnReset.Size        = new System.Drawing.Size(56, 20);
     this.btnReset.TabIndex    = 66;
     this.btnReset.Text        = "Reset";
     this.btnReset.Click      += new System.EventHandler(this.btnReset_Click);
     //
     // btnSearch
     //
     this.btnSearch.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnSearch.Location    = new System.Drawing.Point(456, 24);
     this.btnSearch.Name        = "btnSearch";
     this.btnSearch.Size        = new System.Drawing.Size(56, 20);
     this.btnSearch.TabIndex    = 65;
     this.btnSearch.Text        = "Search";
     this.btnSearch.Click      += new System.EventHandler(this.btnSearch_Click);
     //
     // label3
     //
     this.label3.Font     = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.label3.Location = new System.Drawing.Point(312, 24);
     this.label3.Name     = "label3";
     this.label3.Size     = new System.Drawing.Size(64, 16);
     this.label3.TabIndex = 60;
     this.label3.Text     = "Item Desc";
     //
     // txtItemDesc
     //
     this.txtItemDesc.EditValue = "";
     this.txtItemDesc.Location  = new System.Drawing.Point(376, 24);
     this.txtItemDesc.Name      = "txtItemDesc";
     this.txtItemDesc.Size      = new System.Drawing.Size(72, 20);
     this.txtItemDesc.TabIndex  = 59;
     //
     // label6
     //
     this.label6.Font     = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.label6.Location = new System.Drawing.Point(184, 24);
     this.label6.Name     = "label6";
     this.label6.Size     = new System.Drawing.Size(64, 16);
     this.label6.TabIndex = 58;
     this.label6.Text     = "Item Code";
     //
     // txtItemCode
     //
     this.txtItemCode.EditValue = "";
     this.txtItemCode.Location  = new System.Drawing.Point(248, 24);
     this.txtItemCode.Name      = "txtItemCode";
     this.txtItemCode.Size      = new System.Drawing.Size(64, 20);
     this.txtItemCode.TabIndex  = 57;
     //
     // RPSpaFitness
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(864, 501);
     this.Controls.Add(this.btnReset);
     this.Controls.Add(this.btnSearch);
     this.Controls.Add(this.label3);
     this.Controls.Add(this.txtItemDesc);
     this.Controls.Add(this.label6);
     this.Controls.Add(this.txtItemCode);
     this.Controls.Add(this.DateFrom);
     this.Controls.Add(this.DateTo);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.DateRangeTo);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.cmbCategory);
     this.Controls.Add(this.pvSpaFitness);
     this.Name        = "RPSpaFitness";
     this.Text        = "Spa & Fitness";
     this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
     this.Load       += new System.EventHandler(this.RPSpaFitness_Load);
     ((System.ComponentModel.ISupportInitialize)(this.pvSpaFitness)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbCategory.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DateFrom.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DateRangeTo.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtItemDesc.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtItemCode.Properties)).EndInit();
     this.ResumeLayout(false);
 }
Beispiel #32
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.lblBranch     = new System.Windows.Forms.Label();
     this.label4        = new System.Windows.Forms.Label();
     this.groupControl1 = new DevExpress.XtraEditors.GroupControl();
     this.txtRemarks    = new DevExpress.XtraEditors.MemoEdit();
     this.lblRemarks    = new System.Windows.Forms.Label();
     this.lbldate       = new System.Windows.Forms.Label();
     this.dtDate        = new DevExpress.XtraEditors.DateEdit();
     this.label3        = new System.Windows.Forms.Label();
     this.cbEmployee    = new DevExpress.XtraEditors.ImageComboBoxEdit();
     this.label2        = new System.Windows.Forms.Label();
     this.cbBranch      = new DevExpress.XtraEditors.ImageComboBoxEdit();
     this.label1        = new System.Windows.Forms.Label();
     this.lblStartTime  = new System.Windows.Forms.Label();
     this.dtEndTime     = new DevExpress.XtraEditors.TimeEdit();
     this.dtStartTime   = new DevExpress.XtraEditors.TimeEdit();
     this.btnSave       = new DevExpress.XtraEditors.SimpleButton();
     this.btnCancel     = new DevExpress.XtraEditors.SimpleButton();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtRemarks.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtDate.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbEmployee.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbBranch.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtEndTime.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtStartTime.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // lblBranch
     //
     this.lblBranch.Font     = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.lblBranch.Location = new System.Drawing.Point(-58, 142);
     this.lblBranch.Name     = "lblBranch";
     this.lblBranch.Size     = new System.Drawing.Size(58, 16);
     this.lblBranch.TabIndex = 186;
     this.lblBranch.Text     = "Branch";
     //
     // label4
     //
     this.label4.Font     = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label4.Location = new System.Drawing.Point(16, 8);
     this.label4.Name     = "label4";
     this.label4.Size     = new System.Drawing.Size(112, 16);
     this.label4.TabIndex = 191;
     this.label4.Text     = "New Roster";
     //
     // groupControl1
     //
     this.groupControl1.Controls.Add(this.txtRemarks);
     this.groupControl1.Controls.Add(this.lblRemarks);
     this.groupControl1.Controls.Add(this.lbldate);
     this.groupControl1.Controls.Add(this.dtDate);
     this.groupControl1.Controls.Add(this.label3);
     this.groupControl1.Controls.Add(this.cbEmployee);
     this.groupControl1.Controls.Add(this.label2);
     this.groupControl1.Controls.Add(this.cbBranch);
     this.groupControl1.Controls.Add(this.label1);
     this.groupControl1.Controls.Add(this.lblStartTime);
     this.groupControl1.Controls.Add(this.dtEndTime);
     this.groupControl1.Controls.Add(this.dtStartTime);
     this.groupControl1.Location    = new System.Drawing.Point(16, 32);
     this.groupControl1.Name        = "groupControl1";
     this.groupControl1.ShowCaption = false;
     this.groupControl1.Size        = new System.Drawing.Size(280, 256);
     this.groupControl1.TabIndex    = 192;
     this.groupControl1.Text        = "groupControl1";
     //
     // txtRemarks
     //
     this.txtRemarks.EditValue = "";
     this.txtRemarks.Location  = new System.Drawing.Point(16, 184);
     this.txtRemarks.Name      = "txtRemarks";
     //
     // txtRemarks.Properties
     //
     this.txtRemarks.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Style3D;
     this.txtRemarks.Size     = new System.Drawing.Size(232, 64);
     this.txtRemarks.TabIndex = 6;
     //
     // lblRemarks
     //
     this.lblRemarks.Font     = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.lblRemarks.Location = new System.Drawing.Point(16, 168);
     this.lblRemarks.Name     = "lblRemarks";
     this.lblRemarks.Size     = new System.Drawing.Size(80, 16);
     this.lblRemarks.TabIndex = 201;
     this.lblRemarks.Text     = "Remarks";
     //
     // lbldate
     //
     this.lbldate.Font     = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.lbldate.Location = new System.Drawing.Point(16, 80);
     this.lbldate.Name     = "lbldate";
     this.lbldate.Size     = new System.Drawing.Size(80, 16);
     this.lbldate.TabIndex = 200;
     this.lbldate.Text     = "Date";
     //
     // dtDate
     //
     this.dtDate.EditValue = null;
     this.dtDate.Location  = new System.Drawing.Point(104, 80);
     this.dtDate.Name      = "dtDate";
     //
     // dtDate.Properties
     //
     this.dtDate.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Style3D;
     this.dtDate.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.dtDate.Properties.DisplayFormat.FormatString = "dd/MM/yyyy";
     this.dtDate.Properties.DisplayFormat.FormatType   = DevExpress.Utils.FormatType.Custom;
     this.dtDate.Properties.EditFormat.FormatString    = "dd/MM/yyyy";
     this.dtDate.Properties.EditFormat.FormatType      = DevExpress.Utils.FormatType.Custom;
     this.dtDate.Properties.Mask.EditMask = "dd/MM/yyyy";
     this.dtDate.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.DateTimeAdvancingCaret;
     this.dtDate.Size     = new System.Drawing.Size(100, 22);
     this.dtDate.TabIndex = 3;
     //
     // label3
     //
     this.label3.Font     = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label3.Location = new System.Drawing.Point(16, 48);
     this.label3.Name     = "label3";
     this.label3.Size     = new System.Drawing.Size(80, 16);
     this.label3.TabIndex = 198;
     this.label3.Text     = "Employee";
     //
     // cbEmployee
     //
     this.cbEmployee.Location = new System.Drawing.Point(104, 48);
     this.cbEmployee.Name     = "cbEmployee";
     //
     // cbEmployee.Properties
     //
     this.cbEmployee.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Style3D;
     this.cbEmployee.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.cbEmployee.Size     = new System.Drawing.Size(144, 22);
     this.cbEmployee.TabIndex = 2;
     //
     // label2
     //
     this.label2.Font     = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label2.Location = new System.Drawing.Point(16, 16);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(80, 16);
     this.label2.TabIndex = 196;
     this.label2.Text     = "Branch";
     //
     // cbBranch
     //
     this.cbBranch.Location = new System.Drawing.Point(104, 16);
     this.cbBranch.Name     = "cbBranch";
     //
     // cbBranch.Properties
     //
     this.cbBranch.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Style3D;
     this.cbBranch.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.cbBranch.Size                  = new System.Drawing.Size(144, 22);
     this.cbBranch.TabIndex              = 1;
     this.cbBranch.SelectedIndexChanged += new System.EventHandler(this.cbBranch_SelectedIndexChanged);
     //
     // label1
     //
     this.label1.Font     = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label1.Location = new System.Drawing.Point(144, 112);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(80, 16);
     this.label1.TabIndex = 194;
     this.label1.Text     = "End Time";
     //
     // lblStartTime
     //
     this.lblStartTime.Font     = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.lblStartTime.Location = new System.Drawing.Point(16, 112);
     this.lblStartTime.Name     = "lblStartTime";
     this.lblStartTime.Size     = new System.Drawing.Size(80, 16);
     this.lblStartTime.TabIndex = 193;
     this.lblStartTime.Text     = "Start Time";
     //
     // dtEndTime
     //
     this.dtEndTime.EditValue = null;
     this.dtEndTime.Location  = new System.Drawing.Point(144, 136);
     this.dtEndTime.Name      = "dtEndTime";
     //
     // dtEndTime.Properties
     //
     this.dtEndTime.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Style3D;
     this.dtEndTime.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton()
     });
     this.dtEndTime.Properties.DisplayFormat.FormatString = "hh:mm tt";
     this.dtEndTime.Properties.DisplayFormat.FormatType   = DevExpress.Utils.FormatType.Custom;
     this.dtEndTime.Properties.EditFormat.FormatString    = "hh:mm tt";
     this.dtEndTime.Properties.EditFormat.FormatType      = DevExpress.Utils.FormatType.Custom;
     this.dtEndTime.Size     = new System.Drawing.Size(104, 22);
     this.dtEndTime.TabIndex = 5;
     //
     // dtStartTime
     //
     this.dtStartTime.EditValue = null;
     this.dtStartTime.Location  = new System.Drawing.Point(16, 136);
     this.dtStartTime.Name      = "dtStartTime";
     //
     // dtStartTime.Properties
     //
     this.dtStartTime.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Style3D;
     this.dtStartTime.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton()
     });
     this.dtStartTime.Properties.DisplayFormat.FormatString = "hh:mm tt";
     this.dtStartTime.Properties.DisplayFormat.FormatType   = DevExpress.Utils.FormatType.Custom;
     this.dtStartTime.Properties.EditFormat.FormatString    = "hh:mm tt";
     this.dtStartTime.Properties.EditFormat.FormatType      = DevExpress.Utils.FormatType.Custom;
     this.dtStartTime.Size     = new System.Drawing.Size(104, 22);
     this.dtStartTime.TabIndex = 4;
     //
     // btnSave
     //
     this.btnSave.Appearance.Font            = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.btnSave.Appearance.Options.UseFont = true;
     this.btnSave.Location = new System.Drawing.Point(128, 296);
     this.btnSave.LookAndFeel.UseDefaultLookAndFeel = false;
     this.btnSave.Name     = "btnSave";
     this.btnSave.TabIndex = 7;
     this.btnSave.Text     = "Save";
     this.btnSave.Click   += new System.EventHandler(this.btnSave_Click);
     //
     // btnCancel
     //
     this.btnCancel.Appearance.Font            = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.btnCancel.Appearance.Options.UseFont = true;
     this.btnCancel.Location = new System.Drawing.Point(208, 296);
     this.btnCancel.LookAndFeel.UseDefaultLookAndFeel = false;
     this.btnCancel.Name     = "btnCancel";
     this.btnCancel.TabIndex = 8;
     this.btnCancel.Text     = "Cancel";
     this.btnCancel.Click   += new System.EventHandler(this.btnCancel_Click);
     //
     // frmRosterNew
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(306, 327);
     this.Controls.Add(this.groupControl1);
     this.Controls.Add(this.label4);
     this.Controls.Add(this.lblBranch);
     this.Controls.Add(this.btnSave);
     this.Controls.Add(this.btnCancel);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "frmRosterNew";
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text            = "Add New Roster";
     this.Load           += new System.EventHandler(this.frmRosterNew_Load);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.txtRemarks.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtDate.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbEmployee.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbBranch.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtEndTime.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtStartTime.Properties)).EndInit();
     this.ResumeLayout(false);
 }
Beispiel #33
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.groupHdrIPP = new DevExpress.XtraEditors.GroupControl();
     this.grpControlIPP = new DevExpress.XtraEditors.GroupControl();
     this.ucMemberID1 = new ACMS.ucMemberID();
     this.dateEdit1 = new DevExpress.XtraEditors.DateEdit();
     this.label6 = new System.Windows.Forms.Label();
     this.luedtBranch = new DevExpress.XtraEditors.LookUpEdit();
     this.luedtBank = new DevExpress.XtraEditors.LookUpEdit();
     this.IPPNMonths = new DevExpress.XtraEditors.ImageComboBoxEdit();
     this.ToolTips = new System.Windows.Forms.Label();
     this.txtMerchantNo = new DevExpress.XtraEditors.TextEdit();
     this.label3 = new System.Windows.Forms.Label();
     this.btnIPPCancel = new DevExpress.XtraEditors.SimpleButton();
     this.label1 = new System.Windows.Forms.Label();
     this.btnSave = new DevExpress.XtraEditors.SimpleButton();
     this.txtCreditCard = new DevExpress.XtraEditors.TextEdit();
     this.label5 = new System.Windows.Forms.Label();
     this.label4 = new System.Windows.Forms.Label();
     this.label2 = new System.Windows.Forms.Label();
     this.CreditCard = new System.Windows.Forms.Label();
     ((System.ComponentModel.ISupportInitialize)(this.groupHdrIPP)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.grpControlIPP)).BeginInit();
     this.grpControlIPP.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dateEdit1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.luedtBranch.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.luedtBank.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPNMonths.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMerchantNo.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCreditCard.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // groupHdrIPP
     //
     this.groupHdrIPP.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.groupHdrIPP.Appearance.Options.UseBackColor = true;
     this.groupHdrIPP.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.groupHdrIPP.Location = new System.Drawing.Point(0, -1);
     this.groupHdrIPP.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.groupHdrIPP.LookAndFeel.UseDefaultLookAndFeel = false;
     this.groupHdrIPP.Name = "groupHdrIPP";
     this.groupHdrIPP.Size = new System.Drawing.Size(472, 8);
     this.groupHdrIPP.TabIndex = 26;
     this.groupHdrIPP.Text = "groupControl1";
     //
     // grpControlIPP
     //
     this.grpControlIPP.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.grpControlIPP.Controls.Add(this.ucMemberID1);
     this.grpControlIPP.Controls.Add(this.dateEdit1);
     this.grpControlIPP.Controls.Add(this.label6);
     this.grpControlIPP.Controls.Add(this.luedtBranch);
     this.grpControlIPP.Controls.Add(this.luedtBank);
     this.grpControlIPP.Controls.Add(this.IPPNMonths);
     this.grpControlIPP.Controls.Add(this.ToolTips);
     this.grpControlIPP.Controls.Add(this.txtMerchantNo);
     this.grpControlIPP.Controls.Add(this.label3);
     this.grpControlIPP.Controls.Add(this.btnIPPCancel);
     this.grpControlIPP.Controls.Add(this.label1);
     this.grpControlIPP.Controls.Add(this.btnSave);
     this.grpControlIPP.Controls.Add(this.txtCreditCard);
     this.grpControlIPP.Controls.Add(this.label5);
     this.grpControlIPP.Controls.Add(this.label4);
     this.grpControlIPP.Controls.Add(this.label2);
     this.grpControlIPP.Controls.Add(this.CreditCard);
     this.grpControlIPP.Location = new System.Drawing.Point(0, 0);
     this.grpControlIPP.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.grpControlIPP.LookAndFeel.UseDefaultLookAndFeel = false;
     this.grpControlIPP.Name = "grpControlIPP";
     this.grpControlIPP.ShowCaption = false;
     this.grpControlIPP.Size = new System.Drawing.Size(472, 264);
     this.grpControlIPP.TabIndex = 0;
     this.grpControlIPP.Text = "groupControl1";
     //
     // ucMemberID1
     //
     this.ucMemberID1.EditValue = "";
     this.ucMemberID1.EditValueChanged = null;
     this.ucMemberID1.Location = new System.Drawing.Point(216, 24);
     this.ucMemberID1.Name = "ucMemberID1";
     this.ucMemberID1.Size = new System.Drawing.Size(182, 20);
     this.ucMemberID1.StrBranchCode = null;
     this.ucMemberID1.TabIndex = 168;
     //
     // dateEdit1
     //
     this.dateEdit1.EditValue = null;
     this.dateEdit1.Location = new System.Drawing.Point(216, 176);
     this.dateEdit1.Name = "dateEdit1";
     //
     // dateEdit1.Properties
     //
     this.dateEdit1.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Style3D;
     this.dateEdit1.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                       new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.dateEdit1.Properties.DisplayFormat.FormatString = "dd/MM/yyyy";
     this.dateEdit1.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Custom;
     this.dateEdit1.Properties.EditFormat.FormatString = "dd/MM/yyyy";
     this.dateEdit1.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.Custom;
     this.dateEdit1.Properties.Mask.EditMask = "dd/MM/yyyy";
     this.dateEdit1.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.DateTimeAdvancingCaret;
     this.dateEdit1.Size = new System.Drawing.Size(128, 22);
     this.dateEdit1.TabIndex = 167;
     //
     // label6
     //
     this.label6.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label6.Location = new System.Drawing.Point(32, 176);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(120, 16);
     this.label6.TabIndex = 166;
     this.label6.Text = "Created Date";
     //
     // luedtBranch
     //
     this.luedtBranch.Location = new System.Drawing.Point(216, 72);
     this.luedtBranch.Name = "luedtBranch";
     //
     // luedtBranch.Properties
     //
     this.luedtBranch.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Style3D;
     this.luedtBranch.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.luedtBranch.Size = new System.Drawing.Size(168, 22);
     this.luedtBranch.TabIndex = 2;
     this.luedtBranch.EditValueChanged += new System.EventHandler(this.luedtBranch_EditValueChanged);
     //
     // luedtBank
     //
     this.luedtBank.Location = new System.Drawing.Point(216, 48);
     this.luedtBank.Name = "luedtBank";
     //
     // luedtBank.Properties
     //
     this.luedtBank.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Style3D;
     this.luedtBank.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                       new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.luedtBank.Size = new System.Drawing.Size(168, 22);
     this.luedtBank.TabIndex = 1;
     this.luedtBank.EditValueChanged += new System.EventHandler(this.luedtBank_EditValueChanged);
     //
     // IPPNMonths
     //
     this.IPPNMonths.Location = new System.Drawing.Point(216, 144);
     this.IPPNMonths.Name = "IPPNMonths";
     //
     // IPPNMonths.Properties
     //
     this.IPPNMonths.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Style3D;
     this.IPPNMonths.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                        new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.IPPNMonths.Properties.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.IPPNMonths.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.IPPNMonths.Size = new System.Drawing.Size(168, 22);
     this.IPPNMonths.TabIndex = 5;
     //
     // ToolTips
     //
     this.ToolTips.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.ToolTips.ForeColor = System.Drawing.Color.CornflowerBlue;
     this.ToolTips.Location = new System.Drawing.Point(216, 8);
     this.ToolTips.Name = "ToolTips";
     this.ToolTips.Size = new System.Drawing.Size(184, 16);
     this.ToolTips.TabIndex = 165;
     this.ToolTips.Text = "Use Member Search Tools for Input";
     this.ToolTips.Visible = false;
     //
     // txtMerchantNo
     //
     this.txtMerchantNo.AllowDrop = true;
     this.txtMerchantNo.EditValue = "";
     this.txtMerchantNo.Enabled = false;
     this.txtMerchantNo.Location = new System.Drawing.Point(216, 96);
     this.txtMerchantNo.Name = "txtMerchantNo";
     //
     // txtMerchantNo.Properties
     //
     this.txtMerchantNo.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.txtMerchantNo.Properties.Appearance.Options.UseFont = true;
     this.txtMerchantNo.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Style3D;
     this.txtMerchantNo.Properties.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.txtMerchantNo.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.txtMerchantNo.Properties.MaxLength = 19;
     this.txtMerchantNo.Properties.ReadOnly = true;
     this.txtMerchantNo.Size = new System.Drawing.Size(168, 22);
     this.txtMerchantNo.TabIndex = 3;
     //
     // label3
     //
     this.label3.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label3.Location = new System.Drawing.Point(32, 96);
     this.label3.Name = "label3";
     this.label3.TabIndex = 163;
     this.label3.Text = "Merchant No";
     //
     // btnIPPCancel
     //
     this.btnIPPCancel.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnIPPCancel.Location = new System.Drawing.Point(384, 208);
     this.btnIPPCancel.Name = "btnIPPCancel";
     this.btnIPPCancel.TabIndex = 7;
     this.btnIPPCancel.Text = "Cancel";
     this.btnIPPCancel.Click += new System.EventHandler(this.btnIPPCancel_Click);
     //
     // 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(32, 72);
     this.label1.Name = "label1";
     this.label1.TabIndex = 34;
     this.label1.Text = "Branch Code";
     //
     // btnSave
     //
     this.btnSave.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnSave.Location = new System.Drawing.Point(296, 208);
     this.btnSave.Name = "btnSave";
     this.btnSave.Size = new System.Drawing.Size(80, 24);
     this.btnSave.TabIndex = 6;
     this.btnSave.Text = "Save";
     this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
     //
     // txtCreditCard
     //
     this.txtCreditCard.AllowDrop = true;
     this.txtCreditCard.EditValue = "____-____-____-____";
     this.txtCreditCard.Location = new System.Drawing.Point(216, 120);
     this.txtCreditCard.Name = "txtCreditCard";
     //
     // txtCreditCard.Properties
     //
     this.txtCreditCard.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.txtCreditCard.Properties.Appearance.Options.UseFont = true;
     this.txtCreditCard.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Style3D;
     this.txtCreditCard.Properties.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.txtCreditCard.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.txtCreditCard.Properties.Mask.EditMask = "\\d{4}-\\d{4}-\\d{4}-\\d{4}";
     this.txtCreditCard.Properties.Mask.IgnoreMaskBlank = false;
     this.txtCreditCard.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Regular;
     this.txtCreditCard.Properties.MaxLength = 19;
     this.txtCreditCard.Size = new System.Drawing.Size(168, 22);
     this.txtCreditCard.TabIndex = 4;
     //
     // label5
     //
     this.label5.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label5.Location = new System.Drawing.Point(32, 24);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(104, 23);
     this.label5.TabIndex = 30;
     this.label5.Text = "Member ID";
     //
     // label4
     //
     this.label4.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label4.Location = new System.Drawing.Point(32, 48);
     this.label4.Name = "label4";
     this.label4.TabIndex = 28;
     this.label4.Text = "Bank Code";
     //
     // label2
     //
     this.label2.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label2.Location = new System.Drawing.Point(32, 144);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(120, 16);
     this.label2.TabIndex = 27;
     this.label2.Text = "Number of Months";
     //
     // CreditCard
     //
     this.CreditCard.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.CreditCard.Location = new System.Drawing.Point(32, 120);
     this.CreditCard.Name = "CreditCard";
     this.CreditCard.TabIndex = 26;
     this.CreditCard.Text = "Credit Card No";
     //
     // frmIPP_Add
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize = new System.Drawing.Size(472, 238);
     this.Controls.Add(this.grpControlIPP);
     this.Controls.Add(this.groupHdrIPP);
     this.Name = "frmIPP_Add";
     this.Text = "IPP Details";
     this.Load += new System.EventHandler(this.frmIPP_Add_Load);
     ((System.ComponentModel.ISupportInitialize)(this.groupHdrIPP)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.grpControlIPP)).EndInit();
     this.grpControlIPP.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.dateEdit1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.luedtBranch.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.luedtBank.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPNMonths.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMerchantNo.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCreditCard.Properties)).EndInit();
     this.ResumeLayout(false);
 }
Beispiel #34
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.label1 = new System.Windows.Forms.Label();
     this.label2 = new System.Windows.Forms.Label();
     this.cmbMonth = new System.Windows.Forms.ComboBox();
     this.cmbYear = new System.Windows.Forms.ComboBox();
     this.cmbInstructor = new DevExpress.XtraEditors.ImageComboBoxEdit();
     this.label3 = new System.Windows.Forms.Label();
     this.cmbBranch = new DevExpress.XtraEditors.ImageComboBoxEdit();
     this.label4 = new System.Windows.Forms.Label();
     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.gridColumn7 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn8 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn9 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridView2 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.simpleButton1 = new DevExpress.XtraEditors.SimpleButton();
     ((System.ComponentModel.ISupportInitialize)(this.cmbInstructor.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbBranch.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView2)).BeginInit();
     this.SuspendLayout();
     //
     // 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.Location = new System.Drawing.Point(8, 16);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(100, 23);
     this.label1.TabIndex = 1;
     this.label1.Text = "Year";
     this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // 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.Location = new System.Drawing.Point(199, 16);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(52, 23);
     this.label2.TabIndex = 2;
     this.label2.Text = "Month";
     this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // cmbMonth
     //
     this.cmbMonth.Items.AddRange(new object[] {
     "1",
     "2",
     "3",
     "4",
     "5",
     "6",
     "7",
     "8",
     "9",
     "10",
     "11",
     "12"});
     this.cmbMonth.Location = new System.Drawing.Point(257, 18);
     this.cmbMonth.Name = "cmbMonth";
     this.cmbMonth.Size = new System.Drawing.Size(88, 21);
     this.cmbMonth.TabIndex = 3;
     this.cmbMonth.Text = "1";
     this.cmbMonth.SelectedValueChanged += new System.EventHandler(this.cmbMonth_SelectedValueChanged);
     //
     // cmbYear
     //
     this.cmbYear.Items.AddRange(new object[] {
     //"2000",
     //"2001",
     //"2002",
     //"2003",
     //"2004",
     //"2005",
     //"2006",
     //"2007",
     //"2008",
     //"2009",
     "2010",
     "2011",
     "2012",
     "2013"});
     this.cmbYear.Location = new System.Drawing.Point(56, 16);
     this.cmbYear.Name = "cmbYear";
     this.cmbYear.Size = new System.Drawing.Size(121, 21);
     this.cmbYear.TabIndex = 4;
     this.cmbYear.Text = "2012";
     this.cmbYear.SelectedValueChanged += new System.EventHandler(this.cmbYear_SelectedValueChanged);
     //
     // cmbInstructor
     //
     this.cmbInstructor.Location = new System.Drawing.Point(458, 19);
     this.cmbInstructor.Name = "cmbInstructor";
     this.cmbInstructor.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cmbInstructor.Size = new System.Drawing.Size(160, 20);
     this.cmbInstructor.TabIndex = 54;
     this.cmbInstructor.SelectedValueChanged += new System.EventHandler(this.cmbInstructor_SelectedValueChanged);
     //
     // label3
     //
     this.label3.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.5F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label3.Location = new System.Drawing.Point(364, 18);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(88, 18);
     this.label3.TabIndex = 53;
     this.label3.Text = "Instructor";
     this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // cmbBranch
     //
     this.cmbBranch.Location = new System.Drawing.Point(688, 16);
     this.cmbBranch.Name = "cmbBranch";
     this.cmbBranch.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cmbBranch.Size = new System.Drawing.Size(165, 20);
     this.cmbBranch.TabIndex = 55;
     //
     // label4
     //
     this.label4.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.5F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label4.Location = new System.Drawing.Point(624, 5);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(56, 40);
     this.label4.TabIndex = 56;
     this.label4.Text = "Branch";
     this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // gridControl1
     //
     this.gridControl1.EmbeddedNavigator.Name = "";
     this.gridControl1.FormsUseDefaultLookAndFeel = false;
     this.gridControl1.Location = new System.Drawing.Point(11, 45);
     this.gridControl1.MainView = this.gridView1;
     this.gridControl1.Name = "gridControl1";
     this.gridControl1.Size = new System.Drawing.Size(1000, 512);
     this.gridControl1.TabIndex = 57;
     this.gridControl1.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridView1,
     this.gridView2});
     //
     // 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.gridColumn8,
     this.gridColumn9});
     this.gridView1.GridControl = this.gridControl1;
     this.gridView1.Name = "gridView1";
     this.gridView1.OptionsBehavior.Editable = false;
     //
     // gridColumn1
     //
     this.gridColumn1.Caption = "No.";
     this.gridColumn1.FieldName = "No";
     this.gridColumn1.Name = "gridColumn1";
     this.gridColumn1.Visible = true;
     this.gridColumn1.VisibleIndex = 0;
     //
     // gridColumn2
     //
     this.gridColumn2.Caption = "Date";
     this.gridColumn2.FieldName = "dtdate";
     this.gridColumn2.Name = "gridColumn2";
     this.gridColumn2.Visible = true;
     this.gridColumn2.VisibleIndex = 1;
     //
     // gridColumn3
     //
     this.gridColumn3.Caption = "Branch";
     this.gridColumn3.FieldName = "strBranchCode";
     this.gridColumn3.Name = "gridColumn3";
     this.gridColumn3.Visible = true;
     this.gridColumn3.VisibleIndex = 2;
     //
     // gridColumn4
     //
     this.gridColumn4.Caption = "Start Time";
     this.gridColumn4.DisplayFormat.FormatString = "T";
     this.gridColumn4.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.gridColumn4.FieldName = "dtStartTime";
     this.gridColumn4.Name = "gridColumn4";
     this.gridColumn4.Visible = true;
     this.gridColumn4.VisibleIndex = 3;
     //
     // gridColumn5
     //
     this.gridColumn5.Caption = "End Time";
     this.gridColumn5.DisplayFormat.FormatString = "t";
     this.gridColumn5.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.gridColumn5.FieldName = "dtEndTime";
     this.gridColumn5.Name = "gridColumn5";
     this.gridColumn5.Visible = true;
     this.gridColumn5.VisibleIndex = 4;
     //
     // gridColumn6
     //
     this.gridColumn6.Caption = "Class Code";
     this.gridColumn6.FieldName = "strClassCode";
     this.gridColumn6.Name = "gridColumn6";
     this.gridColumn6.Visible = true;
     this.gridColumn6.VisibleIndex = 5;
     //
     // gridColumn7
     //
     this.gridColumn7.Caption = "Attendees";
     this.gridColumn7.FieldName = "Attendance";
     this.gridColumn7.Name = "gridColumn7";
     this.gridColumn7.Visible = true;
     this.gridColumn7.VisibleIndex = 6;
     //
     // gridColumn8
     //
     this.gridColumn8.Caption = "Login Time";
     this.gridColumn8.DisplayFormat.FormatString = "t";
     this.gridColumn8.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.gridColumn8.FieldName = "dtInstructorLogin";
     this.gridColumn8.Name = "gridColumn8";
     this.gridColumn8.Visible = true;
     this.gridColumn8.VisibleIndex = 7;
     //
     // gridColumn9
     //
     this.gridColumn9.Caption = "Fees";
     this.gridColumn9.FieldName = "mInstructorFees";
     this.gridColumn9.Name = "gridColumn9";
     this.gridColumn9.Visible = true;
     this.gridColumn9.VisibleIndex = 8;
     //
     // gridView2
     //
     this.gridView2.GridControl = this.gridControl1;
     this.gridView2.Name = "gridView2";
     //
     // simpleButton1
     //
     this.simpleButton1.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.simpleButton1.Appearance.Options.UseFont = true;
     this.simpleButton1.Location = new System.Drawing.Point(881, 16);
     this.simpleButton1.Name = "simpleButton1";
     this.simpleButton1.Size = new System.Drawing.Size(75, 23);
     this.simpleButton1.TabIndex = 58;
     this.simpleButton1.Text = "Print";
     this.simpleButton1.Click += new System.EventHandler(this.simpleButton1_Click);
     //
     // RPInsturctorSalary
     //
     this.ClientSize = new System.Drawing.Size(968, 558);
     this.Controls.Add(this.simpleButton1);
     this.Controls.Add(this.gridControl1);
     this.Controls.Add(this.cmbBranch);
     this.Controls.Add(this.label4);
     this.Controls.Add(this.cmbInstructor);
     this.Controls.Add(this.label3);
     this.Controls.Add(this.cmbYear);
     this.Controls.Add(this.cmbMonth);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.label1);
     this.Name = "RPInsturctorSalary";
     this.Text = "Instructor Salary Report";
     this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
     this.Load += new System.EventHandler(this.RPInsturctorSalary_Load);
     ((System.ComponentModel.ISupportInitialize)(this.cmbInstructor.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbBranch.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView2)).EndInit();
     this.ResumeLayout(false);
 }
Beispiel #35
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.groupRoster = new DevExpress.XtraEditors.GroupControl();
     this.label3 = new System.Windows.Forms.Label();
     this.cbYear = new DevExpress.XtraEditors.ImageComboBoxEdit();
     this.comboBoxRosterCC = new DevExpress.XtraEditors.ImageComboBoxEdit();
     this.groupControl1 = new DevExpress.XtraEditors.GroupControl();
     this.groupControl35 = new DevExpress.XtraEditors.GroupControl();
     this.label71 = new System.Windows.Forms.Label();
     this.label72 = new System.Windows.Forms.Label();
     this.label73 = new System.Windows.Forms.Label();
     this.label74 = new System.Windows.Forms.Label();
     this.label75 = new System.Windows.Forms.Label();
     this.label76 = new System.Windows.Forms.Label();
     this.label77 = new System.Windows.Forms.Label();
     this.label78 = new System.Windows.Forms.Label();
     this.btnNextWeek = new DevExpress.XtraEditors.SimpleButton();
     this.btnPastWeek = new DevExpress.XtraEditors.SimpleButton();
     this.btnPrint = new DevExpress.XtraEditors.SimpleButton();
     this.label2 = new System.Windows.Forms.Label();
     this.comboBoxRoster = new DevExpress.XtraEditors.ImageComboBoxEdit();
     this.label1 = new System.Windows.Forms.Label();
     ((System.ComponentModel.ISupportInitialize)(this.groupRoster)).BeginInit();
     this.groupRoster.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cbYear.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.comboBoxRosterCC.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl35)).BeginInit();
     this.groupControl35.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.comboBoxRoster.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // groupRoster
     //
     this.groupRoster.Appearance.BackColor = System.Drawing.SystemColors.Control;
     this.groupRoster.Appearance.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.groupRoster.Appearance.Options.UseBackColor = true;
     this.groupRoster.Controls.Add(this.label3);
     this.groupRoster.Controls.Add(this.cbYear);
     this.groupRoster.Controls.Add(this.comboBoxRosterCC);
     this.groupRoster.Controls.Add(this.groupControl1);
     this.groupRoster.Controls.Add(this.btnPrint);
     this.groupRoster.Controls.Add(this.label2);
     this.groupRoster.Controls.Add(this.comboBoxRoster);
     this.groupRoster.Controls.Add(this.label1);
     this.groupRoster.Location = new System.Drawing.Point(8, 0);
     this.groupRoster.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.groupRoster.LookAndFeel.UseDefaultLookAndFeel = false;
     this.groupRoster.Name = "groupRoster";
     this.groupRoster.Size = new System.Drawing.Size(984, 570);
     this.groupRoster.TabIndex = 28;
     this.groupRoster.Text = "Roster";
     //
     // label3
     //
     this.label3.BackColor = System.Drawing.Color.Transparent;
     this.label3.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label3.ForeColor = System.Drawing.Color.Black;
     this.label3.Location = new System.Drawing.Point(800, 27);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(38, 16);
     this.label3.TabIndex = 26;
     this.label3.Text = "Year";
     //
     // cbYear
     //
     this.cbYear.EditValue = 2013;//jackie
     this.cbYear.ImeMode = System.Windows.Forms.ImeMode.NoControl;
     this.cbYear.Location = new System.Drawing.Point(848, 24);
     this.cbYear.Name = "cbYear";
     this.cbYear.Properties.Appearance.BackColor = System.Drawing.SystemColors.Window;
     this.cbYear.Properties.Appearance.Options.UseBackColor = true;
     this.cbYear.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Style3D;
     this.cbYear.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cbYear.Properties.Items.AddRange(new DevExpress.XtraEditors.Controls.ImageComboBoxItem[] {
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("2010", 2010, -1),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("2011", 2011, -1),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("2012", 2012, -1),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("2013", 2013, -1)});
     this.cbYear.Properties.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.cbYear.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.cbYear.Size = new System.Drawing.Size(128, 22);
     this.cbYear.TabIndex = 25;
     //
     // comboBoxRosterCC
     //
     this.comboBoxRosterCC.EditValue = 0;
     this.comboBoxRosterCC.Location = new System.Drawing.Point(304, 32);
     this.comboBoxRosterCC.Name = "comboBoxRosterCC";
     this.comboBoxRosterCC.Properties.Appearance.BackColor = System.Drawing.SystemColors.Window;
     this.comboBoxRosterCC.Properties.Appearance.Options.UseBackColor = true;
     this.comboBoxRosterCC.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.comboBoxRosterCC.Properties.Items.AddRange(new DevExpress.XtraEditors.Controls.ImageComboBoxItem[] {
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("-- Select All --", 0, -1)});
     this.comboBoxRosterCC.Properties.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.comboBoxRosterCC.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.comboBoxRosterCC.Size = new System.Drawing.Size(128, 20);
     this.comboBoxRosterCC.TabIndex = 20;
     this.comboBoxRosterCC.SelectedValueChanged += new System.EventHandler(this.comboBoxRosterCC_SelectedValueChanged);
     //
     // groupControl1
     //
     this.groupControl1.Controls.Add(this.groupControl35);
     this.groupControl1.Controls.Add(this.btnNextWeek);
     this.groupControl1.Controls.Add(this.btnPastWeek);
     this.groupControl1.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.groupControl1.Location = new System.Drawing.Point(2, 56);
     this.groupControl1.LookAndFeel.UseDefaultLookAndFeel = false;
     this.groupControl1.Name = "groupControl1";
     this.groupControl1.Size = new System.Drawing.Size(980, 512);
     this.groupControl1.TabIndex = 12;
     //
     // groupControl35
     //
     this.groupControl35.Appearance.BackColor = System.Drawing.SystemColors.Control;
     this.groupControl35.Appearance.ForeColor = System.Drawing.Color.Black;
     this.groupControl35.Appearance.Options.UseBackColor = true;
     this.groupControl35.Appearance.Options.UseForeColor = true;
     this.groupControl35.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.groupControl35.AppearanceCaption.Options.UseFont = true;
     this.groupControl35.Controls.Add(this.label71);
     this.groupControl35.Controls.Add(this.label72);
     this.groupControl35.Controls.Add(this.label73);
     this.groupControl35.Controls.Add(this.label74);
     this.groupControl35.Controls.Add(this.label75);
     this.groupControl35.Controls.Add(this.label76);
     this.groupControl35.Controls.Add(this.label77);
     this.groupControl35.Controls.Add(this.label78);
     this.groupControl35.Location = new System.Drawing.Point(824, 24);
     this.groupControl35.LookAndFeel.UseDefaultLookAndFeel = false;
     this.groupControl35.Name = "groupControl35";
     this.groupControl35.Size = new System.Drawing.Size(144, 168);
     this.groupControl35.TabIndex = 32;
     this.groupControl35.Text = "Legend";
     //
     // label71
     //
     this.label71.Location = new System.Drawing.Point(42, 120);
     this.label71.Name = "label71";
     this.label71.Size = new System.Drawing.Size(86, 16);
     this.label71.TabIndex = 7;
     this.label71.Text = "Time off";
     //
     // label72
     //
     this.label72.BackColor = System.Drawing.Color.Green;
     this.label72.Location = new System.Drawing.Point(10, 120);
     this.label72.Name = "label72";
     this.label72.Size = new System.Drawing.Size(26, 23);
     this.label72.TabIndex = 6;
     //
     // label73
     //
     this.label73.Location = new System.Drawing.Point(42, 93);
     this.label73.Name = "label73";
     this.label73.Size = new System.Drawing.Size(86, 16);
     this.label73.TabIndex = 5;
     this.label73.Text = "Full day leave";
     //
     // label74
     //
     this.label74.BackColor = System.Drawing.Color.LightBlue;
     this.label74.Location = new System.Drawing.Point(10, 89);
     this.label74.Name = "label74";
     this.label74.Size = new System.Drawing.Size(26, 23);
     this.label74.TabIndex = 4;
     //
     // label75
     //
     this.label75.Location = new System.Drawing.Point(42, 64);
     this.label75.Name = "label75";
     this.label75.Size = new System.Drawing.Size(86, 16);
     this.label75.TabIndex = 3;
     this.label75.Text = "Half day leave";
     //
     // label76
     //
     this.label76.BackColor = System.Drawing.Color.Yellow;
     this.label76.Location = new System.Drawing.Point(10, 56);
     this.label76.Name = "label76";
     this.label76.Size = new System.Drawing.Size(26, 23);
     this.label76.TabIndex = 2;
     //
     // label77
     //
     this.label77.Location = new System.Drawing.Point(40, 24);
     this.label77.Name = "label77";
     this.label77.Size = new System.Drawing.Size(94, 28);
     this.label77.TabIndex = 1;
     this.label77.Text = "Applied leave in pending status";
     //
     // label78
     //
     this.label78.BackColor = System.Drawing.Color.Red;
     this.label78.Location = new System.Drawing.Point(10, 22);
     this.label78.Name = "label78";
     this.label78.Size = new System.Drawing.Size(26, 23);
     this.label78.TabIndex = 0;
     //
     // btnNextWeek
     //
     this.btnNextWeek.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.btnNextWeek.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.btnNextWeek.Appearance.Options.UseBackColor = true;
     this.btnNextWeek.Appearance.Options.UseFont = true;
     this.btnNextWeek.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnNextWeek.Location = new System.Drawing.Point(712, 24);
     this.btnNextWeek.Name = "btnNextWeek";
     this.btnNextWeek.Size = new System.Drawing.Size(80, 20);
     this.btnNextWeek.TabIndex = 20;
     this.btnNextWeek.Text = "Next >>";
     this.btnNextWeek.Click += new System.EventHandler(this.btnNextWeek_Click);
     //
     // btnPastWeek
     //
     this.btnPastWeek.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.btnPastWeek.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.btnPastWeek.Appearance.Options.UseBackColor = true;
     this.btnPastWeek.Appearance.Options.UseFont = true;
     this.btnPastWeek.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnPastWeek.Location = new System.Drawing.Point(8, 24);
     this.btnPastWeek.Name = "btnPastWeek";
     this.btnPastWeek.Size = new System.Drawing.Size(80, 20);
     this.btnPastWeek.TabIndex = 19;
     this.btnPastWeek.Text = "<< Previous";
     this.btnPastWeek.Click += new System.EventHandler(this.btnPastWeek_Click);
     //
     // btnPrint
     //
     this.btnPrint.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.btnPrint.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.btnPrint.Appearance.Options.UseBackColor = true;
     this.btnPrint.Appearance.Options.UseFont = true;
     this.btnPrint.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnPrint.Location = new System.Drawing.Point(488, 32);
     this.btnPrint.Name = "btnPrint";
     this.btnPrint.Size = new System.Drawing.Size(80, 20);
     this.btnPrint.TabIndex = 11;
     this.btnPrint.Text = "Print";
     this.btnPrint.Click += new System.EventHandler(this.btnPrint_Click);
     //
     // label2
     //
     this.label2.BackColor = System.Drawing.Color.Transparent;
     this.label2.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label2.ForeColor = System.Drawing.Color.Black;
     this.label2.Location = new System.Drawing.Point(224, 32);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(88, 16);
     this.label2.TabIndex = 22;
     this.label2.Text = "Cost Center";
     //
     // comboBoxRoster
     //
     this.comboBoxRoster.EditValue = "imageComboBoxEdit3";
     this.comboBoxRoster.Location = new System.Drawing.Point(80, 32);
     this.comboBoxRoster.Name = "comboBoxRoster";
     this.comboBoxRoster.Properties.Appearance.BackColor = System.Drawing.SystemColors.Window;
     this.comboBoxRoster.Properties.Appearance.Options.UseBackColor = true;
     this.comboBoxRoster.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.comboBoxRoster.Properties.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.comboBoxRoster.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.comboBoxRoster.Size = new System.Drawing.Size(128, 20);
     this.comboBoxRoster.TabIndex = 19;
     this.comboBoxRoster.SelectedIndexChanged += new System.EventHandler(this.comboBoxRoster_SelectedValueChanged);
     //
     // label1
     //
     this.label1.BackColor = System.Drawing.Color.Transparent;
     this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label1.ForeColor = System.Drawing.Color.Black;
     this.label1.Location = new System.Drawing.Point(24, 32);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(56, 16);
     this.label1.TabIndex = 21;
     this.label1.Text = "Branch";
     //
     // frmRosterMain
     //
     this.BackColor = System.Drawing.Color.White;
     this.ClientSize = new System.Drawing.Size(1000, 570);
     this.Controls.Add(this.groupRoster);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
     this.Name = "frmRosterMain";
     this.Text = "frmRosterMain";
     this.Load += new System.EventHandler(this.frmRosterMain_Load);
     ((System.ComponentModel.ISupportInitialize)(this.groupRoster)).EndInit();
     this.groupRoster.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.cbYear.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.comboBoxRosterCC.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl35)).EndInit();
     this.groupControl35.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.comboBoxRoster.Properties)).EndInit();
     this.ResumeLayout(false);
 }
Beispiel #36
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.GridMemberCard               = new DevExpress.XtraGrid.GridControl();
     this.gridViewMemberCard           = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.GridColumn225                = new DevExpress.XtraGrid.Columns.GridColumn();
     this.GridColumn234                = new DevExpress.XtraGrid.Columns.GridColumn();
     this.GridColumn235                = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn25                 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn1                  = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemImageComboBox1 = new DevExpress.XtraEditors.Repository.RepositoryItemImageComboBox();
     this.repositoryItemImageComboBox2 = new DevExpress.XtraEditors.Repository.RepositoryItemImageComboBox();
     this.mcard_lblNStatusID           = new System.Windows.Forms.Label();
     this.cmbMemberCard                = new DevExpress.XtraEditors.ImageComboBoxEdit();
     this.btnMemberCard_Reprint        = new DevExpress.XtraEditors.SimpleButton();
     this.btnMemberCard_Print          = new DevExpress.XtraEditors.SimpleButton();
     this.openFileDialog1              = new System.Windows.Forms.OpenFileDialog();
     this.groupControl1                = new DevExpress.XtraEditors.GroupControl();
     this.grpMemberCardBelow           = new DevExpress.XtraEditors.GroupControl();
     this.gcTransferMember             = new DevExpress.XtraGrid.GridControl();
     this.gvTransferMember             = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.txtMemberName                = new DevExpress.XtraEditors.TextEdit();
     this.txtMemberID                  = new DevExpress.XtraEditors.TextEdit();
     this.label2        = new System.Windows.Forms.Label();
     this.label1        = new System.Windows.Forms.Label();
     this.btnCancelCard = new DevExpress.XtraEditors.SimpleButton();
     ((System.ComponentModel.ISupportInitialize)(this.GridMemberCard)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMemberCard)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemImageComboBox1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemImageComboBox2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbMemberCard.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grpMemberCardBelow)).BeginInit();
     this.grpMemberCardBelow.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gcTransferMember)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvTransferMember)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMemberName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMemberID.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // GridMemberCard
     //
     //
     // GridMemberCard.EmbeddedNavigator
     //
     this.GridMemberCard.EmbeddedNavigator.Name = "";
     this.GridMemberCard.Location          = new System.Drawing.Point(16, 64);
     this.GridMemberCard.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.GridMemberCard.LookAndFeel.UseDefaultLookAndFeel = false;
     this.GridMemberCard.LookAndFeel.UseWindowsXPTheme     = false;
     this.GridMemberCard.MainView = this.gridViewMemberCard;
     this.GridMemberCard.Name     = "GridMemberCard";
     this.GridMemberCard.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
         this.repositoryItemImageComboBox1,
         this.repositoryItemImageComboBox2
     });
     this.GridMemberCard.Size     = new System.Drawing.Size(936, 208);
     this.GridMemberCard.TabIndex = 8;
     this.GridMemberCard.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
         this.gridViewMemberCard
     });
     //
     // gridViewMemberCard
     //
     this.gridViewMemberCard.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
         this.GridColumn225,
         this.GridColumn234,
         this.GridColumn235,
         this.gridColumn25,
         this.gridColumn1
     });
     this.gridViewMemberCard.GridControl = this.GridMemberCard;
     this.gridViewMemberCard.Name        = "gridViewMemberCard";
     this.gridViewMemberCard.OptionsCustomization.AllowColumnMoving = false;
     this.gridViewMemberCard.OptionsCustomization.AllowFilter       = false;
     this.gridViewMemberCard.OptionsSelection.MultiSelect           = true;
     this.gridViewMemberCard.OptionsView.ShowGroupPanel             = false;
     this.gridViewMemberCard.FocusedRowChanged += new DevExpress.XtraGrid.Views.Base.FocusedRowChangedEventHandler(this.gridViewMemberCard_FocusedRowChanged);
     this.gridViewMemberCard.LostFocus         += new System.EventHandler(this.gridViewMemberCard_LostFocus);
     //
     // GridColumn225
     //
     this.GridColumn225.Caption   = "Membership ID";
     this.GridColumn225.FieldName = "strMembershipID";
     this.GridColumn225.Name      = "GridColumn225";
     this.GridColumn225.OptionsColumn.AllowEdit = false;
     this.GridColumn225.Visible      = true;
     this.GridColumn225.VisibleIndex = 0;
     this.GridColumn225.Width        = 117;
     //
     // GridColumn234
     //
     this.GridColumn234.Caption   = "Member Name";
     this.GridColumn234.FieldName = "strMemberName";
     this.GridColumn234.Name      = "GridColumn234";
     this.GridColumn234.OptionsColumn.AllowEdit = false;
     this.GridColumn234.Visible      = true;
     this.GridColumn234.VisibleIndex = 1;
     this.GridColumn234.Width        = 161;
     //
     // GridColumn235
     //
     this.GridColumn235.Caption   = "Source Branch";
     this.GridColumn235.FieldName = "BranchFrom";
     this.GridColumn235.Name      = "GridColumn235";
     this.GridColumn235.OptionsColumn.AllowEdit = false;
     this.GridColumn235.Width = 190;
     //
     // gridColumn25
     //
     this.gridColumn25.Caption   = "Collection Branch";
     this.gridColumn25.FieldName = "strBranchCode";
     this.gridColumn25.Name      = "gridColumn25";
     this.gridColumn25.OptionsColumn.AllowEdit = false;
     this.gridColumn25.Visible      = true;
     this.gridColumn25.VisibleIndex = 2;
     this.gridColumn25.Width        = 162;
     //
     // gridColumn1
     //
     this.gridColumn1.Caption      = "Status";
     this.gridColumn1.ColumnEdit   = this.repositoryItemImageComboBox1;
     this.gridColumn1.FieldName    = "nStatusID";
     this.gridColumn1.Name         = "gridColumn1";
     this.gridColumn1.Visible      = true;
     this.gridColumn1.VisibleIndex = 3;
     this.gridColumn1.Width        = 189;
     //
     // repositoryItemImageComboBox1
     //
     this.repositoryItemImageComboBox1.AutoHeight = false;
     this.repositoryItemImageComboBox1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.repositoryItemImageComboBox1.Items.AddRange(new object[] {
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Request Print", 0, -1),
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Print in Progress", 1, -1),
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("In Transit", 3, -1),
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Card Received", 4, -1),
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Card Issued", 5, -1),
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Cancelled", 6, -1),
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Transfer Request", 7, -1)
     });
     this.repositoryItemImageComboBox1.Name = "repositoryItemImageComboBox1";
     //
     // repositoryItemImageComboBox2
     //
     this.repositoryItemImageComboBox2.AutoHeight = false;
     this.repositoryItemImageComboBox2.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.repositoryItemImageComboBox2.Name = "repositoryItemImageComboBox2";
     //
     // mcard_lblNStatusID
     //
     this.mcard_lblNStatusID.BackColor = System.Drawing.Color.Transparent;
     this.mcard_lblNStatusID.Font      = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.mcard_lblNStatusID.Location  = new System.Drawing.Point(16, 40);
     this.mcard_lblNStatusID.Name      = "mcard_lblNStatusID";
     this.mcard_lblNStatusID.Size      = new System.Drawing.Size(56, 16);
     this.mcard_lblNStatusID.TabIndex  = 122;
     this.mcard_lblNStatusID.Text      = "Status";
     //
     // cmbMemberCard
     //
     this.cmbMemberCard.Location = new System.Drawing.Point(72, 32);
     this.cmbMemberCard.Name     = "cmbMemberCard";
     //
     // cmbMemberCard.Properties
     //
     this.cmbMemberCard.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.cmbMemberCard.Properties.Items.AddRange(new object[] {
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Show All", null, -1),
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Request Print", 0, -1),
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Print in Progress", 1, -1),
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("In Transit", 3, -1),
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Card Received", 4, -1),
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Card Issued", 5, -1),
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Cancelled", 6, -1)
     });
     this.cmbMemberCard.Properties.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.cmbMemberCard.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.cmbMemberCard.Size                  = new System.Drawing.Size(160, 20);
     this.cmbMemberCard.TabIndex              = 120;
     this.cmbMemberCard.SelectedIndexChanged += new System.EventHandler(this.cmbMemberCard_SelectedIndexChanged);
     //
     // btnMemberCard_Reprint
     //
     this.btnMemberCard_Reprint.Appearance.BackColor              = System.Drawing.Color.LightGray;
     this.btnMemberCard_Reprint.Appearance.BorderColor            = System.Drawing.Color.Black;
     this.btnMemberCard_Reprint.Appearance.Font                   = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.btnMemberCard_Reprint.Appearance.ForeColor              = System.Drawing.Color.Black;
     this.btnMemberCard_Reprint.Appearance.Options.UseBackColor   = true;
     this.btnMemberCard_Reprint.Appearance.Options.UseBorderColor = true;
     this.btnMemberCard_Reprint.Appearance.Options.UseFont        = true;
     this.btnMemberCard_Reprint.Appearance.Options.UseForeColor   = true;
     this.btnMemberCard_Reprint.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnMemberCard_Reprint.Enabled     = false;
     this.btnMemberCard_Reprint.Location    = new System.Drawing.Point(384, 32);
     this.btnMemberCard_Reprint.Name        = "btnMemberCard_Reprint";
     this.btnMemberCard_Reprint.Size        = new System.Drawing.Size(140, 20);
     this.btnMemberCard_Reprint.TabIndex    = 119;
     this.btnMemberCard_Reprint.Text        = "Reprint Member Card";
     this.btnMemberCard_Reprint.Click      += new System.EventHandler(this.btnMemberCard_Reprint_Click);
     //
     // btnMemberCard_Print
     //
     this.btnMemberCard_Print.Appearance.BackColor              = System.Drawing.Color.LightGray;
     this.btnMemberCard_Print.Appearance.BorderColor            = System.Drawing.Color.Black;
     this.btnMemberCard_Print.Appearance.Font                   = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.btnMemberCard_Print.Appearance.ForeColor              = System.Drawing.Color.Black;
     this.btnMemberCard_Print.Appearance.Options.UseBackColor   = true;
     this.btnMemberCard_Print.Appearance.Options.UseBorderColor = true;
     this.btnMemberCard_Print.Appearance.Options.UseFont        = true;
     this.btnMemberCard_Print.Appearance.Options.UseForeColor   = true;
     this.btnMemberCard_Print.ButtonStyle       = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnMemberCard_Print.Enabled           = false;
     this.btnMemberCard_Print.Location          = new System.Drawing.Point(248, 32);
     this.btnMemberCard_Print.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.btnMemberCard_Print.Name     = "btnMemberCard_Print";
     this.btnMemberCard_Print.Size     = new System.Drawing.Size(128, 20);
     this.btnMemberCard_Print.TabIndex = 118;
     this.btnMemberCard_Print.Text     = "Print Member Card";
     this.btnMemberCard_Print.Click   += new System.EventHandler(this.btnMemberCard_Print_Click);
     //
     // groupControl1
     //
     this.groupControl1.Appearance.BackColor            = System.Drawing.SystemColors.Control;
     this.groupControl1.Appearance.Options.UseBackColor = true;
     this.groupControl1.Controls.Add(this.btnCancelCard);
     this.groupControl1.Controls.Add(this.grpMemberCardBelow);
     this.groupControl1.Controls.Add(this.btnMemberCard_Reprint);
     this.groupControl1.Controls.Add(this.mcard_lblNStatusID);
     this.groupControl1.Controls.Add(this.cmbMemberCard);
     this.groupControl1.Controls.Add(this.btnMemberCard_Print);
     this.groupControl1.Controls.Add(this.GridMemberCard);
     this.groupControl1.Dock              = System.Windows.Forms.DockStyle.Fill;
     this.groupControl1.Location          = new System.Drawing.Point(0, 0);
     this.groupControl1.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.groupControl1.LookAndFeel.UseDefaultLookAndFeel = false;
     this.groupControl1.Name     = "groupControl1";
     this.groupControl1.Size     = new System.Drawing.Size(984, 541);
     this.groupControl1.TabIndex = 123;
     this.groupControl1.Text     = "Member Card";
     //
     // grpMemberCardBelow
     //
     this.grpMemberCardBelow.Appearance.BackColor            = System.Drawing.Color.White;
     this.grpMemberCardBelow.Appearance.GradientMode         = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.grpMemberCardBelow.Appearance.Options.UseBackColor = true;
     this.grpMemberCardBelow.Controls.Add(this.gcTransferMember);
     this.grpMemberCardBelow.Controls.Add(this.txtMemberName);
     this.grpMemberCardBelow.Controls.Add(this.txtMemberID);
     this.grpMemberCardBelow.Controls.Add(this.label2);
     this.grpMemberCardBelow.Controls.Add(this.label1);
     this.grpMemberCardBelow.Location          = new System.Drawing.Point(16, 288);
     this.grpMemberCardBelow.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.grpMemberCardBelow.LookAndFeel.UseDefaultLookAndFeel = false;
     this.grpMemberCardBelow.LookAndFeel.UseWindowsXPTheme     = false;
     this.grpMemberCardBelow.Name     = "grpMemberCardBelow";
     this.grpMemberCardBelow.Size     = new System.Drawing.Size(936, 224);
     this.grpMemberCardBelow.TabIndex = 123;
     this.grpMemberCardBelow.Text     = "In Transit Member Card";
     //
     // gcTransferMember
     //
     this.gcTransferMember.Dock = System.Windows.Forms.DockStyle.Left;
     //
     // gcTransferMember.EmbeddedNavigator
     //
     this.gcTransferMember.EmbeddedNavigator.Name = "";
     this.gcTransferMember.Location          = new System.Drawing.Point(2, 20);
     this.gcTransferMember.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.gcTransferMember.LookAndFeel.UseDefaultLookAndFeel = false;
     this.gcTransferMember.MainView = this.gvTransferMember;
     this.gcTransferMember.Name     = "gcTransferMember";
     this.gcTransferMember.Size     = new System.Drawing.Size(398, 202);
     this.gcTransferMember.TabIndex = 6;
     this.gcTransferMember.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
         this.gvTransferMember
     });
     //
     // gvTransferMember
     //
     this.gvTransferMember.GridControl = this.gcTransferMember;
     this.gvTransferMember.Name        = "gvTransferMember";
     this.gvTransferMember.OptionsBehavior.Editable = false;
     this.gvTransferMember.OptionsCustomization.AllowColumnMoving = false;
     this.gvTransferMember.OptionsCustomization.AllowFilter       = false;
     this.gvTransferMember.OptionsCustomization.AllowSort         = false;
     this.gvTransferMember.OptionsView.ShowGroupPanel             = false;
     //
     // txtMemberName
     //
     this.txtMemberName.EditValue = "";
     this.txtMemberName.Enabled   = false;
     this.txtMemberName.Location  = new System.Drawing.Point(536, 144);
     this.txtMemberName.Name      = "txtMemberName";
     this.txtMemberName.Size      = new System.Drawing.Size(224, 20);
     this.txtMemberName.TabIndex  = 5;
     //
     // txtMemberID
     //
     this.txtMemberID.EditValue = "";
     this.txtMemberID.Enabled   = false;
     this.txtMemberID.Location  = new System.Drawing.Point(536, 96);
     this.txtMemberID.Name      = "txtMemberID";
     //
     // txtMemberID.Properties
     //
     this.txtMemberID.Properties.Appearance.BackColor            = System.Drawing.Color.LightBlue;
     this.txtMemberID.Properties.Appearance.Options.UseBackColor = true;
     this.txtMemberID.Size      = new System.Drawing.Size(176, 20);
     this.txtMemberID.TabIndex  = 4;
     this.txtMemberID.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtMemberID_KeyPress);
     //
     // label2
     //
     this.label2.Font     = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label2.Location = new System.Drawing.Point(432, 144);
     this.label2.Name     = "label2";
     this.label2.TabIndex = 3;
     this.label2.Text     = "Member Name";
     //
     // label1
     //
     this.label1.Font     = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label1.Location = new System.Drawing.Point(432, 96);
     this.label1.Name     = "label1";
     this.label1.TabIndex = 2;
     this.label1.Text     = "Member ID";
     //
     // btnCancelCard
     //
     this.btnCancelCard.Appearance.BackColor              = System.Drawing.Color.LightGray;
     this.btnCancelCard.Appearance.BorderColor            = System.Drawing.Color.Black;
     this.btnCancelCard.Appearance.Font                   = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.btnCancelCard.Appearance.ForeColor              = System.Drawing.Color.Black;
     this.btnCancelCard.Appearance.Options.UseBackColor   = true;
     this.btnCancelCard.Appearance.Options.UseBorderColor = true;
     this.btnCancelCard.Appearance.Options.UseFont        = true;
     this.btnCancelCard.Appearance.Options.UseForeColor   = true;
     this.btnCancelCard.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnCancelCard.Location    = new System.Drawing.Point(544, 32);
     this.btnCancelCard.Name        = "btnCancelCard";
     this.btnCancelCard.Size        = new System.Drawing.Size(72, 20);
     this.btnCancelCard.TabIndex    = 124;
     this.btnCancelCard.Text        = "Cancel";
     this.btnCancelCard.Click      += new System.EventHandler(this.btnCancelCard_Click);
     //
     // frmMemberCard
     //
     this.AutoScale         = false;
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.BackColor         = System.Drawing.Color.White;
     this.ClientSize        = new System.Drawing.Size(984, 541);
     this.Controls.Add(this.groupControl1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
     this.Name            = "frmMemberCard";
     this.Text            = "Member Card";
     this.WindowState     = System.Windows.Forms.FormWindowState.Maximized;
     this.Load           += new System.EventHandler(this.frmMemberCard_Load);
     ((System.ComponentModel.ISupportInitialize)(this.GridMemberCard)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMemberCard)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemImageComboBox1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemImageComboBox2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbMemberCard.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.grpMemberCardBelow)).EndInit();
     this.grpMemberCardBelow.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gcTransferMember)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvTransferMember)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMemberName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMemberID.Properties)).EndInit();
     this.ResumeLayout(false);
 }
Beispiel #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.gridClassDetail = new DevExpress.XtraGrid.GridControl();
     this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn4 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn5 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.label2 = new System.Windows.Forms.Label();
     this.label1 = new System.Windows.Forms.Label();
     this.cmbBranch = new DevExpress.XtraEditors.ImageComboBoxEdit();
     this.txtDay = new DevExpress.XtraEditors.TextEdit();
     this.label3 = new System.Windows.Forms.Label();
     ((System.ComponentModel.ISupportInitialize)(this.gridClassDetail)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbBranch.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtDay.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // gridClassDetail
     //
     this.gridClassDetail.DataMember = null;
     this.gridClassDetail.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.gridClassDetail.EmbeddedNavigator.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.gridClassDetail.EmbeddedNavigator.Enabled = false;
     this.gridClassDetail.EmbeddedNavigator.ImeMode = System.Windows.Forms.ImeMode.NoControl;
     this.gridClassDetail.EmbeddedNavigator.Name = "";
     this.gridClassDetail.EmbeddedNavigator.TextLocation = DevExpress.XtraEditors.NavigatorButtonsTextLocation.None;
     this.gridClassDetail.EmbeddedNavigator.TextStringFormat = null;
     this.gridClassDetail.EmbeddedNavigator.ToolTipIconType = DevExpress.Utils.ToolTipIconType.Application;
     this.gridClassDetail.ImeMode = System.Windows.Forms.ImeMode.NoControl;
     this.gridClassDetail.Location = new System.Drawing.Point(0, 52);
     this.gridClassDetail.MainView = this.gridView1;
     this.gridClassDetail.Name = "gridClassDetail";
     this.gridClassDetail.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.gridClassDetail.Size = new System.Drawing.Size(907, 417);
     this.gridClassDetail.TabIndex = 0;
     this.gridClassDetail.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridView1});
     //
     // gridView1
     //
     this.gridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn2,
     this.gridColumn3,
     this.gridColumn4,
     this.gridColumn5});
     this.gridView1.GridControl = this.gridClassDetail;
     this.gridView1.GroupFormat = "";
     this.gridView1.Name = "gridView1";
     this.gridView1.OptionsBehavior.Editable = false;
     this.gridView1.OptionsCustomization.AllowColumnMoving = false;
     this.gridView1.OptionsCustomization.AllowFilter = false;
     this.gridView1.OptionsCustomization.AllowSort = false;
     this.gridView1.OptionsView.ShowGroupPanel = false;
     //
     // gridColumn3
     //
     this.gridColumn3.Caption = "No. of Attendees";
     this.gridColumn3.FieldName = "AttendanceNo";
     this.gridColumn3.ImageIndex = 0;
     this.gridColumn3.Name = "gridColumn3";
     this.gridColumn3.ToolTip = null;
     this.gridColumn3.Visible = true;
     this.gridColumn3.VisibleIndex = 1;
     this.gridColumn3.Width = 20;
     //
     // gridColumn2
     //
     this.gridColumn2.Caption = "Date";
     this.gridColumn2.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.gridColumn2.FieldName = "dtDate";
     this.gridColumn2.ImageIndex = 0;
     this.gridColumn2.Name = "gridColumn2";
     this.gridColumn2.ToolTip = null;
     this.gridColumn2.Visible = true;
     this.gridColumn2.VisibleIndex = 0;
     this.gridColumn2.Width = 20;
     //
     // gridColumn4
     //
     this.gridColumn4.Caption = "Instructor Name";
     this.gridColumn4.FieldName = "Instructor";
     this.gridColumn4.ImageIndex = 0;
     this.gridColumn4.Name = "gridColumn4";
     this.gridColumn4.ToolTip = null;
     this.gridColumn4.Visible = true;
     this.gridColumn4.VisibleIndex = 2;
     this.gridColumn4.Width = 20;
     //
     // gridColumn5
     //
     this.gridColumn5.Caption = "Branch";
     this.gridColumn5.FieldName = "strBranchCode";
     this.gridColumn5.ImageIndex = 0;
     this.gridColumn5.Name = "gridColumn5";
     this.gridColumn5.ToolTip = null;
     this.gridColumn5.Visible = true;
     this.gridColumn5.VisibleIndex = 3;
     this.gridColumn5.Width = 20;
     //
     // label2
     //
     this.label2.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.label2.Enabled = false;
     this.label2.ImeMode = System.Windows.Forms.ImeMode.NoControl;
     this.label2.Location = new System.Drawing.Point(453, 234);
     this.label2.Name = "label2";
     this.label2.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.label2.Size = new System.Drawing.Size(0, 0);
     this.label2.TabIndex = 0;
     //
     // label1
     //
     this.label1.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.label1.Enabled = false;
     this.label1.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label1.ImeMode = System.Windows.Forms.ImeMode.NoControl;
     this.label1.Location = new System.Drawing.Point(12, 9);
     this.label1.Name = "label1";
     this.label1.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.label1.Size = new System.Drawing.Size(55, 22);
     this.label1.TabIndex = 0;
     this.label1.Text = "Branch";
     this.label1.Click += new System.EventHandler(this.label1_Click);
     //
     // cmbBranch
     //
     this.cmbBranch.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.cmbBranch.Enabled = false;
     this.cmbBranch.ImeMode = System.Windows.Forms.ImeMode.NoControl;
     this.cmbBranch.Location = new System.Drawing.Point(73, 7);
     this.cmbBranch.Name = "cmbBranch";
     this.cmbBranch.Properties.AutoHeight = false;
     this.cmbBranch.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cmbBranch.Properties.Mask.EditMask = null;
     this.cmbBranch.Properties.Mask.IgnoreMaskBlank = false;
     this.cmbBranch.Properties.Mask.SaveLiteral = false;
     this.cmbBranch.Properties.Mask.ShowPlaceHolders = false;
     this.cmbBranch.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.cmbBranch.Size = new System.Drawing.Size(105, 22);
     this.cmbBranch.TabIndex = 0;
     this.cmbBranch.ToolTipIconType = DevExpress.Utils.ToolTipIconType.Application;
     this.cmbBranch.SelectedIndexChanged += new System.EventHandler(this.cmbBranch_SelectedIndexChanged);
     //
     // txtDay
     //
     this.txtDay.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.txtDay.Enabled = false;
     this.txtDay.ImeMode = System.Windows.Forms.ImeMode.NoControl;
     this.txtDay.Location = new System.Drawing.Point(459, 8);
     this.txtDay.Name = "txtDay";
     this.txtDay.Properties.AutoHeight = false;
     this.txtDay.Properties.Mask.EditMask = null;
     this.txtDay.Properties.Mask.IgnoreMaskBlank = false;
     this.txtDay.Properties.Mask.SaveLiteral = false;
     this.txtDay.Properties.Mask.ShowPlaceHolders = false;
     this.txtDay.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.txtDay.Size = new System.Drawing.Size(100, 22);
     this.txtDay.TabIndex = 0;
     this.txtDay.ToolTipIconType = DevExpress.Utils.ToolTipIconType.Application;
     //
     // label3
     //
     this.label3.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.label3.Enabled = false;
     this.label3.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label3.ImeMode = System.Windows.Forms.ImeMode.NoControl;
     this.label3.Location = new System.Drawing.Point(420, 10);
     this.label3.Name = "label3";
     this.label3.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.label3.Size = new System.Drawing.Size(33, 22);
     this.label3.TabIndex = 1;
     this.label3.Text = "Day";
     //
     // RPClassDetail
     //
     this.ClientSize = new System.Drawing.Size(907, 469);
     this.Controls.Add(this.label3);
     this.Controls.Add(this.txtDay);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.cmbBranch);
     this.Controls.Add(this.gridClassDetail);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "RPClassDetail";
     this.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.ShowInTaskbar = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.Manual;
     this.Text = "Class Detail";
     this.TopMost = true;
     this.Load += new System.EventHandler(this.RPClassDetail_Load);
     this.Closing += new System.ComponentModel.CancelEventHandler(this.RPClassDetail_Closing);
     ((System.ComponentModel.ISupportInitialize)(this.gridClassDetail)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbBranch.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtDay.Properties)).EndInit();
     this.ResumeLayout(false);
 }
Beispiel #38
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmReceipt));
     this.grpMdReceipt = new DevExpress.XtraEditors.GroupControl();
     this.Searchpanel = new System.Windows.Forms.Panel();
     this.btn_Search = new DevExpress.XtraEditors.SimpleButton();
     this.txtSearch = new DevExpress.XtraEditors.TextEdit();
     this.ddlReceiptCategory = new DevExpress.XtraEditors.ImageComboBoxEdit();
     this.label31 = new System.Windows.Forms.Label();
     this.tabCtrlMd_Freebie = new DevExpress.XtraTab.XtraTabControl();
     this.xtraTabPage1 = new DevExpress.XtraTab.XtraTabPage();
     this.gridControlMd_Freebie = new DevExpress.XtraGrid.GridControl();
     this.gridViewMd_Freebie = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.nFreebieID = new DevExpress.XtraGrid.Columns.GridColumn();
     this.nEntryID = new DevExpress.XtraGrid.Columns.GridColumn();
     this.strReceiptNo1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.strItemCode = new DevExpress.XtraGrid.Columns.GridColumn();
     this.strPromotionCode = new DevExpress.XtraGrid.Columns.GridColumn();
     this.lk_RPClassType = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.xtraTabPage2 = new DevExpress.XtraTab.XtraTabPage();
     this.gridControlMd_Entries = new DevExpress.XtraGrid.GridControl();
     this.gridViewMd_Entries = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn4 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn5 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn11 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn12 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn13 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn14 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn15 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn16 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn17 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemLookUpEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gridView3 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.xtraTabPage3 = new DevExpress.XtraTab.XtraTabPage();
     this.gridControlMd_Payment = new DevExpress.XtraGrid.GridControl();
     this.gridViewMd_Payment = new DevExpress.XtraGrid.Views.Grid.GridView();
     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.gridColumn18 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemLookUpEdit2 = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.groupControl2 = new DevExpress.XtraEditors.GroupControl();
     this.gridControlMd_Receipt = new DevExpress.XtraGrid.GridControl();
     this.gridViewMd_Receipt = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.strReceiptNo = new DevExpress.XtraGrid.Columns.GridColumn();
     this.strMembershipID = new DevExpress.XtraGrid.Columns.GridColumn();
     this.strBranchCode = new DevExpress.XtraGrid.Columns.GridColumn();
     this.nCategoryID = new DevExpress.XtraGrid.Columns.GridColumn();
     this.dtDate = new DevExpress.XtraGrid.Columns.GridColumn();
     this.nSalespersonID = new DevExpress.XtraGrid.Columns.GridColumn();
     this.nCashierID = new DevExpress.XtraGrid.Columns.GridColumn();
     this.nShiftID = new DevExpress.XtraGrid.Columns.GridColumn();
     this.nTerminalID = new DevExpress.XtraGrid.Columns.GridColumn();
     this.mNettAmount = new DevExpress.XtraGrid.Columns.GridColumn();
     this.mGSTAmount = new DevExpress.XtraGrid.Columns.GridColumn();
     this.mTotalAmount = new DevExpress.XtraGrid.Columns.GridColumn();
     this.strDiscountCode = new DevExpress.XtraGrid.Columns.GridColumn();
     this.strFreebieCode = new DevExpress.XtraGrid.Columns.GridColumn();
     this.nTaxID = new DevExpress.XtraGrid.Columns.GridColumn();
     this.mVoucherTypeID = new DevExpress.XtraGrid.Columns.GridColumn();
     this.mVoucherAmount = new DevExpress.XtraGrid.Columns.GridColumn();
     this.nTherapistID = new DevExpress.XtraGrid.Columns.GridColumn();
     this.strRewardsCode = new DevExpress.XtraGrid.Columns.GridColumn();
     this.fVoid = new DevExpress.XtraGrid.Columns.GridColumn();
     this.strReferenceNo = new DevExpress.XtraGrid.Columns.GridColumn();
     this.strParentReceiptNo = new DevExpress.XtraGrid.Columns.GridColumn();
     this.mOutstandingAmount = new DevExpress.XtraGrid.Columns.GridColumn();
     this.strRemarks = new DevExpress.XtraGrid.Columns.GridColumn();
     this.fDeposit = new DevExpress.XtraGrid.Columns.GridColumn();
     this.mBalance = new DevExpress.XtraGrid.Columns.GridColumn();
     this.strBillReferenceNo = new DevExpress.XtraGrid.Columns.GridColumn();
     this.strLocation = new DevExpress.XtraGrid.Columns.GridColumn();
     this.dtDateTime = new DevExpress.XtraGrid.Columns.GridColumn();
     this.mUpgradeAmount = new DevExpress.XtraGrid.Columns.GridColumn();
     this.fRefund = new DevExpress.XtraGrid.Columns.GridColumn();
     this.strChequeNo = new DevExpress.XtraGrid.Columns.GridColumn();
     this.mRefundAmount = new DevExpress.XtraGrid.Columns.GridColumn();
     this.nChequeUpdateBy = new DevExpress.XtraGrid.Columns.GridColumn();
     this.mDiscountAmount = new DevExpress.XtraGrid.Columns.GridColumn();
     this.strSignedPDFPath = new DevExpress.XtraGrid.Columns.GridColumn();
     this.imageList1 = new System.Windows.Forms.ImageList(this.components);
     this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView();
     ((System.ComponentModel.ISupportInitialize)(this.grpMdReceipt)).BeginInit();
     this.grpMdReceipt.SuspendLayout();
     this.Searchpanel.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtSearch.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ddlReceiptCategory.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tabCtrlMd_Freebie)).BeginInit();
     this.tabCtrlMd_Freebie.SuspendLayout();
     this.xtraTabPage1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMd_Freebie)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMd_Freebie)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_RPClassType)).BeginInit();
     this.xtraTabPage2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMd_Entries)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMd_Entries)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView3)).BeginInit();
     this.xtraTabPage3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMd_Payment)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMd_Payment)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEdit2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).BeginInit();
     this.groupControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMd_Receipt)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMd_Receipt)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     this.SuspendLayout();
     //
     // grpMdReceipt
     //
     this.grpMdReceipt.Appearance.BackColor = System.Drawing.SystemColors.Control;
     this.grpMdReceipt.Appearance.Options.UseBackColor = true;
     this.grpMdReceipt.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.grpMdReceipt.Controls.Add(this.Searchpanel);
     this.grpMdReceipt.Controls.Add(this.ddlReceiptCategory);
     this.grpMdReceipt.Controls.Add(this.label31);
     this.grpMdReceipt.Controls.Add(this.tabCtrlMd_Freebie);
     this.grpMdReceipt.Controls.Add(this.groupControl2);
     this.grpMdReceipt.ImeMode = System.Windows.Forms.ImeMode.On;
     this.grpMdReceipt.Location = new System.Drawing.Point(8, 0);
     this.grpMdReceipt.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.grpMdReceipt.LookAndFeel.UseDefaultLookAndFeel = false;
     this.grpMdReceipt.Name = "grpMdReceipt";
     this.grpMdReceipt.Size = new System.Drawing.Size(970, 560);
     this.grpMdReceipt.TabIndex = 33;
     this.grpMdReceipt.Text = "Class";
     //
     // Searchpanel
     //
     this.Searchpanel.Controls.Add(this.btn_Search);
     this.Searchpanel.Controls.Add(this.txtSearch);
     this.Searchpanel.Location = new System.Drawing.Point(498, 22);
     this.Searchpanel.Name = "Searchpanel";
     this.Searchpanel.Size = new System.Drawing.Size(464, 24);
     this.Searchpanel.TabIndex = 153;
     //
     // btn_Search
     //
     this.btn_Search.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.btn_Search.Appearance.Options.UseFont = true;
     this.btn_Search.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btn_Search.Location = new System.Drawing.Point(392, 3);
     this.btn_Search.Name = "btn_Search";
     this.btn_Search.Size = new System.Drawing.Size(56, 20);
     this.btn_Search.TabIndex = 137;
     this.btn_Search.Text = "Search";
     this.btn_Search.Click += new System.EventHandler(this.btn_Search_Click);
     //
     // txtSearch
     //
     this.txtSearch.EditValue = "";
     this.txtSearch.ImeMode = System.Windows.Forms.ImeMode.On;
     this.txtSearch.Location = new System.Drawing.Point(232, 3);
     this.txtSearch.Name = "txtSearch";
     this.txtSearch.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtSearch.Properties.Appearance.Options.UseFont = true;
     this.txtSearch.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.txtSearch.Size = new System.Drawing.Size(152, 20);
     this.txtSearch.TabIndex = 136;
     //
     // ddlReceiptCategory
     //
     this.ddlReceiptCategory.EditValue = 0;
     this.ddlReceiptCategory.Location = new System.Drawing.Point(79, 25);
     this.ddlReceiptCategory.Name = "ddlReceiptCategory";
     this.ddlReceiptCategory.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.ddlReceiptCategory.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.ddlReceiptCategory.Properties.SmallImages = "";
     this.ddlReceiptCategory.Size = new System.Drawing.Size(176, 20);
     this.ddlReceiptCategory.TabIndex = 136;
     this.ddlReceiptCategory.SelectedIndexChanged += new System.EventHandler(this.ddlReceiptCategory_SelectedIndexChanged);
     //
     // label31
     //
     this.label31.BackColor = System.Drawing.Color.Transparent;
     this.label31.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label31.Location = new System.Drawing.Point(6, 26);
     this.label31.Name = "label31";
     this.label31.Size = new System.Drawing.Size(136, 16);
     this.label31.TabIndex = 137;
     this.label31.Text = "Category";
     this.label31.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // tabCtrlMd_Freebie
     //
     this.tabCtrlMd_Freebie.Appearance.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tabCtrlMd_Freebie.Appearance.Options.UseFont = true;
     this.tabCtrlMd_Freebie.AppearancePage.Header.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tabCtrlMd_Freebie.AppearancePage.Header.Options.UseFont = true;
     this.tabCtrlMd_Freebie.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.tabCtrlMd_Freebie.Location = new System.Drawing.Point(2, 302);
     this.tabCtrlMd_Freebie.LookAndFeel.UseDefaultLookAndFeel = false;
     this.tabCtrlMd_Freebie.Name = "tabCtrlMd_Freebie";
     this.tabCtrlMd_Freebie.SelectedTabPage = this.xtraTabPage1;
     this.tabCtrlMd_Freebie.Size = new System.Drawing.Size(966, 256);
     this.tabCtrlMd_Freebie.TabIndex = 135;
     this.tabCtrlMd_Freebie.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
     this.xtraTabPage1,
     this.xtraTabPage2,
     this.xtraTabPage3});
     //
     // xtraTabPage1
     //
     this.xtraTabPage1.Controls.Add(this.gridControlMd_Freebie);
     this.xtraTabPage1.Name = "xtraTabPage1";
     this.xtraTabPage1.Size = new System.Drawing.Size(957, 222);
     this.xtraTabPage1.Text = "Freebies";
     //
     // gridControlMd_Freebie
     //
     this.gridControlMd_Freebie.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridControlMd_Freebie.Location = new System.Drawing.Point(0, 0);
     this.gridControlMd_Freebie.LookAndFeel.UseDefaultLookAndFeel = false;
     this.gridControlMd_Freebie.MainView = this.gridViewMd_Freebie;
     this.gridControlMd_Freebie.Name = "gridControlMd_Freebie";
     this.gridControlMd_Freebie.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.lk_RPClassType});
     this.gridControlMd_Freebie.Size = new System.Drawing.Size(957, 222);
     this.gridControlMd_Freebie.TabIndex = 128;
     this.gridControlMd_Freebie.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewMd_Freebie});
     //
     // gridViewMd_Freebie
     //
     this.gridViewMd_Freebie.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.nFreebieID,
     this.nEntryID,
     this.strReceiptNo1,
     this.strItemCode,
     this.strPromotionCode});
     this.gridViewMd_Freebie.GridControl = this.gridControlMd_Freebie;
     this.gridViewMd_Freebie.Name = "gridViewMd_Freebie";
     this.gridViewMd_Freebie.OptionsCustomization.AllowFilter = false;
     this.gridViewMd_Freebie.OptionsCustomization.AllowSort = false;
     this.gridViewMd_Freebie.OptionsView.ShowGroupPanel = false;
     this.gridViewMd_Freebie.LostFocus += new System.EventHandler(this.gridViewMd_Freebie_LostFocus);
     //
     // nFreebieID
     //
     this.nFreebieID.Caption = "FreebieID";
     this.nFreebieID.FieldName = "nFreebieID";
     this.nFreebieID.Name = "nFreebieID";
     this.nFreebieID.Visible = true;
     this.nFreebieID.VisibleIndex = 0;
     //
     // nEntryID
     //
     this.nEntryID.Caption = "EntryID";
     this.nEntryID.FieldName = "nEntryID";
     this.nEntryID.Name = "nEntryID";
     this.nEntryID.Visible = true;
     this.nEntryID.VisibleIndex = 1;
     //
     // strReceiptNo1
     //
     this.strReceiptNo1.Caption = "ReceiptNo";
     this.strReceiptNo1.FieldName = "strReceiptNo";
     this.strReceiptNo1.Name = "strReceiptNo1";
     this.strReceiptNo1.Visible = true;
     this.strReceiptNo1.VisibleIndex = 2;
     //
     // strItemCode
     //
     this.strItemCode.Caption = "ItemCode";
     this.strItemCode.FieldName = "strItemCode";
     this.strItemCode.Name = "strItemCode";
     this.strItemCode.Visible = true;
     this.strItemCode.VisibleIndex = 3;
     //
     // strPromotionCode
     //
     this.strPromotionCode.Caption = "PromotionCode";
     this.strPromotionCode.FieldName = "strPromotionCode";
     this.strPromotionCode.Name = "strPromotionCode";
     this.strPromotionCode.Visible = true;
     this.strPromotionCode.VisibleIndex = 4;
     //
     // lk_RPClassType
     //
     this.lk_RPClassType.AutoHeight = false;
     this.lk_RPClassType.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lk_RPClassType.Name = "lk_RPClassType";
     //
     // xtraTabPage2
     //
     this.xtraTabPage2.Controls.Add(this.gridControlMd_Entries);
     this.xtraTabPage2.Name = "xtraTabPage2";
     this.xtraTabPage2.Size = new System.Drawing.Size(957, 222);
     this.xtraTabPage2.Text = "Entries";
     //
     // gridControlMd_Entries
     //
     this.gridControlMd_Entries.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridControlMd_Entries.Location = new System.Drawing.Point(0, 0);
     this.gridControlMd_Entries.LookAndFeel.UseDefaultLookAndFeel = false;
     this.gridControlMd_Entries.MainView = this.gridViewMd_Entries;
     this.gridControlMd_Entries.Name = "gridControlMd_Entries";
     this.gridControlMd_Entries.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemLookUpEdit1});
     this.gridControlMd_Entries.Size = new System.Drawing.Size(957, 222);
     this.gridControlMd_Entries.TabIndex = 128;
     this.gridControlMd_Entries.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewMd_Entries,
     this.gridView3});
     //
     // gridViewMd_Entries
     //
     this.gridViewMd_Entries.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn1,
     this.gridColumn2,
     this.gridColumn4,
     this.gridColumn5,
     this.gridColumn3,
     this.gridColumn11,
     this.gridColumn12,
     this.gridColumn13,
     this.gridColumn14,
     this.gridColumn15,
     this.gridColumn16,
     this.gridColumn17});
     this.gridViewMd_Entries.GridControl = this.gridControlMd_Entries;
     this.gridViewMd_Entries.HorzScrollVisibility = DevExpress.XtraGrid.Views.Base.ScrollVisibility.Always;
     this.gridViewMd_Entries.Name = "gridViewMd_Entries";
     this.gridViewMd_Entries.OptionsCustomization.AllowFilter = false;
     this.gridViewMd_Entries.OptionsCustomization.AllowSort = false;
     this.gridViewMd_Entries.OptionsView.ShowGroupPanel = false;
     this.gridViewMd_Entries.VertScrollVisibility = DevExpress.XtraGrid.Views.Base.ScrollVisibility.Always;
     this.gridViewMd_Entries.LostFocus += new System.EventHandler(this.gridViewMd_Entries_LostFocus);
     //
     // gridColumn1
     //
     this.gridColumn1.Caption = "EntryID";
     this.gridColumn1.FieldName = "nEntryID";
     this.gridColumn1.Name = "gridColumn1";
     this.gridColumn1.Visible = true;
     this.gridColumn1.VisibleIndex = 0;
     //
     // gridColumn2
     //
     this.gridColumn2.Caption = "ReceiptNo";
     this.gridColumn2.FieldName = "strReceiptNo";
     this.gridColumn2.Name = "gridColumn2";
     this.gridColumn2.Visible = true;
     this.gridColumn2.VisibleIndex = 1;
     //
     // gridColumn4
     //
     this.gridColumn4.Caption = "Code";
     this.gridColumn4.FieldName = "strCode";
     this.gridColumn4.Name = "gridColumn4";
     this.gridColumn4.Visible = true;
     this.gridColumn4.VisibleIndex = 2;
     //
     // gridColumn5
     //
     this.gridColumn5.Caption = "Description";
     this.gridColumn5.FieldName = "strDescription";
     this.gridColumn5.Name = "gridColumn5";
     this.gridColumn5.Visible = true;
     this.gridColumn5.VisibleIndex = 3;
     //
     // gridColumn3
     //
     this.gridColumn3.Caption = "Quantity";
     this.gridColumn3.FieldName = "nQuantity";
     this.gridColumn3.Name = "gridColumn3";
     this.gridColumn3.Visible = true;
     this.gridColumn3.VisibleIndex = 4;
     //
     // gridColumn11
     //
     this.gridColumn11.Caption = "UnitPrice";
     this.gridColumn11.FieldName = "mUnitPrice";
     this.gridColumn11.Name = "gridColumn11";
     this.gridColumn11.Visible = true;
     this.gridColumn11.VisibleIndex = 5;
     //
     // gridColumn12
     //
     this.gridColumn12.Caption = "DiscountCode";
     this.gridColumn12.FieldName = "strDiscountCode";
     this.gridColumn12.Name = "gridColumn12";
     this.gridColumn12.Visible = true;
     this.gridColumn12.VisibleIndex = 6;
     //
     // gridColumn13
     //
     this.gridColumn13.Caption = "FreebieCode";
     this.gridColumn13.FieldName = "strFreebieCode";
     this.gridColumn13.Name = "gridColumn13";
     this.gridColumn13.Visible = true;
     this.gridColumn13.VisibleIndex = 7;
     //
     // gridColumn14
     //
     this.gridColumn14.Caption = "SubTotal";
     this.gridColumn14.FieldName = "mSubTotal";
     this.gridColumn14.Name = "gridColumn14";
     this.gridColumn14.Visible = true;
     this.gridColumn14.VisibleIndex = 8;
     //
     // gridColumn15
     //
     this.gridColumn15.Caption = "ReferenceNo";
     this.gridColumn15.FieldName = "strReferenceNo";
     this.gridColumn15.Name = "gridColumn15";
     this.gridColumn15.Visible = true;
     this.gridColumn15.VisibleIndex = 9;
     //
     // gridColumn16
     //
     this.gridColumn16.Caption = "TempEntryID";
     this.gridColumn16.FieldName = "nTempEntryID";
     this.gridColumn16.Name = "gridColumn16";
     this.gridColumn16.Visible = true;
     this.gridColumn16.VisibleIndex = 10;
     //
     // gridColumn17
     //
     this.gridColumn17.Caption = "UpgradeAmount";
     this.gridColumn17.FieldName = "mUpgradeAmount";
     this.gridColumn17.Name = "gridColumn17";
     this.gridColumn17.Visible = true;
     this.gridColumn17.VisibleIndex = 11;
     //
     // repositoryItemLookUpEdit1
     //
     this.repositoryItemLookUpEdit1.AutoHeight = false;
     this.repositoryItemLookUpEdit1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemLookUpEdit1.Name = "repositoryItemLookUpEdit1";
     //
     // gridView3
     //
     this.gridView3.GridControl = this.gridControlMd_Entries;
     this.gridView3.Name = "gridView3";
     //
     // xtraTabPage3
     //
     this.xtraTabPage3.Controls.Add(this.gridControlMd_Payment);
     this.xtraTabPage3.Name = "xtraTabPage3";
     this.xtraTabPage3.Size = new System.Drawing.Size(957, 222);
     this.xtraTabPage3.Text = "Payment";
     //
     // gridControlMd_Payment
     //
     this.gridControlMd_Payment.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridControlMd_Payment.Location = new System.Drawing.Point(0, 0);
     this.gridControlMd_Payment.LookAndFeel.UseDefaultLookAndFeel = false;
     this.gridControlMd_Payment.MainView = this.gridViewMd_Payment;
     this.gridControlMd_Payment.Name = "gridControlMd_Payment";
     this.gridControlMd_Payment.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemLookUpEdit2});
     this.gridControlMd_Payment.Size = new System.Drawing.Size(957, 222);
     this.gridControlMd_Payment.TabIndex = 128;
     this.gridControlMd_Payment.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewMd_Payment});
     //
     // gridViewMd_Payment
     //
     this.gridViewMd_Payment.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn6,
     this.gridColumn7,
     this.gridColumn8,
     this.gridColumn9,
     this.gridColumn10,
     this.gridColumn18});
     this.gridViewMd_Payment.GridControl = this.gridControlMd_Payment;
     this.gridViewMd_Payment.Name = "gridViewMd_Payment";
     this.gridViewMd_Payment.OptionsCustomization.AllowFilter = false;
     this.gridViewMd_Payment.OptionsCustomization.AllowSort = false;
     this.gridViewMd_Payment.OptionsView.ShowGroupPanel = false;
     this.gridViewMd_Payment.LostFocus += new System.EventHandler(this.gridViewMd_Payment_LostFocus);
     //
     // gridColumn6
     //
     this.gridColumn6.Caption = "PaymentID";
     this.gridColumn6.FieldName = "nPaymentID";
     this.gridColumn6.Name = "gridColumn6";
     this.gridColumn6.Visible = true;
     this.gridColumn6.VisibleIndex = 0;
     //
     // gridColumn7
     //
     this.gridColumn7.Caption = "ReceiptNo";
     this.gridColumn7.FieldName = "strReceiptNo";
     this.gridColumn7.Name = "gridColumn7";
     this.gridColumn7.Visible = true;
     this.gridColumn7.VisibleIndex = 1;
     //
     // gridColumn8
     //
     this.gridColumn8.Caption = "PaymentCode";
     this.gridColumn8.FieldName = "strPaymentCode";
     this.gridColumn8.Name = "gridColumn8";
     this.gridColumn8.Visible = true;
     this.gridColumn8.VisibleIndex = 2;
     //
     // gridColumn9
     //
     this.gridColumn9.Caption = "Amount";
     this.gridColumn9.FieldName = "mAmount";
     this.gridColumn9.Name = "gridColumn9";
     this.gridColumn9.Visible = true;
     this.gridColumn9.VisibleIndex = 3;
     //
     // gridColumn10
     //
     this.gridColumn10.Caption = "IPPID";
     this.gridColumn10.FieldName = "nIPPID";
     this.gridColumn10.Name = "gridColumn10";
     this.gridColumn10.Visible = true;
     this.gridColumn10.VisibleIndex = 4;
     //
     // gridColumn18
     //
     this.gridColumn18.Caption = "ReferenceNo";
     this.gridColumn18.FieldName = "strReferenceNo";
     this.gridColumn18.Name = "gridColumn18";
     this.gridColumn18.Visible = true;
     this.gridColumn18.VisibleIndex = 5;
     //
     // 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";
     //
     // groupControl2
     //
     this.groupControl2.Controls.Add(this.gridControlMd_Receipt);
     this.groupControl2.Location = new System.Drawing.Point(0, 50);
     this.groupControl2.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.groupControl2.LookAndFeel.UseDefaultLookAndFeel = false;
     this.groupControl2.Name = "groupControl2";
     this.groupControl2.Size = new System.Drawing.Size(968, 246);
     this.groupControl2.TabIndex = 128;
     this.groupControl2.Text = "Class Type";
     //
     // gridControlMd_Receipt
     //
     this.gridControlMd_Receipt.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridControlMd_Receipt.Location = new System.Drawing.Point(2, 19);
     this.gridControlMd_Receipt.LookAndFeel.UseDefaultLookAndFeel = false;
     this.gridControlMd_Receipt.MainView = this.gridViewMd_Receipt;
     this.gridControlMd_Receipt.Name = "gridControlMd_Receipt";
     this.gridControlMd_Receipt.Size = new System.Drawing.Size(964, 225);
     this.gridControlMd_Receipt.TabIndex = 126;
     this.gridControlMd_Receipt.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewMd_Receipt});
     //
     // gridViewMd_Receipt
     //
     this.gridViewMd_Receipt.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.strReceiptNo,
     this.strMembershipID,
     this.strBranchCode,
     this.nCategoryID,
     this.dtDate,
     this.nSalespersonID,
     this.nCashierID,
     this.nShiftID,
     this.nTerminalID,
     this.mNettAmount,
     this.mGSTAmount,
     this.mTotalAmount,
     this.strDiscountCode,
     this.strFreebieCode,
     this.nTaxID,
     this.mVoucherTypeID,
     this.mVoucherAmount,
     this.nTherapistID,
     this.strRewardsCode,
     this.fVoid,
     this.strReferenceNo,
     this.strParentReceiptNo,
     this.mOutstandingAmount,
     this.strRemarks,
     this.fDeposit,
     this.mBalance,
     this.strBillReferenceNo,
     this.strLocation,
     this.dtDateTime,
     this.mUpgradeAmount,
     this.fRefund,
     this.strChequeNo,
     this.mRefundAmount,
     this.nChequeUpdateBy,
     this.mDiscountAmount,
     this.strSignedPDFPath});
     this.gridViewMd_Receipt.GridControl = this.gridControlMd_Receipt;
     this.gridViewMd_Receipt.HorzScrollVisibility = DevExpress.XtraGrid.Views.Base.ScrollVisibility.Always;
     this.gridViewMd_Receipt.Name = "gridViewMd_Receipt";
     this.gridViewMd_Receipt.OptionsCustomization.AllowColumnMoving = false;
     this.gridViewMd_Receipt.OptionsCustomization.AllowFilter = false;
     this.gridViewMd_Receipt.OptionsCustomization.AllowSort = false;
     this.gridViewMd_Receipt.OptionsView.ColumnAutoWidth = false;
     this.gridViewMd_Receipt.OptionsView.ShowGroupPanel = false;
     this.gridViewMd_Receipt.VertScrollVisibility = DevExpress.XtraGrid.Views.Base.ScrollVisibility.Always;
     this.gridViewMd_Receipt.FocusedRowChanged += new DevExpress.XtraGrid.Views.Base.FocusedRowChangedEventHandler(this.gridViewMd_Receipt_FocusedRowChanged);
     this.gridViewMd_Receipt.LostFocus += new System.EventHandler(this.gridViewMd_Receipt_LostFocus);
     //
     // strReceiptNo
     //
     this.strReceiptNo.Caption = "ReceiptNo";
     this.strReceiptNo.FieldName = "strReceiptNo";
     this.strReceiptNo.Name = "strReceiptNo";
     this.strReceiptNo.Visible = true;
     this.strReceiptNo.VisibleIndex = 0;
     this.strReceiptNo.Width = 95;
     //
     // strMembershipID
     //
     this.strMembershipID.Caption = "MembershipID";
     this.strMembershipID.FieldName = "strMembershipID";
     this.strMembershipID.Name = "strMembershipID";
     this.strMembershipID.Visible = true;
     this.strMembershipID.VisibleIndex = 1;
     this.strMembershipID.Width = 80;
     //
     // strBranchCode
     //
     this.strBranchCode.Caption = "BranchCode";
     this.strBranchCode.FieldName = "strBranchCode";
     this.strBranchCode.Name = "strBranchCode";
     this.strBranchCode.Visible = true;
     this.strBranchCode.VisibleIndex = 2;
     this.strBranchCode.Width = 70;
     //
     // nCategoryID
     //
     this.nCategoryID.Caption = "CategoryID";
     this.nCategoryID.FieldName = "nCategoryID";
     this.nCategoryID.Name = "nCategoryID";
     this.nCategoryID.Visible = true;
     this.nCategoryID.VisibleIndex = 3;
     this.nCategoryID.Width = 68;
     //
     // dtDate
     //
     this.dtDate.Caption = "Date";
     this.dtDate.FieldName = "dtDate";
     this.dtDate.Name = "dtDate";
     this.dtDate.Visible = true;
     this.dtDate.VisibleIndex = 4;
     this.dtDate.Width = 77;
     //
     // nSalespersonID
     //
     this.nSalespersonID.Caption = "SalespersonID";
     this.nSalespersonID.FieldName = "nSalespersonID";
     this.nSalespersonID.Name = "nSalespersonID";
     this.nSalespersonID.Visible = true;
     this.nSalespersonID.VisibleIndex = 5;
     this.nSalespersonID.Width = 81;
     //
     // nCashierID
     //
     this.nCashierID.Caption = "CashierID";
     this.nCashierID.FieldName = "nCashierID";
     this.nCashierID.Name = "nCashierID";
     this.nCashierID.Visible = true;
     this.nCashierID.VisibleIndex = 6;
     this.nCashierID.Width = 59;
     //
     // nShiftID
     //
     this.nShiftID.Caption = "ShiftID";
     this.nShiftID.FieldName = "nShiftID";
     this.nShiftID.Name = "nShiftID";
     this.nShiftID.Visible = true;
     this.nShiftID.VisibleIndex = 7;
     this.nShiftID.Width = 45;
     //
     // nTerminalID
     //
     this.nTerminalID.Caption = "TerminalID";
     this.nTerminalID.FieldName = "nTerminalID";
     this.nTerminalID.Name = "nTerminalID";
     this.nTerminalID.Visible = true;
     this.nTerminalID.VisibleIndex = 8;
     this.nTerminalID.Width = 63;
     //
     // mNettAmount
     //
     this.mNettAmount.Caption = "NettAmount";
     this.mNettAmount.FieldName = "mNettAmount";
     this.mNettAmount.Name = "mNettAmount";
     this.mNettAmount.Visible = true;
     this.mNettAmount.VisibleIndex = 9;
     this.mNettAmount.Width = 70;
     //
     // mGSTAmount
     //
     this.mGSTAmount.Caption = "GSTAmount";
     this.mGSTAmount.FieldName = "mGSTAmount";
     this.mGSTAmount.Name = "mGSTAmount";
     this.mGSTAmount.Visible = true;
     this.mGSTAmount.VisibleIndex = 10;
     this.mGSTAmount.Width = 68;
     //
     // mTotalAmount
     //
     this.mTotalAmount.Caption = "TotalAmount";
     this.mTotalAmount.FieldName = "mTotalAmount";
     this.mTotalAmount.Name = "mTotalAmount";
     this.mTotalAmount.Visible = true;
     this.mTotalAmount.VisibleIndex = 11;
     this.mTotalAmount.Width = 73;
     //
     // strDiscountCode
     //
     this.strDiscountCode.Caption = "DiscountCode";
     this.strDiscountCode.FieldName = "strDiscountCode";
     this.strDiscountCode.Name = "strDiscountCode";
     this.strDiscountCode.Visible = true;
     this.strDiscountCode.VisibleIndex = 12;
     this.strDiscountCode.Width = 78;
     //
     // strFreebieCode
     //
     this.strFreebieCode.Caption = "FreebieCode";
     this.strFreebieCode.FieldName = "strFreebieCode";
     this.strFreebieCode.Name = "strFreebieCode";
     this.strFreebieCode.Visible = true;
     this.strFreebieCode.VisibleIndex = 13;
     this.strFreebieCode.Width = 73;
     //
     // nTaxID
     //
     this.nTaxID.Caption = "TaxID";
     this.nTaxID.FieldName = "nTaxID";
     this.nTaxID.Name = "nTaxID";
     this.nTaxID.Visible = true;
     this.nTaxID.VisibleIndex = 14;
     this.nTaxID.Width = 41;
     //
     // mVoucherTypeID
     //
     this.mVoucherTypeID.Caption = "VoucherTypeID";
     this.mVoucherTypeID.FieldName = "mVoucherTypeID";
     this.mVoucherTypeID.Name = "mVoucherTypeID";
     this.mVoucherTypeID.Visible = true;
     this.mVoucherTypeID.VisibleIndex = 15;
     this.mVoucherTypeID.Width = 86;
     //
     // mVoucherAmount
     //
     this.mVoucherAmount.Caption = "VoucherAmount";
     this.mVoucherAmount.FieldName = "mVoucherAmount";
     this.mVoucherAmount.Name = "mVoucherAmount";
     this.mVoucherAmount.Visible = true;
     this.mVoucherAmount.VisibleIndex = 16;
     this.mVoucherAmount.Width = 88;
     //
     // nTherapistID
     //
     this.nTherapistID.Caption = "TherapistID";
     this.nTherapistID.FieldName = "nTherapistID";
     this.nTherapistID.Name = "nTherapistID";
     this.nTherapistID.Visible = true;
     this.nTherapistID.VisibleIndex = 17;
     this.nTherapistID.Width = 68;
     //
     // strRewardsCode
     //
     this.strRewardsCode.Caption = "RewardsCode";
     this.strRewardsCode.FieldName = "strRewardsCode";
     this.strRewardsCode.Name = "strRewardsCode";
     this.strRewardsCode.Visible = true;
     this.strRewardsCode.VisibleIndex = 18;
     this.strRewardsCode.Width = 79;
     //
     // fVoid
     //
     this.fVoid.Caption = "Void";
     this.fVoid.FieldName = "fVoid";
     this.fVoid.Name = "fVoid";
     this.fVoid.Visible = true;
     this.fVoid.VisibleIndex = 19;
     this.fVoid.Width = 32;
     //
     // strReferenceNo
     //
     this.strReferenceNo.Caption = "ReferenceNo";
     this.strReferenceNo.FieldName = "strReferenceNo";
     this.strReferenceNo.Name = "strReferenceNo";
     this.strReferenceNo.Visible = true;
     this.strReferenceNo.VisibleIndex = 20;
     //
     // strParentReceiptNo
     //
     this.strParentReceiptNo.Caption = "ParentReceiptNo";
     this.strParentReceiptNo.FieldName = "strParentReceiptNo";
     this.strParentReceiptNo.Name = "strParentReceiptNo";
     this.strParentReceiptNo.Visible = true;
     this.strParentReceiptNo.VisibleIndex = 21;
     this.strParentReceiptNo.Width = 93;
     //
     // mOutstandingAmount
     //
     this.mOutstandingAmount.Caption = "OutstandingAmount";
     this.mOutstandingAmount.FieldName = "mOutstandingAmount";
     this.mOutstandingAmount.Name = "mOutstandingAmount";
     this.mOutstandingAmount.Visible = true;
     this.mOutstandingAmount.VisibleIndex = 22;
     this.mOutstandingAmount.Width = 108;
     //
     // strRemarks
     //
     this.strRemarks.Caption = "Remarks";
     this.strRemarks.FieldName = "strRemarks";
     this.strRemarks.Name = "strRemarks";
     this.strRemarks.Visible = true;
     this.strRemarks.VisibleIndex = 23;
     this.strRemarks.Width = 53;
     //
     // fDeposit
     //
     this.fDeposit.Caption = "Deposit";
     this.fDeposit.FieldName = "fDeposit";
     this.fDeposit.Name = "fDeposit";
     this.fDeposit.Visible = true;
     this.fDeposit.VisibleIndex = 24;
     this.fDeposit.Width = 48;
     //
     // mBalance
     //
     this.mBalance.Caption = "Balance";
     this.mBalance.FieldName = "mBalance";
     this.mBalance.Name = "mBalance";
     this.mBalance.Visible = true;
     this.mBalance.VisibleIndex = 25;
     this.mBalance.Width = 49;
     //
     // strBillReferenceNo
     //
     this.strBillReferenceNo.Caption = "BillReferenceNo";
     this.strBillReferenceNo.FieldName = "strBillReferenceNo";
     this.strBillReferenceNo.Name = "strBillReferenceNo";
     this.strBillReferenceNo.Visible = true;
     this.strBillReferenceNo.VisibleIndex = 26;
     this.strBillReferenceNo.Width = 87;
     //
     // strLocation
     //
     this.strLocation.Caption = "Location";
     this.strLocation.FieldName = "strLocation";
     this.strLocation.Name = "strLocation";
     this.strLocation.Visible = true;
     this.strLocation.VisibleIndex = 27;
     this.strLocation.Width = 52;
     //
     // dtDateTime
     //
     this.dtDateTime.Caption = "DateTime";
     this.dtDateTime.FieldName = "dtDateTime";
     this.dtDateTime.Name = "dtDateTime";
     this.dtDateTime.Visible = true;
     this.dtDateTime.VisibleIndex = 28;
     this.dtDateTime.Width = 57;
     //
     // mUpgradeAmount
     //
     this.mUpgradeAmount.Caption = "UpgradeAmount";
     this.mUpgradeAmount.FieldName = "mUpgradeAmount";
     this.mUpgradeAmount.Name = "mUpgradeAmount";
     this.mUpgradeAmount.Visible = true;
     this.mUpgradeAmount.VisibleIndex = 29;
     this.mUpgradeAmount.Width = 90;
     //
     // fRefund
     //
     this.fRefund.Caption = "Refund";
     this.fRefund.FieldName = "fRefund";
     this.fRefund.Name = "fRefund";
     this.fRefund.Visible = true;
     this.fRefund.VisibleIndex = 30;
     this.fRefund.Width = 47;
     //
     // strChequeNo
     //
     this.strChequeNo.Caption = "ChequeNo";
     this.strChequeNo.FieldName = "strChequeNo";
     this.strChequeNo.Name = "strChequeNo";
     this.strChequeNo.Visible = true;
     this.strChequeNo.VisibleIndex = 31;
     this.strChequeNo.Width = 62;
     //
     // mRefundAmount
     //
     this.mRefundAmount.Caption = "RefundAmount";
     this.mRefundAmount.FieldName = "mRefundAmount";
     this.mRefundAmount.Name = "mRefundAmount";
     this.mRefundAmount.Visible = true;
     this.mRefundAmount.VisibleIndex = 32;
     this.mRefundAmount.Width = 84;
     //
     // nChequeUpdateBy
     //
     this.nChequeUpdateBy.Caption = "ChequeUpdateBy";
     this.nChequeUpdateBy.FieldName = "nChequeUpdateBy";
     this.nChequeUpdateBy.Name = "nChequeUpdateBy";
     this.nChequeUpdateBy.Visible = true;
     this.nChequeUpdateBy.VisibleIndex = 33;
     this.nChequeUpdateBy.Width = 96;
     //
     // mDiscountAmount
     //
     this.mDiscountAmount.Caption = "DiscountAmount";
     this.mDiscountAmount.FieldName = "mDiscountAmount";
     this.mDiscountAmount.Name = "mDiscountAmount";
     this.mDiscountAmount.Visible = true;
     this.mDiscountAmount.VisibleIndex = 34;
     this.mDiscountAmount.Width = 90;
     //
     // strSignedPDFPath
     //
     this.strSignedPDFPath.Caption = "SignedPDFPath";
     this.strSignedPDFPath.FieldName = "strSignedPDFPath";
     this.strSignedPDFPath.Name = "strSignedPDFPath";
     this.strSignedPDFPath.Visible = true;
     this.strSignedPDFPath.VisibleIndex = 35;
     this.strSignedPDFPath.Width = 85;
     //
     // imageList1
     //
     this.imageList1.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
     this.imageList1.TransparentColor = System.Drawing.Color.Magenta;
     this.imageList1.Images.SetKeyName(0, "");
     this.imageList1.Images.SetKeyName(1, "");
     this.imageList1.Images.SetKeyName(2, "");
     this.imageList1.Images.SetKeyName(3, "");
     this.imageList1.Images.SetKeyName(4, "");
     this.imageList1.Images.SetKeyName(5, "");
     this.imageList1.Images.SetKeyName(6, "");
     //
     // gridView1
     //
     this.gridView1.Name = "gridView1";
     //
     // frmReceipt
     //
     this.BackColor = System.Drawing.Color.White;
     this.ClientSize = new System.Drawing.Size(990, 560);
     this.Controls.Add(this.grpMdReceipt);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
     this.Name = "frmReceipt";
     this.Text = "frmReceipt";
     this.Load += new System.EventHandler(this.frmReceipt_Load);
     ((System.ComponentModel.ISupportInitialize)(this.grpMdReceipt)).EndInit();
     this.grpMdReceipt.ResumeLayout(false);
     this.Searchpanel.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.txtSearch.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ddlReceiptCategory.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tabCtrlMd_Freebie)).EndInit();
     this.tabCtrlMd_Freebie.ResumeLayout(false);
     this.xtraTabPage1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMd_Freebie)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMd_Freebie)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_RPClassType)).EndInit();
     this.xtraTabPage2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMd_Entries)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMd_Entries)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView3)).EndInit();
     this.xtraTabPage3.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMd_Payment)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMd_Payment)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEdit2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).EndInit();
     this.groupControl2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMd_Receipt)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMd_Receipt)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     this.ResumeLayout(false);
 }
Beispiel #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.tabRPCommission   = new DevExpress.XtraTab.XtraTabControl();
     this.xtraTabPage1      = new DevExpress.XtraTab.XtraTabPage();
     this.gcSalesCommission = 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.xtraTabPage2      = new DevExpress.XtraTab.XtraTabPage();
     this.gridControl2      = new DevExpress.XtraGrid.GridControl();
     this.gridView2         = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn8       = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn10      = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn12      = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn13      = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn14      = new DevExpress.XtraGrid.Columns.GridColumn();
     this.label1            = new System.Windows.Forms.Label();
     this.label2            = new System.Windows.Forms.Label();
     this.cmYear            = new DevExpress.XtraEditors.ImageComboBoxEdit();
     this.cmMonth           = new DevExpress.XtraEditors.ImageComboBoxEdit();
     this.label3            = new System.Windows.Forms.Label();
     this.sbtnEnquiry       = new DevExpress.XtraEditors.SimpleButton();
     this.lkedtEmployee     = new DevExpress.XtraEditors.LookUpEdit();
     ((System.ComponentModel.ISupportInitialize)(this.tabRPCommission)).BeginInit();
     this.tabRPCommission.SuspendLayout();
     this.xtraTabPage1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gcSalesCommission)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     this.xtraTabPage2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControl2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmYear.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmMonth.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkedtEmployee.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // tabRPCommission
     //
     this.tabRPCommission.Location          = new System.Drawing.Point(6, 40);
     this.tabRPCommission.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.tabRPCommission.LookAndFeel.UseDefaultLookAndFeel = false;
     this.tabRPCommission.Name            = "tabRPCommission";
     this.tabRPCommission.SelectedTabPage = this.xtraTabPage1;
     this.tabRPCommission.Size            = new System.Drawing.Size(960, 424);
     this.tabRPCommission.TabIndex        = 1;
     this.tabRPCommission.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
         this.xtraTabPage1,
         this.xtraTabPage2
     });
     this.tabRPCommission.Text = "xtraTabControl1";
     //
     // xtraTabPage1
     //
     this.xtraTabPage1.Controls.Add(this.gcSalesCommission);
     this.xtraTabPage1.Name = "xtraTabPage1";
     this.xtraTabPage1.Size = new System.Drawing.Size(954, 398);
     this.xtraTabPage1.Text = "Sales Commission";
     //
     // gcSalesCommission
     //
     this.gcSalesCommission.Dock = System.Windows.Forms.DockStyle.Fill;
     //
     // gcSalesCommission.EmbeddedNavigator
     //
     this.gcSalesCommission.EmbeddedNavigator.Name = "";
     this.gcSalesCommission.Location = new System.Drawing.Point(0, 0);
     this.gcSalesCommission.MainView = this.gridView1;
     this.gcSalesCommission.Name     = "gcSalesCommission";
     this.gcSalesCommission.Size     = new System.Drawing.Size(954, 398);
     this.gcSalesCommission.TabIndex = 1;
     this.gcSalesCommission.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.gridView1.GridControl = this.gcSalesCommission;
     this.gridView1.Name        = "gridView1";
     this.gridView1.OptionsBehavior.Editable         = false;
     this.gridView1.OptionsCustomization.AllowFilter = false;
     this.gridView1.OptionsCustomization.AllowSort   = false;
     this.gridView1.OptionsView.ShowGroupPanel       = false;
     //
     // gridColumn1
     //
     this.gridColumn1.Caption      = "Commission Code";
     this.gridColumn1.FieldName    = "strCommission";
     this.gridColumn1.Name         = "gridColumn1";
     this.gridColumn1.Visible      = true;
     this.gridColumn1.VisibleIndex = 0;
     //
     // gridColumn2
     //
     this.gridColumn2.Caption      = "Amount";
     this.gridColumn2.FieldName    = "mTotalCommission";
     this.gridColumn2.Name         = "gridColumn2";
     this.gridColumn2.Visible      = true;
     this.gridColumn2.VisibleIndex = 1;
     //
     // xtraTabPage2
     //
     this.xtraTabPage2.Controls.Add(this.gridControl2);
     this.xtraTabPage2.Name = "xtraTabPage2";
     this.xtraTabPage2.Size = new System.Drawing.Size(954, 398);
     this.xtraTabPage2.Text = "Service Commission";
     //
     // 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.Size     = new System.Drawing.Size(954, 398);
     this.gridControl2.TabIndex = 2;
     this.gridControl2.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
         this.gridView2
     });
     //
     // gridView2
     //
     this.gridView2.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
         this.gridColumn8,
         this.gridColumn10,
         this.gridColumn12,
         this.gridColumn13,
         this.gridColumn14
     });
     this.gridView2.GridControl = this.gridControl2;
     this.gridView2.Name        = "gridView2";
     this.gridView2.OptionsBehavior.Editable         = false;
     this.gridView2.OptionsCustomization.AllowFilter = false;
     this.gridView2.OptionsCustomization.AllowSort   = false;
     this.gridView2.OptionsView.ShowGroupPanel       = false;
     //
     // gridColumn8
     //
     this.gridColumn8.Caption      = "Date";
     this.gridColumn8.FieldName    = "dtDate";
     this.gridColumn8.Name         = "gridColumn8";
     this.gridColumn8.Visible      = true;
     this.gridColumn8.VisibleIndex = 0;
     this.gridColumn8.Width        = 85;
     //
     // gridColumn10
     //
     this.gridColumn10.Caption      = "Branch";
     this.gridColumn10.FieldName    = "strBranchCode";
     this.gridColumn10.Name         = "gridColumn10";
     this.gridColumn10.Visible      = true;
     this.gridColumn10.VisibleIndex = 1;
     this.gridColumn10.Width        = 89;
     //
     // gridColumn12
     //
     this.gridColumn12.Caption      = "Service Code";
     this.gridColumn12.FieldName    = "strServiceCode";
     this.gridColumn12.Name         = "gridColumn12";
     this.gridColumn12.Visible      = true;
     this.gridColumn12.VisibleIndex = 2;
     this.gridColumn12.Width        = 90;
     //
     // gridColumn13
     //
     this.gridColumn13.Caption      = "Service Description";
     this.gridColumn13.FieldName    = "strDescription";
     this.gridColumn13.Name         = "gridColumn13";
     this.gridColumn13.Visible      = true;
     this.gridColumn13.VisibleIndex = 3;
     this.gridColumn13.Width        = 93;
     //
     // gridColumn14
     //
     this.gridColumn14.Caption      = "Commission Amount";
     this.gridColumn14.FieldName    = "mCommission";
     this.gridColumn14.Name         = "gridColumn14";
     this.gridColumn14.Visible      = true;
     this.gridColumn14.VisibleIndex = 4;
     this.gridColumn14.Width        = 78;
     //
     // label1
     //
     this.label1.Font     = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label1.Location = new System.Drawing.Point(16, 8);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(64, 23);
     this.label1.TabIndex = 2;
     this.label1.Text     = "Year";
     //
     // label2
     //
     this.label2.Font     = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label2.Location = new System.Drawing.Point(208, 8);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(64, 23);
     this.label2.TabIndex = 3;
     this.label2.Text     = "Month";
     //
     // cmYear
     //
     this.cmYear.Location = new System.Drawing.Point(80, 8);
     this.cmYear.Name     = "cmYear";
     //
     // cmYear.Properties
     //
     this.cmYear.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.cmYear.Properties.Items.AddRange(new object[] {
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("2010", 2010, -1),
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("2011", 2011, -1),
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("2012", 2012, -1),
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("2013", 2013, -1)
     });
     this.cmYear.TabIndex = 4;
     //
     // cmMonth
     //
     this.cmMonth.Location = new System.Drawing.Point(272, 8);
     this.cmMonth.Name     = "cmMonth";
     //
     // cmMonth.Properties
     //
     this.cmMonth.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.cmMonth.Properties.Items.AddRange(new object[] {
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("1", 1, -1),
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("2", 2, -1),
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("3", 3, -1),
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("4", 4, -1),
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("5", 5, -1),
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("6", 6, -1),
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("7", 7, -1),
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("8", 8, -1),
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("9", 9, -1),
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("10", 10, -1),
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("11", 11, -1),
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("12", 12, -1)
     });
     this.cmMonth.TabIndex = 5;
     //
     // label3
     //
     this.label3.Font     = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label3.Location = new System.Drawing.Point(400, 8);
     this.label3.Name     = "label3";
     this.label3.Size     = new System.Drawing.Size(80, 23);
     this.label3.TabIndex = 6;
     this.label3.Text     = "Employee";
     //
     // sbtnEnquiry
     //
     this.sbtnEnquiry.Appearance.Font            = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.sbtnEnquiry.Appearance.Options.UseFont = true;
     this.sbtnEnquiry.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.sbtnEnquiry.Location    = new System.Drawing.Point(672, 8);
     this.sbtnEnquiry.Name        = "sbtnEnquiry";
     this.sbtnEnquiry.TabIndex    = 8;
     this.sbtnEnquiry.Text        = "Enquiry";
     this.sbtnEnquiry.Click      += new System.EventHandler(this.sbtnEnquiry_Click);
     //
     // lkedtEmployee
     //
     this.lkedtEmployee.EditValue = "";
     this.lkedtEmployee.Location  = new System.Drawing.Point(472, 8);
     this.lkedtEmployee.Name      = "lkedtEmployee";
     //
     // lkedtEmployee.Properties
     //
     this.lkedtEmployee.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.lkedtEmployee.Size     = new System.Drawing.Size(184, 20);
     this.lkedtEmployee.TabIndex = 16;
     //
     // RPCommission
     //
     this.AutoScale         = false;
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(978, 472);
     this.Controls.Add(this.lkedtEmployee);
     this.Controls.Add(this.sbtnEnquiry);
     this.Controls.Add(this.label3);
     this.Controls.Add(this.cmMonth);
     this.Controls.Add(this.cmYear);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.tabRPCommission);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
     this.Name            = "RPCommission";
     this.SizeGripStyle   = System.Windows.Forms.SizeGripStyle.Show;
     this.Text            = "Commission";
     this.Load           += new System.EventHandler(this.RPCommission_Load);
     ((System.ComponentModel.ISupportInitialize)(this.tabRPCommission)).EndInit();
     this.tabRPCommission.ResumeLayout(false);
     this.xtraTabPage1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gcSalesCommission)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     this.xtraTabPage2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControl2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmYear.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmMonth.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkedtEmployee.Properties)).EndInit();
     this.ResumeLayout(false);
 }
Beispiel #40
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.groupHdrIPP   = new DevExpress.XtraEditors.GroupControl();
     this.grpControlIPP = new DevExpress.XtraEditors.GroupControl();
     this.ucMemberID1   = new ACMS.ucMemberID();
     this.dateEdit1     = new DevExpress.XtraEditors.DateEdit();
     this.label6        = new System.Windows.Forms.Label();
     this.luedtBranch   = new DevExpress.XtraEditors.LookUpEdit();
     this.luedtBank     = new DevExpress.XtraEditors.LookUpEdit();
     this.IPPNMonths    = new DevExpress.XtraEditors.ImageComboBoxEdit();
     this.ToolTips      = new System.Windows.Forms.Label();
     this.txtMerchantNo = new DevExpress.XtraEditors.TextEdit();
     this.label3        = new System.Windows.Forms.Label();
     this.btnIPPCancel  = new DevExpress.XtraEditors.SimpleButton();
     this.label1        = new System.Windows.Forms.Label();
     this.btnSave       = new DevExpress.XtraEditors.SimpleButton();
     this.txtCreditCard = new DevExpress.XtraEditors.TextEdit();
     this.label5        = new System.Windows.Forms.Label();
     this.label4        = new System.Windows.Forms.Label();
     this.label2        = new System.Windows.Forms.Label();
     this.CreditCard    = new System.Windows.Forms.Label();
     ((System.ComponentModel.ISupportInitialize)(this.groupHdrIPP)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.grpControlIPP)).BeginInit();
     this.grpControlIPP.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dateEdit1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.luedtBranch.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.luedtBank.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPNMonths.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMerchantNo.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCreditCard.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // groupHdrIPP
     //
     this.groupHdrIPP.Appearance.BackColor            = System.Drawing.Color.Transparent;
     this.groupHdrIPP.Appearance.Options.UseBackColor = true;
     this.groupHdrIPP.BorderStyle       = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.groupHdrIPP.Location          = new System.Drawing.Point(0, -1);
     this.groupHdrIPP.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.groupHdrIPP.LookAndFeel.UseDefaultLookAndFeel = false;
     this.groupHdrIPP.Name     = "groupHdrIPP";
     this.groupHdrIPP.Size     = new System.Drawing.Size(472, 8);
     this.groupHdrIPP.TabIndex = 26;
     this.groupHdrIPP.Text     = "groupControl1";
     //
     // grpControlIPP
     //
     this.grpControlIPP.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.grpControlIPP.Controls.Add(this.ucMemberID1);
     this.grpControlIPP.Controls.Add(this.dateEdit1);
     this.grpControlIPP.Controls.Add(this.label6);
     this.grpControlIPP.Controls.Add(this.luedtBranch);
     this.grpControlIPP.Controls.Add(this.luedtBank);
     this.grpControlIPP.Controls.Add(this.IPPNMonths);
     this.grpControlIPP.Controls.Add(this.ToolTips);
     this.grpControlIPP.Controls.Add(this.txtMerchantNo);
     this.grpControlIPP.Controls.Add(this.label3);
     this.grpControlIPP.Controls.Add(this.btnIPPCancel);
     this.grpControlIPP.Controls.Add(this.label1);
     this.grpControlIPP.Controls.Add(this.btnSave);
     this.grpControlIPP.Controls.Add(this.txtCreditCard);
     this.grpControlIPP.Controls.Add(this.label5);
     this.grpControlIPP.Controls.Add(this.label4);
     this.grpControlIPP.Controls.Add(this.label2);
     this.grpControlIPP.Controls.Add(this.CreditCard);
     this.grpControlIPP.Location          = new System.Drawing.Point(0, 0);
     this.grpControlIPP.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.grpControlIPP.LookAndFeel.UseDefaultLookAndFeel = false;
     this.grpControlIPP.Name        = "grpControlIPP";
     this.grpControlIPP.ShowCaption = false;
     this.grpControlIPP.Size        = new System.Drawing.Size(472, 264);
     this.grpControlIPP.TabIndex    = 0;
     this.grpControlIPP.Text        = "groupControl1";
     //
     // ucMemberID1
     //
     this.ucMemberID1.EditValue        = "";
     this.ucMemberID1.EditValueChanged = null;
     this.ucMemberID1.Location         = new System.Drawing.Point(216, 24);
     this.ucMemberID1.Name             = "ucMemberID1";
     this.ucMemberID1.Size             = new System.Drawing.Size(182, 20);
     this.ucMemberID1.StrBranchCode    = null;
     this.ucMemberID1.TabIndex         = 168;
     //
     // dateEdit1
     //
     this.dateEdit1.EditValue = null;
     this.dateEdit1.Location  = new System.Drawing.Point(216, 176);
     this.dateEdit1.Name      = "dateEdit1";
     //
     // dateEdit1.Properties
     //
     this.dateEdit1.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Style3D;
     this.dateEdit1.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.dateEdit1.Properties.DisplayFormat.FormatString = "dd/MM/yyyy";
     this.dateEdit1.Properties.DisplayFormat.FormatType   = DevExpress.Utils.FormatType.Custom;
     this.dateEdit1.Properties.EditFormat.FormatString    = "dd/MM/yyyy";
     this.dateEdit1.Properties.EditFormat.FormatType      = DevExpress.Utils.FormatType.Custom;
     this.dateEdit1.Properties.Mask.EditMask = "dd/MM/yyyy";
     this.dateEdit1.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.DateTimeAdvancingCaret;
     this.dateEdit1.Size     = new System.Drawing.Size(128, 22);
     this.dateEdit1.TabIndex = 167;
     //
     // label6
     //
     this.label6.Font     = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label6.Location = new System.Drawing.Point(32, 176);
     this.label6.Name     = "label6";
     this.label6.Size     = new System.Drawing.Size(120, 16);
     this.label6.TabIndex = 166;
     this.label6.Text     = "Created Date";
     //
     // luedtBranch
     //
     this.luedtBranch.Location = new System.Drawing.Point(216, 72);
     this.luedtBranch.Name     = "luedtBranch";
     //
     // luedtBranch.Properties
     //
     this.luedtBranch.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Style3D;
     this.luedtBranch.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.luedtBranch.Size              = new System.Drawing.Size(168, 22);
     this.luedtBranch.TabIndex          = 2;
     this.luedtBranch.EditValueChanged += new System.EventHandler(this.luedtBranch_EditValueChanged);
     //
     // luedtBank
     //
     this.luedtBank.Location = new System.Drawing.Point(216, 48);
     this.luedtBank.Name     = "luedtBank";
     //
     // luedtBank.Properties
     //
     this.luedtBank.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Style3D;
     this.luedtBank.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.luedtBank.Size              = new System.Drawing.Size(168, 22);
     this.luedtBank.TabIndex          = 1;
     this.luedtBank.EditValueChanged += new System.EventHandler(this.luedtBank_EditValueChanged);
     //
     // IPPNMonths
     //
     this.IPPNMonths.Location = new System.Drawing.Point(216, 144);
     this.IPPNMonths.Name     = "IPPNMonths";
     //
     // IPPNMonths.Properties
     //
     this.IPPNMonths.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Style3D;
     this.IPPNMonths.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.IPPNMonths.Properties.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.IPPNMonths.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.IPPNMonths.Size     = new System.Drawing.Size(168, 22);
     this.IPPNMonths.TabIndex = 5;
     //
     // ToolTips
     //
     this.ToolTips.Font      = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.ToolTips.ForeColor = System.Drawing.Color.CornflowerBlue;
     this.ToolTips.Location  = new System.Drawing.Point(216, 8);
     this.ToolTips.Name      = "ToolTips";
     this.ToolTips.Size      = new System.Drawing.Size(184, 16);
     this.ToolTips.TabIndex  = 165;
     this.ToolTips.Text      = "Use Member Search Tools for Input";
     this.ToolTips.Visible   = false;
     //
     // txtMerchantNo
     //
     this.txtMerchantNo.AllowDrop = true;
     this.txtMerchantNo.EditValue = "";
     this.txtMerchantNo.Enabled   = false;
     this.txtMerchantNo.Location  = new System.Drawing.Point(216, 96);
     this.txtMerchantNo.Name      = "txtMerchantNo";
     //
     // txtMerchantNo.Properties
     //
     this.txtMerchantNo.Properties.Appearance.Font            = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.txtMerchantNo.Properties.Appearance.Options.UseFont = true;
     this.txtMerchantNo.Properties.BorderStyle       = DevExpress.XtraEditors.Controls.BorderStyles.Style3D;
     this.txtMerchantNo.Properties.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.txtMerchantNo.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.txtMerchantNo.Properties.MaxLength = 19;
     this.txtMerchantNo.Properties.ReadOnly  = true;
     this.txtMerchantNo.Size     = new System.Drawing.Size(168, 22);
     this.txtMerchantNo.TabIndex = 3;
     //
     // label3
     //
     this.label3.Font     = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label3.Location = new System.Drawing.Point(32, 96);
     this.label3.Name     = "label3";
     this.label3.TabIndex = 163;
     this.label3.Text     = "Merchant No";
     //
     // btnIPPCancel
     //
     this.btnIPPCancel.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnIPPCancel.Location    = new System.Drawing.Point(384, 208);
     this.btnIPPCancel.Name        = "btnIPPCancel";
     this.btnIPPCancel.TabIndex    = 7;
     this.btnIPPCancel.Text        = "Cancel";
     this.btnIPPCancel.Click      += new System.EventHandler(this.btnIPPCancel_Click);
     //
     // 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(32, 72);
     this.label1.Name     = "label1";
     this.label1.TabIndex = 34;
     this.label1.Text     = "Branch Code";
     //
     // btnSave
     //
     this.btnSave.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnSave.Location    = new System.Drawing.Point(296, 208);
     this.btnSave.Name        = "btnSave";
     this.btnSave.Size        = new System.Drawing.Size(80, 24);
     this.btnSave.TabIndex    = 6;
     this.btnSave.Text        = "Save";
     this.btnSave.Click      += new System.EventHandler(this.btnSave_Click);
     //
     // txtCreditCard
     //
     this.txtCreditCard.AllowDrop = true;
     this.txtCreditCard.EditValue = "____-____-____-____";
     this.txtCreditCard.Location  = new System.Drawing.Point(216, 120);
     this.txtCreditCard.Name      = "txtCreditCard";
     //
     // txtCreditCard.Properties
     //
     this.txtCreditCard.Properties.Appearance.Font            = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.txtCreditCard.Properties.Appearance.Options.UseFont = true;
     this.txtCreditCard.Properties.BorderStyle       = DevExpress.XtraEditors.Controls.BorderStyles.Style3D;
     this.txtCreditCard.Properties.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.txtCreditCard.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.txtCreditCard.Properties.Mask.EditMask        = "\\d{4}-\\d{4}-\\d{4}-\\d{4}";
     this.txtCreditCard.Properties.Mask.IgnoreMaskBlank = false;
     this.txtCreditCard.Properties.Mask.MaskType        = DevExpress.XtraEditors.Mask.MaskType.Regular;
     this.txtCreditCard.Properties.MaxLength            = 19;
     this.txtCreditCard.Size     = new System.Drawing.Size(168, 22);
     this.txtCreditCard.TabIndex = 4;
     //
     // label5
     //
     this.label5.Font     = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label5.Location = new System.Drawing.Point(32, 24);
     this.label5.Name     = "label5";
     this.label5.Size     = new System.Drawing.Size(104, 23);
     this.label5.TabIndex = 30;
     this.label5.Text     = "Member ID";
     //
     // label4
     //
     this.label4.Font     = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label4.Location = new System.Drawing.Point(32, 48);
     this.label4.Name     = "label4";
     this.label4.TabIndex = 28;
     this.label4.Text     = "Bank Code";
     //
     // label2
     //
     this.label2.Font     = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label2.Location = new System.Drawing.Point(32, 144);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(120, 16);
     this.label2.TabIndex = 27;
     this.label2.Text     = "Number of Months";
     //
     // CreditCard
     //
     this.CreditCard.Font     = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.CreditCard.Location = new System.Drawing.Point(32, 120);
     this.CreditCard.Name     = "CreditCard";
     this.CreditCard.TabIndex = 26;
     this.CreditCard.Text     = "Credit Card No";
     //
     // frmIPP_Add
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(472, 238);
     this.Controls.Add(this.grpControlIPP);
     this.Controls.Add(this.groupHdrIPP);
     this.Name  = "frmIPP_Add";
     this.Text  = "IPP Details";
     this.Load += new System.EventHandler(this.frmIPP_Add_Load);
     ((System.ComponentModel.ISupportInitialize)(this.groupHdrIPP)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.grpControlIPP)).EndInit();
     this.grpControlIPP.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.dateEdit1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.luedtBranch.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.luedtBank.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPNMonths.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMerchantNo.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCreditCard.Properties)).EndInit();
     this.ResumeLayout(false);
 }
Beispiel #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.label1 = new System.Windows.Forms.Label();
     this.cmbBranch = new DevExpress.XtraEditors.ImageComboBoxEdit();
     this.groupControl1 = new DevExpress.XtraEditors.GroupControl();
     this.panelSun = new System.Windows.Forms.Panel();
     this.panelMonday = new System.Windows.Forms.Panel();
     this.lblMon = new System.Windows.Forms.Label();
     this.txtMonday = new System.Windows.Forms.Label();
     this.panel4 = new System.Windows.Forms.Panel();
     this.lblTUE = new System.Windows.Forms.Label();
     this.txtTUE = new System.Windows.Forms.Label();
     this.panelFriday = new System.Windows.Forms.Panel();
     this.lblFRI = new System.Windows.Forms.Label();
     this.txtFriday = new System.Windows.Forms.Label();
     this.panelSat = new System.Windows.Forms.Panel();
     this.panelFri = new System.Windows.Forms.Panel();
     this.panelThu = new System.Windows.Forms.Panel();
     this.panelWed = new System.Windows.Forms.Panel();
     this.panelTue = new System.Windows.Forms.Panel();
     this.panelMon = new System.Windows.Forms.Panel();
     this.panelWednesday = new System.Windows.Forms.Panel();
     this.lblWED = new System.Windows.Forms.Label();
     this.txtWED = new System.Windows.Forms.Label();
     this.panelThursday = new System.Windows.Forms.Panel();
     this.lblThu = new System.Windows.Forms.Label();
     this.txtThur = new System.Windows.Forms.Label();
     this.panelSaturday = new System.Windows.Forms.Panel();
     this.lblSAT = new System.Windows.Forms.Label();
     this.txtSAT = new System.Windows.Forms.Label();
     this.panelSunday = new System.Windows.Forms.Panel();
     this.lblSUN = new System.Windows.Forms.Label();
     this.txtSunday = new System.Windows.Forms.Label();
     this.btnNextWeek = new DevExpress.XtraEditors.SimpleButton();
     this.btnPastWeek = new DevExpress.XtraEditors.SimpleButton();
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.dtClassDate = new System.Windows.Forms.MonthCalendar();
     ((System.ComponentModel.ISupportInitialize)(this.cmbBranch.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     this.panelMonday.SuspendLayout();
     this.panel4.SuspendLayout();
     this.panelFriday.SuspendLayout();
     this.panelWednesday.SuspendLayout();
     this.panelThursday.SuspendLayout();
     this.panelSaturday.SuspendLayout();
     this.panelSunday.SuspendLayout();
     this.groupBox1.SuspendLayout();
     this.SuspendLayout();
     //
     // label1
     //
     this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.5F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label1.Location = new System.Drawing.Point(16, 93);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(56, 40);
     this.label1.TabIndex = 52;
     this.label1.Text = "Branch";
     this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // cmbBranch
     //
     this.cmbBranch.Location = new System.Drawing.Point(80, 104);
     this.cmbBranch.Name = "cmbBranch";
     this.cmbBranch.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cmbBranch.Size = new System.Drawing.Size(176, 20);
     this.cmbBranch.TabIndex = 51;
     this.cmbBranch.SelectedValueChanged += new System.EventHandler(this.cmbBranch_SelectedValueChanged);
     //
     // groupControl1
     //
     this.groupControl1.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.groupControl1.Appearance.Options.UseBackColor = true;
     this.groupControl1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.groupControl1.Controls.Add(this.panelSun);
     this.groupControl1.Controls.Add(this.panelMonday);
     this.groupControl1.Controls.Add(this.panel4);
     this.groupControl1.Controls.Add(this.panelFriday);
     this.groupControl1.Controls.Add(this.panelSat);
     this.groupControl1.Controls.Add(this.panelFri);
     this.groupControl1.Controls.Add(this.panelThu);
     this.groupControl1.Controls.Add(this.panelWed);
     this.groupControl1.Controls.Add(this.panelTue);
     this.groupControl1.Controls.Add(this.panelMon);
     this.groupControl1.Controls.Add(this.panelWednesday);
     this.groupControl1.Controls.Add(this.panelThursday);
     this.groupControl1.Controls.Add(this.panelSaturday);
     this.groupControl1.Controls.Add(this.panelSunday);
     this.groupControl1.Location = new System.Drawing.Point(0, 120);
     this.groupControl1.LookAndFeel.UseDefaultLookAndFeel = false;
     this.groupControl1.Name = "groupControl1";
     this.groupControl1.ShowCaption = false;
     this.groupControl1.Size = new System.Drawing.Size(912, 568);
     this.groupControl1.TabIndex = 32;
     //
     // panelSun
     //
     this.panelSun.BackColor = System.Drawing.Color.Transparent;
     this.panelSun.Location = new System.Drawing.Point(8, 56);
     this.panelSun.Name = "panelSun";
     this.panelSun.Size = new System.Drawing.Size(128, 480);
     this.panelSun.TabIndex = 55;
     //
     // panelMonday
     //
     this.panelMonday.BackColor = System.Drawing.Color.WhiteSmoke;
     this.panelMonday.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.panelMonday.Controls.Add(this.lblMon);
     this.panelMonday.Controls.Add(this.txtMonday);
     this.panelMonday.Location = new System.Drawing.Point(136, 24);
     this.panelMonday.Name = "panelMonday";
     this.panelMonday.Size = new System.Drawing.Size(128, 32);
     this.panelMonday.TabIndex = 54;
     //
     // lblMon
     //
     this.lblMon.BackColor = System.Drawing.Color.PowderBlue;
     this.lblMon.Font = new System.Drawing.Font("Tahoma", 6.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblMon.Location = new System.Drawing.Point(0, 0);
     this.lblMon.Name = "lblMon";
     this.lblMon.Size = new System.Drawing.Size(128, 16);
     this.lblMon.TabIndex = 1;
     this.lblMon.Text = "MON";
     this.lblMon.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // txtMonday
     //
     this.txtMonday.BackColor = System.Drawing.Color.PowderBlue;
     this.txtMonday.Font = new System.Drawing.Font("Tahoma", 6.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtMonday.Location = new System.Drawing.Point(0, 16);
     this.txtMonday.Name = "txtMonday";
     this.txtMonday.Size = new System.Drawing.Size(128, 16);
     this.txtMonday.TabIndex = 2;
     this.txtMonday.Text = "17/6/2005";
     this.txtMonday.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // panel4
     //
     this.panel4.BackColor = System.Drawing.Color.WhiteSmoke;
     this.panel4.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.panel4.Controls.Add(this.lblTUE);
     this.panel4.Controls.Add(this.txtTUE);
     this.panel4.Location = new System.Drawing.Point(264, 24);
     this.panel4.Name = "panel4";
     this.panel4.Size = new System.Drawing.Size(128, 32);
     this.panel4.TabIndex = 52;
     //
     // lblTUE
     //
     this.lblTUE.BackColor = System.Drawing.Color.PowderBlue;
     this.lblTUE.Font = new System.Drawing.Font("Tahoma", 6.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblTUE.Location = new System.Drawing.Point(0, 0);
     this.lblTUE.Name = "lblTUE";
     this.lblTUE.Size = new System.Drawing.Size(128, 16);
     this.lblTUE.TabIndex = 1;
     this.lblTUE.Text = "TUE";
     this.lblTUE.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // txtTUE
     //
     this.txtTUE.BackColor = System.Drawing.Color.PowderBlue;
     this.txtTUE.Font = new System.Drawing.Font("Tahoma", 6.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtTUE.Location = new System.Drawing.Point(0, 16);
     this.txtTUE.Name = "txtTUE";
     this.txtTUE.Size = new System.Drawing.Size(128, 16);
     this.txtTUE.TabIndex = 2;
     this.txtTUE.Text = "17/6/2005";
     this.txtTUE.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // panelFriday
     //
     this.panelFriday.BackColor = System.Drawing.Color.WhiteSmoke;
     this.panelFriday.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.panelFriday.Controls.Add(this.lblFRI);
     this.panelFriday.Controls.Add(this.txtFriday);
     this.panelFriday.Location = new System.Drawing.Point(648, 24);
     this.panelFriday.Name = "panelFriday";
     this.panelFriday.Size = new System.Drawing.Size(128, 32);
     this.panelFriday.TabIndex = 48;
     //
     // lblFRI
     //
     this.lblFRI.BackColor = System.Drawing.Color.PowderBlue;
     this.lblFRI.Font = new System.Drawing.Font("Tahoma", 6.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblFRI.Location = new System.Drawing.Point(0, 0);
     this.lblFRI.Name = "lblFRI";
     this.lblFRI.Size = new System.Drawing.Size(128, 16);
     this.lblFRI.TabIndex = 1;
     this.lblFRI.Text = "FRI";
     this.lblFRI.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // txtFriday
     //
     this.txtFriday.BackColor = System.Drawing.Color.PowderBlue;
     this.txtFriday.Font = new System.Drawing.Font("Tahoma", 6.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtFriday.Location = new System.Drawing.Point(0, 16);
     this.txtFriday.Name = "txtFriday";
     this.txtFriday.Size = new System.Drawing.Size(128, 16);
     this.txtFriday.TabIndex = 2;
     this.txtFriday.Text = "17/6/2005";
     this.txtFriday.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // panelSat
     //
     this.panelSat.BackColor = System.Drawing.Color.Transparent;
     this.panelSat.Location = new System.Drawing.Point(776, 56);
     this.panelSat.Name = "panelSat";
     this.panelSat.Size = new System.Drawing.Size(128, 480);
     this.panelSat.TabIndex = 42;
     //
     // panelFri
     //
     this.panelFri.BackColor = System.Drawing.Color.Transparent;
     this.panelFri.Location = new System.Drawing.Point(648, 56);
     this.panelFri.Name = "panelFri";
     this.panelFri.Size = new System.Drawing.Size(128, 480);
     this.panelFri.TabIndex = 37;
     //
     // panelThu
     //
     this.panelThu.BackColor = System.Drawing.Color.Transparent;
     this.panelThu.Location = new System.Drawing.Point(520, 56);
     this.panelThu.Name = "panelThu";
     this.panelThu.Size = new System.Drawing.Size(128, 480);
     this.panelThu.TabIndex = 36;
     //
     // panelWed
     //
     this.panelWed.BackColor = System.Drawing.Color.Transparent;
     this.panelWed.Location = new System.Drawing.Point(392, 56);
     this.panelWed.Name = "panelWed";
     this.panelWed.Size = new System.Drawing.Size(128, 480);
     this.panelWed.TabIndex = 35;
     //
     // panelTue
     //
     this.panelTue.BackColor = System.Drawing.Color.Transparent;
     this.panelTue.Location = new System.Drawing.Point(264, 56);
     this.panelTue.Name = "panelTue";
     this.panelTue.Size = new System.Drawing.Size(128, 480);
     this.panelTue.TabIndex = 34;
     this.panelTue.Paint += new System.Windows.Forms.PaintEventHandler(this.panelTue_Paint);
     //
     // panelMon
     //
     this.panelMon.BackColor = System.Drawing.Color.Transparent;
     this.panelMon.Location = new System.Drawing.Point(136, 56);
     this.panelMon.Name = "panelMon";
     this.panelMon.Size = new System.Drawing.Size(128, 480);
     this.panelMon.TabIndex = 33;
     //
     // panelWednesday
     //
     this.panelWednesday.BackColor = System.Drawing.Color.WhiteSmoke;
     this.panelWednesday.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.panelWednesday.Controls.Add(this.lblWED);
     this.panelWednesday.Controls.Add(this.txtWED);
     this.panelWednesday.Location = new System.Drawing.Point(392, 24);
     this.panelWednesday.Name = "panelWednesday";
     this.panelWednesday.Size = new System.Drawing.Size(128, 32);
     this.panelWednesday.TabIndex = 51;
     //
     // lblWED
     //
     this.lblWED.BackColor = System.Drawing.Color.PowderBlue;
     this.lblWED.Font = new System.Drawing.Font("Tahoma", 6.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblWED.Location = new System.Drawing.Point(0, 0);
     this.lblWED.Name = "lblWED";
     this.lblWED.Size = new System.Drawing.Size(128, 16);
     this.lblWED.TabIndex = 1;
     this.lblWED.Text = "WED";
     this.lblWED.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // txtWED
     //
     this.txtWED.BackColor = System.Drawing.Color.PowderBlue;
     this.txtWED.Font = new System.Drawing.Font("Tahoma", 6.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtWED.Location = new System.Drawing.Point(0, 16);
     this.txtWED.Name = "txtWED";
     this.txtWED.Size = new System.Drawing.Size(128, 16);
     this.txtWED.TabIndex = 2;
     this.txtWED.Text = "17/6/2005";
     this.txtWED.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // panelThursday
     //
     this.panelThursday.BackColor = System.Drawing.Color.WhiteSmoke;
     this.panelThursday.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.panelThursday.Controls.Add(this.lblThu);
     this.panelThursday.Controls.Add(this.txtThur);
     this.panelThursday.Location = new System.Drawing.Point(520, 24);
     this.panelThursday.Name = "panelThursday";
     this.panelThursday.Size = new System.Drawing.Size(128, 32);
     this.panelThursday.TabIndex = 51;
     //
     // lblThu
     //
     this.lblThu.BackColor = System.Drawing.Color.PowderBlue;
     this.lblThu.Font = new System.Drawing.Font("Tahoma", 6.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblThu.Location = new System.Drawing.Point(0, 0);
     this.lblThu.Name = "lblThu";
     this.lblThu.Size = new System.Drawing.Size(128, 16);
     this.lblThu.TabIndex = 1;
     this.lblThu.Text = "THU";
     this.lblThu.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // txtThur
     //
     this.txtThur.BackColor = System.Drawing.Color.PowderBlue;
     this.txtThur.Font = new System.Drawing.Font("Tahoma", 6.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtThur.Location = new System.Drawing.Point(0, 16);
     this.txtThur.Name = "txtThur";
     this.txtThur.Size = new System.Drawing.Size(128, 16);
     this.txtThur.TabIndex = 2;
     this.txtThur.Text = "17/6/2005";
     this.txtThur.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // panelSaturday
     //
     this.panelSaturday.BackColor = System.Drawing.Color.WhiteSmoke;
     this.panelSaturday.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.panelSaturday.Controls.Add(this.lblSAT);
     this.panelSaturday.Controls.Add(this.txtSAT);
     this.panelSaturday.Location = new System.Drawing.Point(776, 24);
     this.panelSaturday.Name = "panelSaturday";
     this.panelSaturday.Size = new System.Drawing.Size(128, 32);
     this.panelSaturday.TabIndex = 50;
     //
     // lblSAT
     //
     this.lblSAT.BackColor = System.Drawing.Color.PowderBlue;
     this.lblSAT.Font = new System.Drawing.Font("Tahoma", 6.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblSAT.Location = new System.Drawing.Point(0, 0);
     this.lblSAT.Name = "lblSAT";
     this.lblSAT.Size = new System.Drawing.Size(128, 16);
     this.lblSAT.TabIndex = 1;
     this.lblSAT.Text = "SAT";
     this.lblSAT.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // txtSAT
     //
     this.txtSAT.BackColor = System.Drawing.Color.PowderBlue;
     this.txtSAT.Font = new System.Drawing.Font("Tahoma", 6.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtSAT.Location = new System.Drawing.Point(0, 16);
     this.txtSAT.Name = "txtSAT";
     this.txtSAT.Size = new System.Drawing.Size(128, 16);
     this.txtSAT.TabIndex = 2;
     this.txtSAT.Text = "17/6/2005";
     this.txtSAT.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // panelSunday
     //
     this.panelSunday.BackColor = System.Drawing.Color.WhiteSmoke;
     this.panelSunday.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.panelSunday.Controls.Add(this.lblSUN);
     this.panelSunday.Controls.Add(this.txtSunday);
     this.panelSunday.Location = new System.Drawing.Point(8, 24);
     this.panelSunday.Name = "panelSunday";
     this.panelSunday.Size = new System.Drawing.Size(128, 32);
     this.panelSunday.TabIndex = 52;
     //
     // lblSUN
     //
     this.lblSUN.BackColor = System.Drawing.Color.PowderBlue;
     this.lblSUN.Font = new System.Drawing.Font("Tahoma", 6.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblSUN.Location = new System.Drawing.Point(0, 0);
     this.lblSUN.Name = "lblSUN";
     this.lblSUN.Size = new System.Drawing.Size(128, 16);
     this.lblSUN.TabIndex = 1;
     this.lblSUN.Text = "SUN";
     this.lblSUN.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // txtSunday
     //
     this.txtSunday.BackColor = System.Drawing.Color.PowderBlue;
     this.txtSunday.Font = new System.Drawing.Font("Tahoma", 6.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtSunday.Location = new System.Drawing.Point(0, 16);
     this.txtSunday.Name = "txtSunday";
     this.txtSunday.Size = new System.Drawing.Size(128, 16);
     this.txtSunday.TabIndex = 2;
     this.txtSunday.Text = "17/6/2005";
     this.txtSunday.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // btnNextWeek
     //
     this.btnNextWeek.Appearance.BackColor = System.Drawing.Color.LightGray;
     this.btnNextWeek.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.btnNextWeek.Appearance.Options.UseBackColor = true;
     this.btnNextWeek.Appearance.Options.UseFont = true;
     this.btnNextWeek.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnNextWeek.Location = new System.Drawing.Point(683, 88);
     this.btnNextWeek.Name = "btnNextWeek";
     this.btnNextWeek.Size = new System.Drawing.Size(96, 40);
     this.btnNextWeek.TabIndex = 47;
     this.btnNextWeek.Text = "Next >>";
     this.btnNextWeek.Click += new System.EventHandler(this.btnNextWeek_Click);
     //
     // btnPastWeek
     //
     this.btnPastWeek.Appearance.BackColor = System.Drawing.Color.LightGray;
     this.btnPastWeek.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.btnPastWeek.Appearance.Options.UseBackColor = true;
     this.btnPastWeek.Appearance.Options.UseFont = true;
     this.btnPastWeek.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnPastWeek.Location = new System.Drawing.Point(352, 88);
     this.btnPastWeek.Name = "btnPastWeek";
     this.btnPastWeek.Size = new System.Drawing.Size(96, 40);
     this.btnPastWeek.TabIndex = 46;
     this.btnPastWeek.Text = "<< Previous";
     this.btnPastWeek.Click += new System.EventHandler(this.btnPastWeek_Click);
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.dtClassDate);
     this.groupBox1.Controls.Add(this.cmbBranch);
     this.groupBox1.Controls.Add(this.label1);
     this.groupBox1.Controls.Add(this.btnPastWeek);
     this.groupBox1.Controls.Add(this.btnNextWeek);
     this.groupBox1.Location = new System.Drawing.Point(0, 0);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Size = new System.Drawing.Size(912, 136);
     this.groupBox1.TabIndex = 58;
     this.groupBox1.TabStop = false;
     //
     // dtClassDate
     //
     this.dtClassDate.Location = new System.Drawing.Point(472, 0);
     this.dtClassDate.Name = "dtClassDate";
     this.dtClassDate.TabIndex = 56;
     this.dtClassDate.DateChanged += new System.Windows.Forms.DateRangeEventHandler(this.dtClassDate_DateChanged);
     //
     // RPClassAnalysis
     //
     this.AutoScroll = true;
     this.ClientSize = new System.Drawing.Size(928, 592);
     this.Controls.Add(this.groupBox1);
     this.Controls.Add(this.groupControl1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
     this.Name = "RPClassAnalysis";
     this.Text = "Class Analysis";
     this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
     this.Load += new System.EventHandler(this.RPClassAnalysis_Load);
     ((System.ComponentModel.ISupportInitialize)(this.cmbBranch.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     this.panelMonday.ResumeLayout(false);
     this.panel4.ResumeLayout(false);
     this.panelFriday.ResumeLayout(false);
     this.panelWednesday.ResumeLayout(false);
     this.panelThursday.ResumeLayout(false);
     this.panelSaturday.ResumeLayout(false);
     this.panelSunday.ResumeLayout(false);
     this.groupBox1.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Beispiel #42
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.groupOverTime = new DevExpress.XtraEditors.GroupControl();
     this.btnClear = new DevExpress.XtraEditors.SimpleButton();
     this.btnViewAll = new DevExpress.XtraEditors.SimpleButton();
     this.groupControl1 = new DevExpress.XtraEditors.GroupControl();
     this.prevToMonth = new DevExpress.XtraEditors.ImageComboBoxEdit();
     this.prevFromMonth = new DevExpress.XtraEditors.ImageComboBoxEdit();
     this.btnPrevGo = new DevExpress.XtraEditors.SimpleButton();
     this.label5 = new System.Windows.Forms.Label();
     this.label4 = new System.Windows.Forms.Label();
     this.prevToYear = new DevExpress.XtraEditors.ImageComboBoxEdit();
     this.prevFromYear = new DevExpress.XtraEditors.ImageComboBoxEdit();
     this.cmbBranch = new DevExpress.XtraEditors.ImageComboBoxEdit();
     this.label25 = new System.Windows.Forms.Label();
     this.OvertimeStatus = new DevExpress.XtraEditors.ImageComboBoxEdit();
     this.label151 = new System.Windows.Forms.Label();
     this.gridOverTime = new DevExpress.XtraGrid.GridControl();
     this.gridViewOverTime = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn69 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn62 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn63 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn4 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.btnApprove = new DevExpress.XtraEditors.SimpleButton();
     this.btnReject = new DevExpress.XtraEditors.SimpleButton();
     ((System.ComponentModel.ISupportInitialize)(this.groupOverTime)).BeginInit();
     this.groupOverTime.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.prevToMonth.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.prevFromMonth.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.prevToYear.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.prevFromYear.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbBranch.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.OvertimeStatus.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridOverTime)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewOverTime)).BeginInit();
     this.SuspendLayout();
     //
     // groupOverTime
     //
     this.groupOverTime.Appearance.BackColor = System.Drawing.SystemColors.Control;
     this.groupOverTime.Appearance.Options.UseBackColor = true;
     this.groupOverTime.Controls.Add(this.btnClear);
     this.groupOverTime.Controls.Add(this.btnViewAll);
     this.groupOverTime.Controls.Add(this.groupControl1);
     this.groupOverTime.Controls.Add(this.cmbBranch);
     this.groupOverTime.Controls.Add(this.label25);
     this.groupOverTime.Controls.Add(this.OvertimeStatus);
     this.groupOverTime.Controls.Add(this.label151);
     this.groupOverTime.Controls.Add(this.gridOverTime);
     this.groupOverTime.Controls.Add(this.btnApprove);
     this.groupOverTime.Controls.Add(this.btnReject);
     this.groupOverTime.Dock = System.Windows.Forms.DockStyle.Fill;
     this.groupOverTime.Location = new System.Drawing.Point(0, 0);
     this.groupOverTime.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.groupOverTime.LookAndFeel.UseDefaultLookAndFeel = false;
     this.groupOverTime.Name = "groupOverTime";
     this.groupOverTime.Size = new System.Drawing.Size(992, 568);
     this.groupOverTime.TabIndex = 27;
     this.groupOverTime.Text = "Public Holiday";
     //
     // btnClear
     //
     this.btnClear.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnClear.Appearance.Options.UseFont = true;
     this.btnClear.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnClear.Location = new System.Drawing.Point(702, 88);
     this.btnClear.Name = "btnClear";
     this.btnClear.Size = new System.Drawing.Size(112, 20);
     this.btnClear.TabIndex = 183;
     this.btnClear.Text = "Clear OT Balance";
     this.btnClear.Visible = false;
     this.btnClear.Click += new System.EventHandler(this.btnClear_Click);
     //
     // btnViewAll
     //
     this.btnViewAll.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnViewAll.Appearance.Options.UseFont = true;
     this.btnViewAll.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnViewAll.Location = new System.Drawing.Point(464, 88);
     this.btnViewAll.Name = "btnViewAll";
     this.btnViewAll.Size = new System.Drawing.Size(72, 20);
     this.btnViewAll.TabIndex = 182;
     this.btnViewAll.Text = "View All";
     this.btnViewAll.Click += new System.EventHandler(this.btnViewAll_Click);
     //
     // groupControl1
     //
     this.groupControl1.Controls.Add(this.prevToMonth);
     this.groupControl1.Controls.Add(this.prevFromMonth);
     this.groupControl1.Controls.Add(this.btnPrevGo);
     this.groupControl1.Controls.Add(this.label5);
     this.groupControl1.Controls.Add(this.label4);
     this.groupControl1.Controls.Add(this.prevToYear);
     this.groupControl1.Controls.Add(this.prevFromYear);
     this.groupControl1.Location = new System.Drawing.Point(16, 32);
     this.groupControl1.LookAndFeel.UseDefaultLookAndFeel = false;
     this.groupControl1.Name = "groupControl1";
     this.groupControl1.Size = new System.Drawing.Size(560, 48);
     this.groupControl1.TabIndex = 181;
     //
     // prevToMonth
     //
     this.prevToMonth.Location = new System.Drawing.Point(272, 16);
     this.prevToMonth.Name = "prevToMonth";
     this.prevToMonth.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.prevToMonth.Properties.Items.AddRange(new DevExpress.XtraEditors.Controls.ImageComboBoxItem[] {
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("January", 1, -1),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("February", 2, -1),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("March", 3, -1),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("April", 4, -1),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("May", 5, -1),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("June", 6, -1),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("July", 7, -1),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("August", 8, -1),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("September", 9, -1),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("October", 10, -1),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("November", 11, -1),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("December", 12, -1)});
     this.prevToMonth.Size = new System.Drawing.Size(72, 20);
     this.prevToMonth.TabIndex = 56;
     //
     // prevFromMonth
     //
     this.prevFromMonth.Location = new System.Drawing.Point(64, 16);
     this.prevFromMonth.Name = "prevFromMonth";
     this.prevFromMonth.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.prevFromMonth.Properties.Items.AddRange(new DevExpress.XtraEditors.Controls.ImageComboBoxItem[] {
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("January", 1, -1),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("February", 2, -1),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("March", 3, -1),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("April", 4, -1),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("May", 5, -1),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("June", 6, -1),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("July", 7, -1),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("August", 8, -1),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("September", 9, -1),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("October", 10, -1),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("November", 11, -1),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("December", 12, -1)});
     this.prevFromMonth.Size = new System.Drawing.Size(72, 20);
     this.prevFromMonth.TabIndex = 55;
     //
     // btnPrevGo
     //
     this.btnPrevGo.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnPrevGo.Appearance.Options.UseFont = true;
     this.btnPrevGo.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnPrevGo.Location = new System.Drawing.Point(448, 16);
     this.btnPrevGo.Name = "btnPrevGo";
     this.btnPrevGo.Size = new System.Drawing.Size(72, 20);
     this.btnPrevGo.TabIndex = 54;
     this.btnPrevGo.Text = "Go";
     this.btnPrevGo.Click += new System.EventHandler(this.btnPrevGo_Click);
     //
     // label5
     //
     this.label5.BackColor = System.Drawing.Color.Transparent;
     this.label5.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label5.Location = new System.Drawing.Point(240, 16);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(24, 16);
     this.label5.TabIndex = 53;
     this.label5.Text = "To";
     //
     // label4
     //
     this.label4.BackColor = System.Drawing.Color.Transparent;
     this.label4.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label4.Location = new System.Drawing.Point(16, 16);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(48, 16);
     this.label4.TabIndex = 52;
     this.label4.Text = "From";
     //
     // prevToYear
     //
     this.prevToYear.EditValue = "cbGIROStatus";
     this.prevToYear.Location = new System.Drawing.Point(352, 16);
     this.prevToYear.Name = "prevToYear";
     this.prevToYear.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.prevToYear.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.prevToYear.Size = new System.Drawing.Size(80, 20);
     this.prevToYear.TabIndex = 51;
     //
     // prevFromYear
     //
     this.prevFromYear.EditValue = "cbGIROStatus";
     this.prevFromYear.Location = new System.Drawing.Point(144, 16);
     this.prevFromYear.Name = "prevFromYear";
     this.prevFromYear.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.prevFromYear.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.prevFromYear.Size = new System.Drawing.Size(72, 20);
     this.prevFromYear.TabIndex = 50;
     //
     // cmbBranch
     //
     this.cmbBranch.Location = new System.Drawing.Point(288, 88);
     this.cmbBranch.Name = "cmbBranch";
     this.cmbBranch.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cmbBranch.Size = new System.Drawing.Size(120, 20);
     this.cmbBranch.TabIndex = 179;
     this.cmbBranch.SelectedValueChanged += new System.EventHandler(this.cmbBranch_SelectedValueChanged);
     //
     // label25
     //
     this.label25.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label25.ForeColor = System.Drawing.Color.Black;
     this.label25.Location = new System.Drawing.Point(224, 88);
     this.label25.Name = "label25";
     this.label25.Size = new System.Drawing.Size(56, 16);
     this.label25.TabIndex = 174;
     this.label25.Text = "Branch";
     //
     // OvertimeStatus
     //
     this.OvertimeStatus.EditValue = 0;
     this.OvertimeStatus.Location = new System.Drawing.Point(80, 88);
     this.OvertimeStatus.Name = "OvertimeStatus";
     this.OvertimeStatus.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.OvertimeStatus.Properties.Items.AddRange(new DevExpress.XtraEditors.Controls.ImageComboBoxItem[] {
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Pending", 0, -1),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Approved", 1, -1),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Rejected", 2, -1)});
     this.OvertimeStatus.Size = new System.Drawing.Size(128, 20);
     this.OvertimeStatus.TabIndex = 124;
     this.OvertimeStatus.SelectedValueChanged += new System.EventHandler(this.OvertimeStatus_SelectedValueChanged);
     //
     // label151
     //
     this.label151.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label151.ForeColor = System.Drawing.Color.Black;
     this.label151.Location = new System.Drawing.Point(24, 88);
     this.label151.Name = "label151";
     this.label151.Size = new System.Drawing.Size(56, 16);
     this.label151.TabIndex = 19;
     this.label151.Text = "Status";
     //
     // gridOverTime
     //
     this.gridOverTime.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.gridOverTime.Location = new System.Drawing.Point(2, 118);
     this.gridOverTime.LookAndFeel.UseDefaultLookAndFeel = false;
     this.gridOverTime.MainView = this.gridViewOverTime;
     this.gridOverTime.Name = "gridOverTime";
     this.gridOverTime.Size = new System.Drawing.Size(988, 448);
     this.gridOverTime.TabIndex = 12;
     this.gridOverTime.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewOverTime});
     //
     // gridViewOverTime
     //
     this.gridViewOverTime.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn69,
     this.gridColumn62,
     this.gridColumn63,
     this.gridColumn2,
     this.gridColumn3,
     this.gridColumn4});
     this.gridViewOverTime.GridControl = this.gridOverTime;
     this.gridViewOverTime.Name = "gridViewOverTime";
     this.gridViewOverTime.OptionsBehavior.Editable = false;
     this.gridViewOverTime.OptionsCustomization.AllowFilter = false;
     this.gridViewOverTime.OptionsCustomization.AllowSort = false;
     this.gridViewOverTime.OptionsView.ColumnAutoWidth = false;
     this.gridViewOverTime.OptionsView.ShowGroupPanel = false;
     //
     // gridColumn69
     //
     this.gridColumn69.Caption = "Date";
     this.gridColumn69.DisplayFormat.FormatString = "dd/MM/yyyy";
     this.gridColumn69.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.gridColumn69.FieldName = "dtDate";
     this.gridColumn69.GroupFormat.FormatString = "dd/MM/yyyy";
     this.gridColumn69.GroupFormat.FormatType = DevExpress.Utils.FormatType.Custom;
     this.gridColumn69.Name = "gridColumn69";
     this.gridColumn69.Visible = true;
     this.gridColumn69.VisibleIndex = 0;
     this.gridColumn69.Width = 74;
     //
     // gridColumn62
     //
     this.gridColumn62.Caption = "Employee Id";
     this.gridColumn62.FieldName = "nEmployeeID";
     this.gridColumn62.Name = "gridColumn62";
     this.gridColumn62.Visible = true;
     this.gridColumn62.VisibleIndex = 1;
     this.gridColumn62.Width = 84;
     //
     // gridColumn63
     //
     this.gridColumn63.Caption = "Name";
     this.gridColumn63.FieldName = "strEmployeeName";
     this.gridColumn63.Name = "gridColumn63";
     this.gridColumn63.Visible = true;
     this.gridColumn63.VisibleIndex = 2;
     this.gridColumn63.Width = 148;
     //
     // gridColumn2
     //
     this.gridColumn2.Caption = "Reason";
     this.gridColumn2.FieldName = "strReason";
     this.gridColumn2.Name = "gridColumn2";
     this.gridColumn2.Visible = true;
     this.gridColumn2.VisibleIndex = 7;
     this.gridColumn2.Width = 109;
     //
     // gridColumn3
     //
     this.gridColumn3.Caption = "Approving Manager";
     this.gridColumn3.FieldName = "strManagerName";
     this.gridColumn3.Name = "gridColumn3";
     this.gridColumn3.Visible = true;
     this.gridColumn3.VisibleIndex = 4;
     this.gridColumn3.Width = 106;
     //
     // gridColumn4
     //
     this.gridColumn4.Caption = "Status";
     this.gridColumn4.FieldName = "OvertimeStatus";
     this.gridColumn4.Name = "gridColumn4";
     this.gridColumn4.Visible = true;
     this.gridColumn4.VisibleIndex = 9;
     this.gridColumn4.Width = 81;
     //
     // btnApprove
     //
     this.btnApprove.Appearance.BackColor = System.Drawing.SystemColors.Control;
     this.btnApprove.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnApprove.Appearance.Options.UseBackColor = true;
     this.btnApprove.Appearance.Options.UseFont = true;
     this.btnApprove.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnApprove.ImeMode = System.Windows.Forms.ImeMode.NoControl;
     this.btnApprove.Location = new System.Drawing.Point(544, 88);
     this.btnApprove.Name = "btnApprove";
     this.btnApprove.Size = new System.Drawing.Size(72, 20);
     this.btnApprove.TabIndex = 123;
     this.btnApprove.Text = "Approve";
     this.btnApprove.Click += new System.EventHandler(this.btnApprove_Click);
     //
     // btnReject
     //
     this.btnReject.Appearance.BackColor = System.Drawing.SystemColors.Control;
     this.btnReject.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnReject.Appearance.Options.UseBackColor = true;
     this.btnReject.Appearance.Options.UseFont = true;
     this.btnReject.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnReject.ImeMode = System.Windows.Forms.ImeMode.NoControl;
     this.btnReject.Location = new System.Drawing.Point(624, 88);
     this.btnReject.Name = "btnReject";
     this.btnReject.Size = new System.Drawing.Size(72, 20);
     this.btnReject.TabIndex = 124;
     this.btnReject.Text = "Reject";
     this.btnReject.Click += new System.EventHandler(this.btnReject_Click);
     //
     // frmPHMain
     //
     this.BackColor = System.Drawing.Color.White;
     this.ClientSize = new System.Drawing.Size(992, 568);
     this.Controls.Add(this.groupOverTime);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
     this.Name = "frmPHMain";
     this.Text = "frmPHMain";
     this.Load += new System.EventHandler(this.frmPHMain_Load);
     ((System.ComponentModel.ISupportInitialize)(this.groupOverTime)).EndInit();
     this.groupOverTime.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.prevToMonth.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.prevFromMonth.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.prevToYear.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.prevFromYear.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbBranch.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.OvertimeStatus.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridOverTime)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewOverTime)).EndInit();
     this.ResumeLayout(false);
 }
Beispiel #43
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(frmCommission));
     this.grpMDCommision = new DevExpress.XtraEditors.GroupControl();
     this.tabControlCommission = new DevExpress.XtraTab.XtraTabControl();
     this.mdCM_tabSalesCommision = new DevExpress.XtraTab.XtraTabPage();
     this.grpSubMDCommissionScheme = new DevExpress.XtraEditors.GroupControl();
     this.gridControlMd_SalesCommisionScheme = new DevExpress.XtraGrid.GridControl();
     this.gridViewMd_SalesCommission = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.nCommGroupID = new DevExpress.XtraGrid.Columns.GridColumn();
     this.strGroupName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.nCalMethod = new DevExpress.XtraGrid.Columns.GridColumn();
     this.lk_CalMethod = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.mBranchTarget = new DevExpress.XtraGrid.Columns.GridColumn();
     this.fCrossSales = new DevExpress.XtraGrid.Columns.GridColumn();
     this.chk_CrossSales = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.dtFrom = new DevExpress.XtraGrid.Columns.GridColumn();
     this.dtTo = new DevExpress.XtraGrid.Columns.GridColumn();
     this.mdSC_txtNEmployeeID = new DevExpress.XtraEditors.TextEdit();
     this.tabControlCommissionEntry = new DevExpress.XtraTab.XtraTabControl();
     this.tabMethodOne = new DevExpress.XtraTab.XtraTabPage();
     this.btn_Target_Add = new DevExpress.XtraEditors.SimpleButton();
     this.imageList1 = new System.Windows.Forms.ImageList(this.components);
     this.btn_Target_Del = new DevExpress.XtraEditors.SimpleButton();
     this.grpMDPromotionBelow2 = new DevExpress.XtraEditors.GroupControl();
     this.gridCategory2 = new DevExpress.XtraGrid.GridControl();
     this.gridViewCategory2 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.nCategoryID = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Description2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Percentage2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridCategory = new DevExpress.XtraGrid.GridControl();
     this.gridViewCategory = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.CategoryID = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Description = new DevExpress.XtraGrid.Columns.GridColumn();
     this.btnCategory_Add = new DevExpress.XtraEditors.SimpleButton();
     this.btnCategory_Del = new DevExpress.XtraEditors.SimpleButton();
     this.btnCategory_DelAll = new DevExpress.XtraEditors.SimpleButton();
     this.btnCategory_AddAll = new DevExpress.XtraEditors.SimpleButton();
     this.gridTarget = new DevExpress.XtraGrid.GridControl();
     this.gridViewTarget = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.nIndivTargetFrom = new DevExpress.XtraGrid.Columns.GridColumn();
     this.nIndivTargetTo = new DevExpress.XtraGrid.Columns.GridColumn();
     this.nIndivPercent = new DevExpress.XtraGrid.Columns.GridColumn();
     this.nBranchTargetFrom = new DevExpress.XtraGrid.Columns.GridColumn();
     this.nBranchTargetTo = new DevExpress.XtraGrid.Columns.GridColumn();
     this.nBranchPercent = new DevExpress.XtraGrid.Columns.GridColumn();
     this.nBasePercent = new DevExpress.XtraGrid.Columns.GridColumn();
     this.mBaseAmount = new DevExpress.XtraGrid.Columns.GridColumn();
     this.fCombine = new DevExpress.XtraGrid.Columns.GridColumn();
     this.tabMethodTwo = new DevExpress.XtraTab.XtraTabPage();
     this.btn_Range_Del = new DevExpress.XtraEditors.SimpleButton();
     this.gridRange = new DevExpress.XtraGrid.GridControl();
     this.gridViewRange = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.mRangeSalesFrom = new DevExpress.XtraGrid.Columns.GridColumn();
     this.mRangeSalesTo = new DevExpress.XtraGrid.Columns.GridColumn();
     this.nRangePercent = new DevExpress.XtraGrid.Columns.GridColumn();
     this.mRangeAmt = new DevExpress.XtraGrid.Columns.GridColumn();
     this.fCombine_Range = new DevExpress.XtraGrid.Columns.GridColumn();
     this.chk_fCombine = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.btn_Range_Add = new DevExpress.XtraEditors.SimpleButton();
     this.groupControl2 = new DevExpress.XtraEditors.GroupControl();
     this.grid2Category2 = new DevExpress.XtraGrid.GridControl();
     this.gridView2Category2 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn18 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn19 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.grid2Category = new DevExpress.XtraGrid.GridControl();
     this.gridView2Category = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn21 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn22 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.btn2Category_Add = new DevExpress.XtraEditors.SimpleButton();
     this.btn2Category_Del = new DevExpress.XtraEditors.SimpleButton();
     this.btn2Category_DelAll = new DevExpress.XtraEditors.SimpleButton();
     this.btn2Category_AddAll = new DevExpress.XtraEditors.SimpleButton();
     this.tabMethodThree = new DevExpress.XtraTab.XtraTabPage();
     this.btn_Mgr_Del = new DevExpress.XtraEditors.SimpleButton();
     this.gridMgr = new DevExpress.XtraGrid.GridControl();
     this.gridViewMgr = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.nBranchPercentFrom = new DevExpress.XtraGrid.Columns.GridColumn();
     this.nBranchPercentTo = new DevExpress.XtraGrid.Columns.GridColumn();
     this.nMgrPercent = new DevExpress.XtraGrid.Columns.GridColumn();
     this.dMgrAmt = new DevExpress.XtraGrid.Columns.GridColumn();
     this.fCombine_Mgr = new DevExpress.XtraGrid.Columns.GridColumn();
     this.chk_fCombine_Mgr = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.btn_Mgr_add = new DevExpress.XtraEditors.SimpleButton();
     this.groupControl3 = new DevExpress.XtraEditors.GroupControl();
     this.grid3Category2 = new DevExpress.XtraGrid.GridControl();
     this.gridView3Category2 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn23 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn24 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn25 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.grid3Category = new DevExpress.XtraGrid.GridControl();
     this.gridView3Category = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn26 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn27 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.btn3Category_Add = new DevExpress.XtraEditors.SimpleButton();
     this.btn3Category_Del = new DevExpress.XtraEditors.SimpleButton();
     this.btn3Category_DelAll = new DevExpress.XtraEditors.SimpleButton();
     this.btn3Category_AddAll = new DevExpress.XtraEditors.SimpleButton();
     this.xtraTabPage1 = new DevExpress.XtraTab.XtraTabPage();
     this.btn_Add2 = new DevExpress.XtraEditors.SimpleButton();
     this.btn_del2 = new DevExpress.XtraEditors.SimpleButton();
     this.gridControlMd_SalesCommisionSchemeEntries = new DevExpress.XtraGrid.GridControl();
     this.gridViewMd_SalesCommissionSchemeEntries = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn17 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnMdSCE2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnMdSCE3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnMdSCE4 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnMdSCE5 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnMdSCE6 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnMdSCE7 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnMdSCE8 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnMdSCE9 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnMdSCE10 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnMdSCE11 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnMdSCE12 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnMdSCE13 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnMdSCE14 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnMdSCE15 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnMdSCE16 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnMdSCE17 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnMdSCE18 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnMdSCE19 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnMdSCE20 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnMdSCE21 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn4 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn5 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn6 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn7 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn8 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn9 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn10 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn11 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn12 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn13 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn14 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn15 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn16 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemComboBox1 = new DevExpress.XtraEditors.Repository.RepositoryItemComboBox();
     this.mdCM_tabInstructorCommision = new DevExpress.XtraTab.XtraTabPage();
     this.tabControlInstructorCommission = new DevExpress.XtraTab.XtraTabControl();
     this.tabPageInstructorType = new DevExpress.XtraTab.XtraTabPage();
     this.gridControlMd_InstructorType = new DevExpress.XtraGrid.GridControl();
     this.gridViewMdInstructor = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumnMdIT1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnMdIT2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnMdIT3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemImageComboBox1 = new DevExpress.XtraEditors.Repository.RepositoryItemImageComboBox();
     this.repositoryItemComboBox2 = new DevExpress.XtraEditors.Repository.RepositoryItemComboBox();
     this.tabPageInstructorComm = new DevExpress.XtraTab.XtraTabPage();
     this.gridControlMd_InstructorCommission = new DevExpress.XtraGrid.GridControl();
     this.gridViewMdIC = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumnMdIC1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnMdIC2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.tabPageInstructorTypeComm = new DevExpress.XtraTab.XtraTabPage();
     this.gridControlMd_InstructorTypeCommission = new DevExpress.XtraGrid.GridControl();
     this.gridViewMdITC = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumnMdITC1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemLookUpEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gridColumnMdITC2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemLookUpEdit2 = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gridColumnMdITC3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.mdCM_tabPTCommision = new DevExpress.XtraTab.XtraTabPage();
     this.gridControlMd_PTCommission = new DevExpress.XtraGrid.GridControl();
     this.gridViewPTCommission = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumnPT1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnPT2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnPT3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridView2 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.btn_Add = new DevExpress.XtraEditors.SimpleButton();
     this.btn_Del = new DevExpress.XtraEditors.SimpleButton();
     this.panelSalesCommission = new System.Windows.Forms.Panel();
     this.cmbYear = new DevExpress.XtraEditors.ImageComboBoxEdit();
     this.label12 = new System.Windows.Forms.Label();
     this.lkBranch = new DevExpress.XtraEditors.LookUpEdit();
     this.label3 = new System.Windows.Forms.Label();
     this.btn_Search = new DevExpress.XtraEditors.SimpleButton();
     ((System.ComponentModel.ISupportInitialize)(this.grpMDCommision)).BeginInit();
     this.grpMDCommision.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.tabControlCommission)).BeginInit();
     this.tabControlCommission.SuspendLayout();
     this.mdCM_tabSalesCommision.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grpSubMDCommissionScheme)).BeginInit();
     this.grpSubMDCommissionScheme.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMd_SalesCommisionScheme)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMd_SalesCommission)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_CalMethod)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_CrossSales)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.mdSC_txtNEmployeeID.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tabControlCommissionEntry)).BeginInit();
     this.tabControlCommissionEntry.SuspendLayout();
     this.tabMethodOne.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grpMDPromotionBelow2)).BeginInit();
     this.grpMDPromotionBelow2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridCategory2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewCategory2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridCategory)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewCategory)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridTarget)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewTarget)).BeginInit();
     this.tabMethodTwo.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridRange)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewRange)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_fCombine)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).BeginInit();
     this.groupControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grid2Category2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView2Category2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.grid2Category)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView2Category)).BeginInit();
     this.tabMethodThree.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridMgr)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMgr)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_fCombine_Mgr)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl3)).BeginInit();
     this.groupControl3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grid3Category2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView3Category2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.grid3Category)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView3Category)).BeginInit();
     this.xtraTabPage1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMd_SalesCommisionSchemeEntries)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMd_SalesCommissionSchemeEntries)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemComboBox1)).BeginInit();
     this.mdCM_tabInstructorCommision.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.tabControlInstructorCommission)).BeginInit();
     this.tabControlInstructorCommission.SuspendLayout();
     this.tabPageInstructorType.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMd_InstructorType)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMdInstructor)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemImageComboBox1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemComboBox2)).BeginInit();
     this.tabPageInstructorComm.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMd_InstructorCommission)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMdIC)).BeginInit();
     this.tabPageInstructorTypeComm.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMd_InstructorTypeCommission)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMdITC)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEdit2)).BeginInit();
     this.mdCM_tabPTCommision.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMd_PTCommission)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewPTCommission)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView2)).BeginInit();
     this.panelSalesCommission.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cmbYear.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkBranch.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // grpMDCommision
     //
     this.grpMDCommision.Appearance.BackColor = System.Drawing.SystemColors.Control;
     this.grpMDCommision.Appearance.Options.UseBackColor = true;
     this.grpMDCommision.Controls.Add(this.tabControlCommission);
     this.grpMDCommision.Controls.Add(this.btn_Add);
     this.grpMDCommision.Controls.Add(this.btn_Del);
     this.grpMDCommision.Controls.Add(this.panelSalesCommission);
     this.grpMDCommision.Location = new System.Drawing.Point(8, 0);
     this.grpMDCommision.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.grpMDCommision.LookAndFeel.UseDefaultLookAndFeel = false;
     this.grpMDCommision.LookAndFeel.UseWindowsXPTheme = false;
     this.grpMDCommision.Name = "grpMDCommision";
     this.grpMDCommision.Size = new System.Drawing.Size(980, 560);
     this.grpMDCommision.TabIndex = 17;
     this.grpMDCommision.Text = "Commision";
     //
     // tabControlCommission
     //
     this.tabControlCommission.AppearancePage.Header.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.tabControlCommission.AppearancePage.Header.Options.UseFont = true;
     this.tabControlCommission.Location = new System.Drawing.Point(8, 48);
     this.tabControlCommission.LookAndFeel.SkinName = "Coffee";
     this.tabControlCommission.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.tabControlCommission.LookAndFeel.UseWindowsXPTheme = false;
     this.tabControlCommission.Name = "tabControlCommission";
     this.tabControlCommission.SelectedTabPage = this.mdCM_tabSalesCommision;
     this.tabControlCommission.Size = new System.Drawing.Size(960, 512);
     this.tabControlCommission.TabIndex = 13;
     this.tabControlCommission.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
                                                                                          this.mdCM_tabSalesCommision,
                                                                                          this.mdCM_tabInstructorCommision,
                                                                                          this.mdCM_tabPTCommision});
     this.tabControlCommission.Text = "xtraTabControl2";
     this.tabControlCommission.Click += new System.EventHandler(this.tabControlCommission_Click);
     this.tabControlCommission.SelectedPageChanged += new DevExpress.XtraTab.TabPageChangedEventHandler(this.tabControlCommission_SelectedPageChanged);
     //
     // mdCM_tabSalesCommision
     //
     this.mdCM_tabSalesCommision.Appearance.PageClient.BackColor = System.Drawing.SystemColors.Control;
     this.mdCM_tabSalesCommision.Appearance.PageClient.Options.UseBackColor = true;
     this.mdCM_tabSalesCommision.Controls.Add(this.grpSubMDCommissionScheme);
     this.mdCM_tabSalesCommision.Controls.Add(this.tabControlCommissionEntry);
     this.mdCM_tabSalesCommision.Name = "mdCM_tabSalesCommision";
     this.mdCM_tabSalesCommision.Size = new System.Drawing.Size(954, 483);
     this.mdCM_tabSalesCommision.Text = "Sales Commission";
     //
     // grpSubMDCommissionScheme
     //
     this.grpSubMDCommissionScheme.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.grpSubMDCommissionScheme.Controls.Add(this.gridControlMd_SalesCommisionScheme);
     this.grpSubMDCommissionScheme.Controls.Add(this.mdSC_txtNEmployeeID);
     this.grpSubMDCommissionScheme.Dock = System.Windows.Forms.DockStyle.Top;
     this.grpSubMDCommissionScheme.Location = new System.Drawing.Point(0, 0);
     this.grpSubMDCommissionScheme.Name = "grpSubMDCommissionScheme";
     this.grpSubMDCommissionScheme.Size = new System.Drawing.Size(954, 136);
     this.grpSubMDCommissionScheme.TabIndex = 101;
     this.grpSubMDCommissionScheme.Text = "groupControl4";
     //
     // gridControlMd_SalesCommisionScheme
     //
     this.gridControlMd_SalesCommisionScheme.Dock = System.Windows.Forms.DockStyle.Fill;
     //
     // gridControlMd_SalesCommisionScheme.EmbeddedNavigator
     //
     this.gridControlMd_SalesCommisionScheme.EmbeddedNavigator.Name = "";
     this.gridControlMd_SalesCommisionScheme.Location = new System.Drawing.Point(0, 0);
     this.gridControlMd_SalesCommisionScheme.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.gridControlMd_SalesCommisionScheme.MainView = this.gridViewMd_SalesCommission;
     this.gridControlMd_SalesCommisionScheme.Name = "gridControlMd_SalesCommisionScheme";
     this.gridControlMd_SalesCommisionScheme.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
                                                                                                                                 this.chk_CrossSales,
                                                                                                                                 this.lk_CalMethod});
     this.gridControlMd_SalesCommisionScheme.Size = new System.Drawing.Size(954, 136);
     this.gridControlMd_SalesCommisionScheme.TabIndex = 101;
     this.gridControlMd_SalesCommisionScheme.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
                                                                                                                       this.gridViewMd_SalesCommission});
     //
     // gridViewMd_SalesCommission
     //
     this.gridViewMd_SalesCommission.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
                                                                                                       this.nCommGroupID,
                                                                                                       this.strGroupName,
                                                                                                       this.nCalMethod,
                                                                                                       this.mBranchTarget,
                                                                                                       this.fCrossSales,
                                                                                                       this.dtFrom,
                                                                                                       this.dtTo});
     this.gridViewMd_SalesCommission.GridControl = this.gridControlMd_SalesCommisionScheme;
     this.gridViewMd_SalesCommission.Name = "gridViewMd_SalesCommission";
     this.gridViewMd_SalesCommission.OptionsCustomization.AllowFilter = false;
     this.gridViewMd_SalesCommission.OptionsCustomization.AllowSort = false;
     this.gridViewMd_SalesCommission.OptionsView.ShowGroupPanel = false;
     this.gridViewMd_SalesCommission.FocusedRowChanged += new DevExpress.XtraGrid.Views.Base.FocusedRowChangedEventHandler(this.gridViewMd_SalesCommission_FocusedRowChanged);
     this.gridViewMd_SalesCommission.LostFocus += new System.EventHandler(this.gridViewMd_SalesCommission_LostFocus);
     //
     // nCommGroupID
     //
     this.nCommGroupID.Caption = "CommGroupID";
     this.nCommGroupID.FieldName = "nCommGroupID";
     this.nCommGroupID.Name = "nCommGroupID";
     this.nCommGroupID.Visible = true;
     this.nCommGroupID.VisibleIndex = 0;
     this.nCommGroupID.Width = 134;
     //
     // strGroupName
     //
     this.strGroupName.Caption = "GroupName";
     this.strGroupName.FieldName = "strGroupName";
     this.strGroupName.Name = "strGroupName";
     this.strGroupName.Visible = true;
     this.strGroupName.VisibleIndex = 1;
     this.strGroupName.Width = 203;
     //
     // nCalMethod
     //
     this.nCalMethod.Caption = "Method";
     this.nCalMethod.ColumnEdit = this.lk_CalMethod;
     this.nCalMethod.FieldName = "nCalMethod";
     this.nCalMethod.Name = "nCalMethod";
     this.nCalMethod.Visible = true;
     this.nCalMethod.VisibleIndex = 2;
     this.nCalMethod.Width = 120;
     //
     // lk_CalMethod
     //
     this.lk_CalMethod.AutoHeight = false;
     this.lk_CalMethod.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                               new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lk_CalMethod.Name = "lk_CalMethod";
     //
     // mBranchTarget
     //
     this.mBranchTarget.Caption = "Branch Target $";
     this.mBranchTarget.FieldName = "mBranchTarget";
     this.mBranchTarget.Name = "mBranchTarget";
     this.mBranchTarget.Visible = true;
     this.mBranchTarget.VisibleIndex = 3;
     this.mBranchTarget.Width = 153;
     //
     // fCrossSales
     //
     this.fCrossSales.Caption = "Cross Sales";
     this.fCrossSales.ColumnEdit = this.chk_CrossSales;
     this.fCrossSales.FieldName = "fCrossSales";
     this.fCrossSales.Name = "fCrossSales";
     this.fCrossSales.Visible = true;
     this.fCrossSales.VisibleIndex = 6;
     this.fCrossSales.Width = 73;
     //
     // chk_CrossSales
     //
     this.chk_CrossSales.AutoHeight = false;
     this.chk_CrossSales.Name = "chk_CrossSales";
     //
     // dtFrom
     //
     this.dtFrom.Caption = "From";
     this.dtFrom.DisplayFormat.FormatString = "dd/MM/yyyy";
     this.dtFrom.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.dtFrom.FieldName = "dtFrom";
     this.dtFrom.Name = "dtFrom";
     this.dtFrom.Visible = true;
     this.dtFrom.VisibleIndex = 4;
     this.dtFrom.Width = 130;
     //
     // dtTo
     //
     this.dtTo.Caption = "Till";
     this.dtTo.DisplayFormat.FormatString = "dd/MM/yyyy";
     this.dtTo.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.dtTo.FieldName = "dtTo";
     this.dtTo.Name = "dtTo";
     this.dtTo.Visible = true;
     this.dtTo.VisibleIndex = 5;
     this.dtTo.Width = 127;
     //
     // mdSC_txtNEmployeeID
     //
     this.mdSC_txtNEmployeeID.EditValue = "";
     this.mdSC_txtNEmployeeID.ImeMode = System.Windows.Forms.ImeMode.On;
     this.mdSC_txtNEmployeeID.Location = new System.Drawing.Point(552, 168);
     this.mdSC_txtNEmployeeID.Name = "mdSC_txtNEmployeeID";
     //
     // mdSC_txtNEmployeeID.Properties
     //
     this.mdSC_txtNEmployeeID.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.mdSC_txtNEmployeeID.Properties.Appearance.Options.UseFont = true;
     this.mdSC_txtNEmployeeID.Properties.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.mdSC_txtNEmployeeID.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.mdSC_txtNEmployeeID.Size = new System.Drawing.Size(32, 20);
     this.mdSC_txtNEmployeeID.TabIndex = 111;
     //
     // tabControlCommissionEntry
     //
     this.tabControlCommissionEntry.AppearancePage.Header.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.tabControlCommissionEntry.AppearancePage.Header.Options.UseFont = true;
     this.tabControlCommissionEntry.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.tabControlCommissionEntry.Location = new System.Drawing.Point(0, 139);
     this.tabControlCommissionEntry.LookAndFeel.SkinName = "Coffee";
     this.tabControlCommissionEntry.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.tabControlCommissionEntry.LookAndFeel.UseWindowsXPTheme = false;
     this.tabControlCommissionEntry.Name = "tabControlCommissionEntry";
     this.tabControlCommissionEntry.SelectedTabPage = this.tabMethodOne;
     this.tabControlCommissionEntry.Size = new System.Drawing.Size(954, 344);
     this.tabControlCommissionEntry.TabIndex = 94;
     this.tabControlCommissionEntry.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
                                                                                               this.tabMethodOne,
                                                                                               this.tabMethodTwo,
                                                                                               this.tabMethodThree,
                                                                                               this.xtraTabPage1});
     this.tabControlCommissionEntry.Text = "xtraTabControl2";
     //
     // tabMethodOne
     //
     this.tabMethodOne.Controls.Add(this.btn_Target_Add);
     this.tabMethodOne.Controls.Add(this.btn_Target_Del);
     this.tabMethodOne.Controls.Add(this.grpMDPromotionBelow2);
     this.tabMethodOne.Controls.Add(this.gridTarget);
     this.tabMethodOne.Name = "tabMethodOne";
     this.tabMethodOne.Size = new System.Drawing.Size(948, 315);
     this.tabMethodOne.Text = "Method One";
     //
     // btn_Target_Add
     //
     this.btn_Target_Add.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.btn_Target_Add.Appearance.Options.UseFont = true;
     this.btn_Target_Add.Appearance.Options.UseTextOptions = true;
     this.btn_Target_Add.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.btn_Target_Add.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.btn_Target_Add.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.btn_Target_Add.ImageIndex = 0;
     this.btn_Target_Add.ImageList = this.imageList1;
     this.btn_Target_Add.ImeMode = System.Windows.Forms.ImeMode.On;
     this.btn_Target_Add.Location = new System.Drawing.Point(8, 176);
     this.btn_Target_Add.Name = "btn_Target_Add";
     this.btn_Target_Add.Size = new System.Drawing.Size(38, 16);
     this.btn_Target_Add.TabIndex = 136;
     this.btn_Target_Add.Click += new System.EventHandler(this.btn_Target_Add_Click);
     //
     // imageList1
     //
     this.imageList1.ColorDepth = System.Windows.Forms.ColorDepth.Depth24Bit;
     this.imageList1.ImageSize = new System.Drawing.Size(16, 16);
     this.imageList1.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
     this.imageList1.TransparentColor = System.Drawing.Color.Magenta;
     //
     // btn_Target_Del
     //
     this.btn_Target_Del.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.btn_Target_Del.Appearance.Options.UseFont = true;
     this.btn_Target_Del.Appearance.Options.UseTextOptions = true;
     this.btn_Target_Del.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.btn_Target_Del.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.btn_Target_Del.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.btn_Target_Del.ImageIndex = 1;
     this.btn_Target_Del.ImageList = this.imageList1;
     this.btn_Target_Del.Location = new System.Drawing.Point(48, 176);
     this.btn_Target_Del.Name = "btn_Target_Del";
     this.btn_Target_Del.Size = new System.Drawing.Size(38, 16);
     this.btn_Target_Del.TabIndex = 135;
     this.btn_Target_Del.Click += new System.EventHandler(this.btn_Target_Del_Click);
     //
     // grpMDPromotionBelow2
     //
     this.grpMDPromotionBelow2.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.grpMDPromotionBelow2.Controls.Add(this.gridCategory2);
     this.grpMDPromotionBelow2.Controls.Add(this.gridCategory);
     this.grpMDPromotionBelow2.Controls.Add(this.btnCategory_Add);
     this.grpMDPromotionBelow2.Controls.Add(this.btnCategory_Del);
     this.grpMDPromotionBelow2.Controls.Add(this.btnCategory_DelAll);
     this.grpMDPromotionBelow2.Controls.Add(this.btnCategory_AddAll);
     this.grpMDPromotionBelow2.Location = new System.Drawing.Point(0, 8);
     this.grpMDPromotionBelow2.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.grpMDPromotionBelow2.LookAndFeel.UseDefaultLookAndFeel = false;
     this.grpMDPromotionBelow2.Name = "grpMDPromotionBelow2";
     this.grpMDPromotionBelow2.ShowCaption = false;
     this.grpMDPromotionBelow2.Size = new System.Drawing.Size(896, 160);
     this.grpMDPromotionBelow2.TabIndex = 7;
     this.grpMDPromotionBelow2.Text = "groupControl1";
     //
     // gridCategory2
     //
     //
     // gridCategory2.EmbeddedNavigator
     //
     this.gridCategory2.EmbeddedNavigator.Name = "";
     this.gridCategory2.Location = new System.Drawing.Point(480, 8);
     this.gridCategory2.MainView = this.gridViewCategory2;
     this.gridCategory2.Name = "gridCategory2";
     this.gridCategory2.Size = new System.Drawing.Size(376, 144);
     this.gridCategory2.TabIndex = 29;
     this.gridCategory2.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
                                                                                                  this.gridViewCategory2});
     //
     // gridViewCategory2
     //
     this.gridViewCategory2.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
                                                                                              this.nCategoryID,
                                                                                              this.Description2,
                                                                                              this.Percentage2});
     this.gridViewCategory2.GridControl = this.gridCategory2;
     this.gridViewCategory2.Name = "gridViewCategory2";
     this.gridViewCategory2.OptionsBehavior.AllowIncrementalSearch = true;
     this.gridViewCategory2.OptionsCustomization.AllowFilter = false;
     this.gridViewCategory2.OptionsSelection.MultiSelect = true;
     this.gridViewCategory2.OptionsView.ShowGroupPanel = false;
     this.gridViewCategory2.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
                                                                                                       new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.nCategoryID, DevExpress.Data.ColumnSortOrder.Ascending)});
     this.gridViewCategory2.SynchronizeClones = false;
     this.gridViewCategory2.CellValueChanged += new DevExpress.XtraGrid.Views.Base.CellValueChangedEventHandler(this.Update_Pecentage);
     this.gridViewCategory2.FocusedRowChanged += new DevExpress.XtraGrid.Views.Base.FocusedRowChangedEventHandler(this.gridTarget_FocusedRowChanged);
     //
     // nCategoryID
     //
     this.nCategoryID.Caption = "CategoryID";
     this.nCategoryID.FieldName = "nCategoryID";
     this.nCategoryID.Name = "nCategoryID";
     this.nCategoryID.OptionsColumn.AllowEdit = false;
     this.nCategoryID.Visible = true;
     this.nCategoryID.VisibleIndex = 0;
     this.nCategoryID.Width = 102;
     //
     // Description2
     //
     this.Description2.Caption = "Description";
     this.Description2.FieldName = "strDescription";
     this.Description2.Name = "Description2";
     this.Description2.OptionsColumn.AllowEdit = false;
     this.Description2.Visible = true;
     this.Description2.VisibleIndex = 1;
     this.Description2.Width = 181;
     //
     // Percentage2
     //
     this.Percentage2.Caption = "%";
     this.Percentage2.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.Percentage2.FieldName = "Percentage";
     this.Percentage2.Name = "Percentage2";
     this.Percentage2.Visible = true;
     this.Percentage2.VisibleIndex = 2;
     this.Percentage2.Width = 79;
     //
     // gridCategory
     //
     //
     // gridCategory.EmbeddedNavigator
     //
     this.gridCategory.EmbeddedNavigator.Name = "";
     this.gridCategory.Location = new System.Drawing.Point(8, 8);
     this.gridCategory.MainView = this.gridViewCategory;
     this.gridCategory.Name = "gridCategory";
     this.gridCategory.Size = new System.Drawing.Size(376, 144);
     this.gridCategory.TabIndex = 24;
     this.gridCategory.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
                                                                                                 this.gridViewCategory});
     //
     // gridViewCategory
     //
     this.gridViewCategory.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
                                                                                             this.CategoryID,
                                                                                             this.Description});
     this.gridViewCategory.GridControl = this.gridCategory;
     this.gridViewCategory.Name = "gridViewCategory";
     this.gridViewCategory.OptionsBehavior.AllowIncrementalSearch = true;
     this.gridViewCategory.OptionsBehavior.Editable = false;
     this.gridViewCategory.OptionsCustomization.AllowFilter = false;
     this.gridViewCategory.OptionsSelection.MultiSelect = true;
     this.gridViewCategory.OptionsView.ShowGroupPanel = false;
     this.gridViewCategory.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
                                                                                                      new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.CategoryID, DevExpress.Data.ColumnSortOrder.Ascending)});
     //
     // CategoryID
     //
     this.CategoryID.Caption = "CategoryID";
     this.CategoryID.FieldName = "nCategoryID";
     this.CategoryID.Name = "CategoryID";
     this.CategoryID.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.CategoryID.Visible = true;
     this.CategoryID.VisibleIndex = 0;
     this.CategoryID.Width = 100;
     //
     // Description
     //
     this.Description.Caption = "Description";
     this.Description.FieldName = "strDescription";
     this.Description.Name = "Description";
     this.Description.Visible = true;
     this.Description.VisibleIndex = 1;
     this.Description.Width = 262;
     //
     // btnCategory_Add
     //
     this.btnCategory_Add.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnCategory_Add.Location = new System.Drawing.Point(416, 16);
     this.btnCategory_Add.Name = "btnCategory_Add";
     this.btnCategory_Add.Size = new System.Drawing.Size(32, 24);
     this.btnCategory_Add.TabIndex = 25;
     this.btnCategory_Add.Text = ">";
     this.btnCategory_Add.Click += new System.EventHandler(this.btnCategory_Add_Click);
     //
     // btnCategory_Del
     //
     this.btnCategory_Del.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnCategory_Del.Location = new System.Drawing.Point(416, 112);
     this.btnCategory_Del.Name = "btnCategory_Del";
     this.btnCategory_Del.Size = new System.Drawing.Size(32, 24);
     this.btnCategory_Del.TabIndex = 28;
     this.btnCategory_Del.Text = "<";
     this.btnCategory_Del.Click += new System.EventHandler(this.btnCategory_Del_Click);
     //
     // btnCategory_DelAll
     //
     this.btnCategory_DelAll.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnCategory_DelAll.Location = new System.Drawing.Point(416, 48);
     this.btnCategory_DelAll.Name = "btnCategory_DelAll";
     this.btnCategory_DelAll.Size = new System.Drawing.Size(32, 24);
     this.btnCategory_DelAll.TabIndex = 27;
     this.btnCategory_DelAll.Text = "<<";
     this.btnCategory_DelAll.Click += new System.EventHandler(this.btnCategory_DelAll_Click);
     //
     // btnCategory_AddAll
     //
     this.btnCategory_AddAll.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnCategory_AddAll.Location = new System.Drawing.Point(416, 80);
     this.btnCategory_AddAll.Name = "btnCategory_AddAll";
     this.btnCategory_AddAll.Size = new System.Drawing.Size(32, 24);
     this.btnCategory_AddAll.TabIndex = 26;
     this.btnCategory_AddAll.Text = ">>";
     this.btnCategory_AddAll.Click += new System.EventHandler(this.btnCategory_AddAll_Click);
     //
     // gridTarget
     //
     //
     // gridTarget.EmbeddedNavigator
     //
     this.gridTarget.EmbeddedNavigator.Name = "";
     this.gridTarget.Location = new System.Drawing.Point(8, 192);
     this.gridTarget.MainView = this.gridViewTarget;
     this.gridTarget.Name = "gridTarget";
     this.gridTarget.Size = new System.Drawing.Size(888, 120);
     this.gridTarget.TabIndex = 25;
     this.gridTarget.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
                                                                                               this.gridViewTarget});
     //
     // gridViewTarget
     //
     this.gridViewTarget.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
                                                                                           this.nIndivTargetFrom,
                                                                                           this.nIndivTargetTo,
                                                                                           this.nIndivPercent,
                                                                                           this.nBranchTargetFrom,
                                                                                           this.nBranchTargetTo,
                                                                                           this.nBranchPercent,
                                                                                           this.nBasePercent,
                                                                                           this.mBaseAmount,
                                                                                           this.fCombine});
     this.gridViewTarget.GridControl = this.gridTarget;
     this.gridViewTarget.Name = "gridViewTarget";
     this.gridViewTarget.OptionsBehavior.AllowIncrementalSearch = true;
     this.gridViewTarget.OptionsCustomization.AllowFilter = false;
     this.gridViewTarget.OptionsSelection.MultiSelect = true;
     this.gridViewTarget.OptionsView.ShowGroupPanel = false;
     this.gridViewTarget.LostFocus += new System.EventHandler(this.gridViewTarget_LostFocus);
     //
     // nIndivTargetFrom
     //
     this.nIndivTargetFrom.Caption = "Individual From";
     this.nIndivTargetFrom.FieldName = "nIndivTargetFrom";
     this.nIndivTargetFrom.Name = "nIndivTargetFrom";
     this.nIndivTargetFrom.Visible = true;
     this.nIndivTargetFrom.VisibleIndex = 0;
     this.nIndivTargetFrom.Width = 117;
     //
     // nIndivTargetTo
     //
     this.nIndivTargetTo.Caption = "Individual To";
     this.nIndivTargetTo.FieldName = "nIndivTargetTo";
     this.nIndivTargetTo.Name = "nIndivTargetTo";
     this.nIndivTargetTo.Visible = true;
     this.nIndivTargetTo.VisibleIndex = 1;
     this.nIndivTargetTo.Width = 114;
     //
     // nIndivPercent
     //
     this.nIndivPercent.Caption = "Reward %";
     this.nIndivPercent.FieldName = "nIndivPercent";
     this.nIndivPercent.Name = "nIndivPercent";
     this.nIndivPercent.Visible = true;
     this.nIndivPercent.VisibleIndex = 2;
     this.nIndivPercent.Width = 105;
     //
     // nBranchTargetFrom
     //
     this.nBranchTargetFrom.Caption = "Branch From";
     this.nBranchTargetFrom.FieldName = "nBranchTargetFrom";
     this.nBranchTargetFrom.Name = "nBranchTargetFrom";
     this.nBranchTargetFrom.Visible = true;
     this.nBranchTargetFrom.VisibleIndex = 3;
     this.nBranchTargetFrom.Width = 103;
     //
     // nBranchTargetTo
     //
     this.nBranchTargetTo.Caption = "Branch To";
     this.nBranchTargetTo.FieldName = "nBranchTargetTo";
     this.nBranchTargetTo.Name = "nBranchTargetTo";
     this.nBranchTargetTo.Visible = true;
     this.nBranchTargetTo.VisibleIndex = 4;
     this.nBranchTargetTo.Width = 113;
     //
     // nBranchPercent
     //
     this.nBranchPercent.Caption = "+ Branch %";
     this.nBranchPercent.FieldName = "nBranchPercent";
     this.nBranchPercent.Name = "nBranchPercent";
     this.nBranchPercent.Visible = true;
     this.nBranchPercent.VisibleIndex = 5;
     this.nBranchPercent.Width = 82;
     //
     // nBasePercent
     //
     this.nBasePercent.Caption = "Min %";
     this.nBasePercent.FieldName = "nBasePercent";
     this.nBasePercent.Name = "nBasePercent";
     this.nBasePercent.Visible = true;
     this.nBasePercent.VisibleIndex = 6;
     this.nBasePercent.Width = 82;
     //
     // mBaseAmount
     //
     this.mBaseAmount.Caption = "Min Amount";
     this.mBaseAmount.FieldName = "mBaseAmount";
     this.mBaseAmount.Name = "mBaseAmount";
     this.mBaseAmount.Visible = true;
     this.mBaseAmount.VisibleIndex = 7;
     this.mBaseAmount.Width = 103;
     //
     // fCombine
     //
     this.fCombine.Caption = "Both";
     this.fCombine.FieldName = "fCombine";
     this.fCombine.Name = "fCombine";
     this.fCombine.Visible = true;
     this.fCombine.VisibleIndex = 8;
     this.fCombine.Width = 55;
     //
     // tabMethodTwo
     //
     this.tabMethodTwo.Controls.Add(this.btn_Range_Del);
     this.tabMethodTwo.Controls.Add(this.gridRange);
     this.tabMethodTwo.Controls.Add(this.btn_Range_Add);
     this.tabMethodTwo.Controls.Add(this.groupControl2);
     this.tabMethodTwo.Name = "tabMethodTwo";
     this.tabMethodTwo.Size = new System.Drawing.Size(948, 315);
     this.tabMethodTwo.Text = "Method Two";
     //
     // btn_Range_Del
     //
     this.btn_Range_Del.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.btn_Range_Del.Appearance.Options.UseFont = true;
     this.btn_Range_Del.Appearance.Options.UseTextOptions = true;
     this.btn_Range_Del.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.btn_Range_Del.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.btn_Range_Del.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.btn_Range_Del.ImageIndex = 1;
     this.btn_Range_Del.ImageList = this.imageList1;
     this.btn_Range_Del.Location = new System.Drawing.Point(48, 168);
     this.btn_Range_Del.Name = "btn_Range_Del";
     this.btn_Range_Del.Size = new System.Drawing.Size(38, 20);
     this.btn_Range_Del.TabIndex = 139;
     this.btn_Range_Del.Click += new System.EventHandler(this.btn_Range_Del_Click);
     //
     // gridRange
     //
     //
     // gridRange.EmbeddedNavigator
     //
     this.gridRange.EmbeddedNavigator.Name = "";
     this.gridRange.Location = new System.Drawing.Point(8, 192);
     this.gridRange.MainView = this.gridViewRange;
     this.gridRange.Name = "gridRange";
     this.gridRange.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
                                                                                                        this.chk_fCombine});
     this.gridRange.Size = new System.Drawing.Size(888, 120);
     this.gridRange.TabIndex = 137;
     this.gridRange.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
                                                                                              this.gridViewRange});
     //
     // gridViewRange
     //
     this.gridViewRange.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
                                                                                          this.mRangeSalesFrom,
                                                                                          this.mRangeSalesTo,
                                                                                          this.nRangePercent,
                                                                                          this.mRangeAmt,
                                                                                          this.fCombine_Range});
     this.gridViewRange.GridControl = this.gridRange;
     this.gridViewRange.Name = "gridViewRange";
     this.gridViewRange.OptionsBehavior.AllowIncrementalSearch = true;
     this.gridViewRange.OptionsCustomization.AllowFilter = false;
     this.gridViewRange.OptionsSelection.MultiSelect = true;
     this.gridViewRange.OptionsView.ShowGroupPanel = false;
     this.gridViewRange.LostFocus += new System.EventHandler(this.gridViewRange_LostFocus);
     //
     // mRangeSalesFrom
     //
     this.mRangeSalesFrom.Caption = "Sales From $";
     this.mRangeSalesFrom.FieldName = "mRangeSalesFrom";
     this.mRangeSalesFrom.Name = "mRangeSalesFrom";
     this.mRangeSalesFrom.Visible = true;
     this.mRangeSalesFrom.VisibleIndex = 0;
     this.mRangeSalesFrom.Width = 195;
     //
     // mRangeSalesTo
     //
     this.mRangeSalesTo.Caption = "Sales To $";
     this.mRangeSalesTo.FieldName = "mRangeSalesTo";
     this.mRangeSalesTo.Name = "mRangeSalesTo";
     this.mRangeSalesTo.Visible = true;
     this.mRangeSalesTo.VisibleIndex = 1;
     this.mRangeSalesTo.Width = 190;
     //
     // nRangePercent
     //
     this.nRangePercent.Caption = "Reward % ";
     this.nRangePercent.FieldName = "nRangePercent";
     this.nRangePercent.Name = "nRangePercent";
     this.nRangePercent.Visible = true;
     this.nRangePercent.VisibleIndex = 2;
     this.nRangePercent.Width = 175;
     //
     // mRangeAmt
     //
     this.mRangeAmt.Caption = "Reward Amount";
     this.mRangeAmt.FieldName = "mRangeAmt";
     this.mRangeAmt.Name = "mRangeAmt";
     this.mRangeAmt.Visible = true;
     this.mRangeAmt.VisibleIndex = 3;
     this.mRangeAmt.Width = 222;
     //
     // fCombine_Range
     //
     this.fCombine_Range.Caption = "Both";
     this.fCombine_Range.ColumnEdit = this.chk_fCombine;
     this.fCombine_Range.FieldName = "fCombine ";
     this.fCombine_Range.Name = "fCombine_Range";
     this.fCombine_Range.Visible = true;
     this.fCombine_Range.VisibleIndex = 4;
     this.fCombine_Range.Width = 92;
     //
     // chk_fCombine
     //
     this.chk_fCombine.AutoHeight = false;
     this.chk_fCombine.Name = "chk_fCombine";
     //
     // btn_Range_Add
     //
     this.btn_Range_Add.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.btn_Range_Add.Appearance.Options.UseFont = true;
     this.btn_Range_Add.Appearance.Options.UseTextOptions = true;
     this.btn_Range_Add.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.btn_Range_Add.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.btn_Range_Add.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.btn_Range_Add.ImageIndex = 0;
     this.btn_Range_Add.ImageList = this.imageList1;
     this.btn_Range_Add.ImeMode = System.Windows.Forms.ImeMode.On;
     this.btn_Range_Add.Location = new System.Drawing.Point(8, 168);
     this.btn_Range_Add.Name = "btn_Range_Add";
     this.btn_Range_Add.Size = new System.Drawing.Size(38, 20);
     this.btn_Range_Add.TabIndex = 140;
     this.btn_Range_Add.Click += new System.EventHandler(this.btn_Range_Add_Click);
     //
     // groupControl2
     //
     this.groupControl2.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.groupControl2.Controls.Add(this.grid2Category2);
     this.groupControl2.Controls.Add(this.grid2Category);
     this.groupControl2.Controls.Add(this.btn2Category_Add);
     this.groupControl2.Controls.Add(this.btn2Category_Del);
     this.groupControl2.Controls.Add(this.btn2Category_DelAll);
     this.groupControl2.Controls.Add(this.btn2Category_AddAll);
     this.groupControl2.Location = new System.Drawing.Point(0, 8);
     this.groupControl2.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.groupControl2.LookAndFeel.UseDefaultLookAndFeel = false;
     this.groupControl2.Name = "groupControl2";
     this.groupControl2.ShowCaption = false;
     this.groupControl2.Size = new System.Drawing.Size(896, 160);
     this.groupControl2.TabIndex = 8;
     this.groupControl2.Text = "groupControl1";
     //
     // grid2Category2
     //
     //
     // grid2Category2.EmbeddedNavigator
     //
     this.grid2Category2.EmbeddedNavigator.Name = "";
     this.grid2Category2.Location = new System.Drawing.Point(456, 8);
     this.grid2Category2.MainView = this.gridView2Category2;
     this.grid2Category2.Name = "grid2Category2";
     this.grid2Category2.Size = new System.Drawing.Size(376, 144);
     this.grid2Category2.TabIndex = 29;
     this.grid2Category2.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
                                                                                                   this.gridView2Category2});
     //
     // gridView2Category2
     //
     this.gridView2Category2.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
                                                                                               this.gridColumn18,
                                                                                               this.gridColumn19});
     this.gridView2Category2.GridControl = this.grid2Category2;
     this.gridView2Category2.HorzScrollVisibility = DevExpress.XtraGrid.Views.Base.ScrollVisibility.Never;
     this.gridView2Category2.Name = "gridView2Category2";
     this.gridView2Category2.OptionsBehavior.AllowIncrementalSearch = true;
     this.gridView2Category2.OptionsCustomization.AllowFilter = false;
     this.gridView2Category2.OptionsSelection.MultiSelect = true;
     this.gridView2Category2.OptionsView.ShowGroupPanel = false;
     this.gridView2Category2.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
                                                                                                        new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.gridColumn18, DevExpress.Data.ColumnSortOrder.Ascending)});
     this.gridView2Category2.SynchronizeClones = false;
     this.gridView2Category2.FocusedRowChanged += new DevExpress.XtraGrid.Views.Base.FocusedRowChangedEventHandler(this.gridRange_FocusedRowChanged);
     //
     // gridColumn18
     //
     this.gridColumn18.Caption = "CategoryID";
     this.gridColumn18.FieldName = "nCategoryID";
     this.gridColumn18.Name = "gridColumn18";
     this.gridColumn18.OptionsColumn.AllowEdit = false;
     this.gridColumn18.Visible = true;
     this.gridColumn18.VisibleIndex = 0;
     this.gridColumn18.Width = 78;
     //
     // gridColumn19
     //
     this.gridColumn19.Caption = "Description";
     this.gridColumn19.FieldName = "strDescription";
     this.gridColumn19.Name = "gridColumn19";
     this.gridColumn19.OptionsColumn.AllowEdit = false;
     this.gridColumn19.Visible = true;
     this.gridColumn19.VisibleIndex = 1;
     this.gridColumn19.Width = 171;
     //
     // grid2Category
     //
     //
     // grid2Category.EmbeddedNavigator
     //
     this.grid2Category.EmbeddedNavigator.Name = "";
     this.grid2Category.Location = new System.Drawing.Point(8, 8);
     this.grid2Category.MainView = this.gridView2Category;
     this.grid2Category.Name = "grid2Category";
     this.grid2Category.Size = new System.Drawing.Size(360, 144);
     this.grid2Category.TabIndex = 24;
     this.grid2Category.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
                                                                                                  this.gridView2Category});
     //
     // gridView2Category
     //
     this.gridView2Category.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
                                                                                              this.gridColumn21,
                                                                                              this.gridColumn22});
     this.gridView2Category.GridControl = this.grid2Category;
     this.gridView2Category.Name = "gridView2Category";
     this.gridView2Category.OptionsBehavior.AllowIncrementalSearch = true;
     this.gridView2Category.OptionsBehavior.Editable = false;
     this.gridView2Category.OptionsCustomization.AllowFilter = false;
     this.gridView2Category.OptionsSelection.MultiSelect = true;
     this.gridView2Category.OptionsView.ShowGroupPanel = false;
     this.gridView2Category.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
                                                                                                       new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.gridColumn21, DevExpress.Data.ColumnSortOrder.Ascending)});
     //
     // gridColumn21
     //
     this.gridColumn21.Caption = "CategoryID";
     this.gridColumn21.FieldName = "nCategoryID";
     this.gridColumn21.Name = "gridColumn21";
     this.gridColumn21.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn21.Visible = true;
     this.gridColumn21.VisibleIndex = 0;
     this.gridColumn21.Width = 78;
     //
     // gridColumn22
     //
     this.gridColumn22.Caption = "Description";
     this.gridColumn22.FieldName = "strDescription";
     this.gridColumn22.Name = "gridColumn22";
     this.gridColumn22.Visible = true;
     this.gridColumn22.VisibleIndex = 1;
     this.gridColumn22.Width = 268;
     //
     // btn2Category_Add
     //
     this.btn2Category_Add.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btn2Category_Add.Location = new System.Drawing.Point(392, 16);
     this.btn2Category_Add.Name = "btn2Category_Add";
     this.btn2Category_Add.Size = new System.Drawing.Size(32, 24);
     this.btn2Category_Add.TabIndex = 25;
     this.btn2Category_Add.Text = ">";
     this.btn2Category_Add.Click += new System.EventHandler(this.btn2Category_Add_Click);
     //
     // btn2Category_Del
     //
     this.btn2Category_Del.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btn2Category_Del.Location = new System.Drawing.Point(392, 112);
     this.btn2Category_Del.Name = "btn2Category_Del";
     this.btn2Category_Del.Size = new System.Drawing.Size(32, 24);
     this.btn2Category_Del.TabIndex = 28;
     this.btn2Category_Del.Text = "<";
     this.btn2Category_Del.Click += new System.EventHandler(this.btn2Category_Del_Click);
     //
     // btn2Category_DelAll
     //
     this.btn2Category_DelAll.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btn2Category_DelAll.Location = new System.Drawing.Point(392, 48);
     this.btn2Category_DelAll.Name = "btn2Category_DelAll";
     this.btn2Category_DelAll.Size = new System.Drawing.Size(32, 24);
     this.btn2Category_DelAll.TabIndex = 27;
     this.btn2Category_DelAll.Text = "<<";
     this.btn2Category_DelAll.Click += new System.EventHandler(this.btn2Category_DelAll_Click);
     //
     // btn2Category_AddAll
     //
     this.btn2Category_AddAll.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btn2Category_AddAll.Location = new System.Drawing.Point(392, 80);
     this.btn2Category_AddAll.Name = "btn2Category_AddAll";
     this.btn2Category_AddAll.Size = new System.Drawing.Size(32, 24);
     this.btn2Category_AddAll.TabIndex = 26;
     this.btn2Category_AddAll.Text = ">>";
     this.btn2Category_AddAll.Click += new System.EventHandler(this.btn2Category_AddAll_Click);
     //
     // tabMethodThree
     //
     this.tabMethodThree.Controls.Add(this.btn_Mgr_Del);
     this.tabMethodThree.Controls.Add(this.gridMgr);
     this.tabMethodThree.Controls.Add(this.btn_Mgr_add);
     this.tabMethodThree.Controls.Add(this.groupControl3);
     this.tabMethodThree.Name = "tabMethodThree";
     this.tabMethodThree.Size = new System.Drawing.Size(948, 315);
     this.tabMethodThree.Text = "Method Three";
     //
     // btn_Mgr_Del
     //
     this.btn_Mgr_Del.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.btn_Mgr_Del.Appearance.Options.UseFont = true;
     this.btn_Mgr_Del.Appearance.Options.UseTextOptions = true;
     this.btn_Mgr_Del.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.btn_Mgr_Del.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.btn_Mgr_Del.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.btn_Mgr_Del.ImageIndex = 1;
     this.btn_Mgr_Del.ImageList = this.imageList1;
     this.btn_Mgr_Del.Location = new System.Drawing.Point(48, 160);
     this.btn_Mgr_Del.Name = "btn_Mgr_Del";
     this.btn_Mgr_Del.Size = new System.Drawing.Size(38, 20);
     this.btn_Mgr_Del.TabIndex = 139;
     this.btn_Mgr_Del.Click += new System.EventHandler(this.btn_Mgr_Del_Click);
     //
     // gridMgr
     //
     //
     // gridMgr.EmbeddedNavigator
     //
     this.gridMgr.EmbeddedNavigator.Name = "";
     this.gridMgr.Location = new System.Drawing.Point(8, 184);
     this.gridMgr.MainView = this.gridViewMgr;
     this.gridMgr.Name = "gridMgr";
     this.gridMgr.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
                                                                                                      this.chk_fCombine_Mgr});
     this.gridMgr.Size = new System.Drawing.Size(888, 120);
     this.gridMgr.TabIndex = 137;
     this.gridMgr.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
                                                                                            this.gridViewMgr});
     //
     // gridViewMgr
     //
     this.gridViewMgr.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
                                                                                        this.nBranchPercentFrom,
                                                                                        this.nBranchPercentTo,
                                                                                        this.nMgrPercent,
                                                                                        this.dMgrAmt,
                                                                                        this.fCombine_Mgr});
     this.gridViewMgr.GridControl = this.gridMgr;
     this.gridViewMgr.Name = "gridViewMgr";
     this.gridViewMgr.OptionsBehavior.AllowIncrementalSearch = true;
     this.gridViewMgr.OptionsCustomization.AllowFilter = false;
     this.gridViewMgr.OptionsSelection.MultiSelect = true;
     this.gridViewMgr.OptionsView.ShowGroupPanel = false;
     this.gridViewMgr.LostFocus += new System.EventHandler(this.gridViewMgr_LostFocus);
     //
     // nBranchPercentFrom
     //
     this.nBranchPercentFrom.Caption = "Branch From %";
     this.nBranchPercentFrom.FieldName = "nBranchPercentFrom";
     this.nBranchPercentFrom.Name = "nBranchPercentFrom";
     this.nBranchPercentFrom.Visible = true;
     this.nBranchPercentFrom.VisibleIndex = 0;
     this.nBranchPercentFrom.Width = 117;
     //
     // nBranchPercentTo
     //
     this.nBranchPercentTo.Caption = "Branch To %";
     this.nBranchPercentTo.FieldName = "nBranchPercentTo";
     this.nBranchPercentTo.Name = "nBranchPercentTo";
     this.nBranchPercentTo.Visible = true;
     this.nBranchPercentTo.VisibleIndex = 1;
     this.nBranchPercentTo.Width = 114;
     //
     // nMgrPercent
     //
     this.nMgrPercent.Caption = "Reward %";
     this.nMgrPercent.FieldName = "nMgrPercent";
     this.nMgrPercent.Name = "nMgrPercent";
     this.nMgrPercent.Visible = true;
     this.nMgrPercent.VisibleIndex = 2;
     this.nMgrPercent.Width = 105;
     //
     // dMgrAmt
     //
     this.dMgrAmt.Caption = "Min. Amount";
     this.dMgrAmt.FieldName = "dMgrAmt";
     this.dMgrAmt.Name = "dMgrAmt";
     this.dMgrAmt.Visible = true;
     this.dMgrAmt.VisibleIndex = 3;
     this.dMgrAmt.Width = 103;
     //
     // fCombine_Mgr
     //
     this.fCombine_Mgr.Caption = "Both";
     this.fCombine_Mgr.ColumnEdit = this.chk_fCombine_Mgr;
     this.fCombine_Mgr.FieldName = "fCombine";
     this.fCombine_Mgr.Name = "fCombine_Mgr";
     this.fCombine_Mgr.Visible = true;
     this.fCombine_Mgr.VisibleIndex = 4;
     this.fCombine_Mgr.Width = 113;
     //
     // chk_fCombine_Mgr
     //
     this.chk_fCombine_Mgr.AutoHeight = false;
     this.chk_fCombine_Mgr.Name = "chk_fCombine_Mgr";
     //
     // btn_Mgr_add
     //
     this.btn_Mgr_add.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.btn_Mgr_add.Appearance.Options.UseFont = true;
     this.btn_Mgr_add.Appearance.Options.UseTextOptions = true;
     this.btn_Mgr_add.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.btn_Mgr_add.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.btn_Mgr_add.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.btn_Mgr_add.ImageIndex = 0;
     this.btn_Mgr_add.ImageList = this.imageList1;
     this.btn_Mgr_add.ImeMode = System.Windows.Forms.ImeMode.On;
     this.btn_Mgr_add.Location = new System.Drawing.Point(8, 160);
     this.btn_Mgr_add.Name = "btn_Mgr_add";
     this.btn_Mgr_add.Size = new System.Drawing.Size(38, 20);
     this.btn_Mgr_add.TabIndex = 140;
     this.btn_Mgr_add.Click += new System.EventHandler(this.btn_Mgr_add_Click);
     //
     // groupControl3
     //
     this.groupControl3.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.groupControl3.Controls.Add(this.grid3Category2);
     this.groupControl3.Controls.Add(this.grid3Category);
     this.groupControl3.Controls.Add(this.btn3Category_Add);
     this.groupControl3.Controls.Add(this.btn3Category_Del);
     this.groupControl3.Controls.Add(this.btn3Category_DelAll);
     this.groupControl3.Controls.Add(this.btn3Category_AddAll);
     this.groupControl3.Location = new System.Drawing.Point(0, 8);
     this.groupControl3.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.groupControl3.LookAndFeel.UseDefaultLookAndFeel = false;
     this.groupControl3.Name = "groupControl3";
     this.groupControl3.ShowCaption = false;
     this.groupControl3.Size = new System.Drawing.Size(896, 152);
     this.groupControl3.TabIndex = 8;
     this.groupControl3.Text = "groupControl1";
     //
     // grid3Category2
     //
     //
     // grid3Category2.EmbeddedNavigator
     //
     this.grid3Category2.EmbeddedNavigator.Name = "";
     this.grid3Category2.Location = new System.Drawing.Point(456, 8);
     this.grid3Category2.MainView = this.gridView3Category2;
     this.grid3Category2.Name = "grid3Category2";
     this.grid3Category2.Size = new System.Drawing.Size(376, 136);
     this.grid3Category2.TabIndex = 29;
     this.grid3Category2.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
                                                                                                   this.gridView3Category2});
     //
     // gridView3Category2
     //
     this.gridView3Category2.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
                                                                                               this.gridColumn23,
                                                                                               this.gridColumn24,
                                                                                               this.gridColumn25});
     this.gridView3Category2.GridControl = this.grid3Category2;
     this.gridView3Category2.Name = "gridView3Category2";
     this.gridView3Category2.OptionsBehavior.AllowIncrementalSearch = true;
     this.gridView3Category2.OptionsCustomization.AllowFilter = false;
     this.gridView3Category2.OptionsSelection.MultiSelect = true;
     this.gridView3Category2.OptionsView.ShowGroupPanel = false;
     this.gridView3Category2.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
                                                                                                        new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.gridColumn23, DevExpress.Data.ColumnSortOrder.Ascending)});
     this.gridView3Category2.SynchronizeClones = false;
     this.gridView3Category2.FocusedRowChanged += new DevExpress.XtraGrid.Views.Base.FocusedRowChangedEventHandler(this.gridManager_FocusedRowChanged);
     //
     // gridColumn23
     //
     this.gridColumn23.Caption = "CategoryID";
     this.gridColumn23.FieldName = "nCategoryID";
     this.gridColumn23.Name = "gridColumn23";
     this.gridColumn23.OptionsColumn.AllowEdit = false;
     this.gridColumn23.Visible = true;
     this.gridColumn23.VisibleIndex = 0;
     this.gridColumn23.Width = 78;
     //
     // gridColumn24
     //
     this.gridColumn24.Caption = "Description";
     this.gridColumn24.FieldName = "strDescription";
     this.gridColumn24.Name = "gridColumn24";
     this.gridColumn24.OptionsColumn.AllowEdit = false;
     this.gridColumn24.Visible = true;
     this.gridColumn24.VisibleIndex = 1;
     this.gridColumn24.Width = 171;
     //
     // gridColumn25
     //
     this.gridColumn25.Caption = "%";
     this.gridColumn25.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn25.FieldName = "Percentage";
     this.gridColumn25.Name = "gridColumn25";
     this.gridColumn25.Width = 73;
     //
     // grid3Category
     //
     //
     // grid3Category.EmbeddedNavigator
     //
     this.grid3Category.EmbeddedNavigator.Name = "";
     this.grid3Category.Location = new System.Drawing.Point(8, 8);
     this.grid3Category.MainView = this.gridView3Category;
     this.grid3Category.Name = "grid3Category";
     this.grid3Category.Size = new System.Drawing.Size(360, 136);
     this.grid3Category.TabIndex = 24;
     this.grid3Category.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
                                                                                                  this.gridView3Category});
     //
     // gridView3Category
     //
     this.gridView3Category.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
                                                                                              this.gridColumn26,
                                                                                              this.gridColumn27});
     this.gridView3Category.GridControl = this.grid3Category;
     this.gridView3Category.Name = "gridView3Category";
     this.gridView3Category.OptionsBehavior.AllowIncrementalSearch = true;
     this.gridView3Category.OptionsBehavior.Editable = false;
     this.gridView3Category.OptionsCustomization.AllowFilter = false;
     this.gridView3Category.OptionsSelection.MultiSelect = true;
     this.gridView3Category.OptionsView.ShowGroupPanel = false;
     this.gridView3Category.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
                                                                                                       new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.gridColumn26, DevExpress.Data.ColumnSortOrder.Ascending)});
     //
     // gridColumn26
     //
     this.gridColumn26.Caption = "CategoryID";
     this.gridColumn26.FieldName = "nCategoryID";
     this.gridColumn26.Name = "gridColumn26";
     this.gridColumn26.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn26.Visible = true;
     this.gridColumn26.VisibleIndex = 0;
     this.gridColumn26.Width = 78;
     //
     // gridColumn27
     //
     this.gridColumn27.Caption = "Description";
     this.gridColumn27.FieldName = "strDescription";
     this.gridColumn27.Name = "gridColumn27";
     this.gridColumn27.Visible = true;
     this.gridColumn27.VisibleIndex = 1;
     this.gridColumn27.Width = 268;
     //
     // btn3Category_Add
     //
     this.btn3Category_Add.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btn3Category_Add.Location = new System.Drawing.Point(392, 16);
     this.btn3Category_Add.Name = "btn3Category_Add";
     this.btn3Category_Add.Size = new System.Drawing.Size(32, 24);
     this.btn3Category_Add.TabIndex = 25;
     this.btn3Category_Add.Text = ">";
     this.btn3Category_Add.Click += new System.EventHandler(this.btn3Category_Add_Click);
     //
     // btn3Category_Del
     //
     this.btn3Category_Del.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btn3Category_Del.Location = new System.Drawing.Point(392, 112);
     this.btn3Category_Del.Name = "btn3Category_Del";
     this.btn3Category_Del.Size = new System.Drawing.Size(32, 24);
     this.btn3Category_Del.TabIndex = 28;
     this.btn3Category_Del.Text = "<";
     this.btn3Category_Del.Click += new System.EventHandler(this.btn3Category_Del_Click);
     //
     // btn3Category_DelAll
     //
     this.btn3Category_DelAll.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btn3Category_DelAll.Location = new System.Drawing.Point(392, 48);
     this.btn3Category_DelAll.Name = "btn3Category_DelAll";
     this.btn3Category_DelAll.Size = new System.Drawing.Size(32, 24);
     this.btn3Category_DelAll.TabIndex = 27;
     this.btn3Category_DelAll.Text = "<<";
     this.btn3Category_DelAll.Click += new System.EventHandler(this.btn3Category_DelAll_Click);
     //
     // btn3Category_AddAll
     //
     this.btn3Category_AddAll.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btn3Category_AddAll.Location = new System.Drawing.Point(392, 80);
     this.btn3Category_AddAll.Name = "btn3Category_AddAll";
     this.btn3Category_AddAll.Size = new System.Drawing.Size(32, 24);
     this.btn3Category_AddAll.TabIndex = 26;
     this.btn3Category_AddAll.Text = ">>";
     this.btn3Category_AddAll.Click += new System.EventHandler(this.btn3Category_AddAll_Click);
     //
     // xtraTabPage1
     //
     this.xtraTabPage1.Controls.Add(this.btn_Add2);
     this.xtraTabPage1.Controls.Add(this.btn_del2);
     this.xtraTabPage1.Controls.Add(this.gridControlMd_SalesCommisionSchemeEntries);
     this.xtraTabPage1.Name = "xtraTabPage1";
     this.xtraTabPage1.PageEnabled = false;
     this.xtraTabPage1.PageVisible = false;
     this.xtraTabPage1.Size = new System.Drawing.Size(948, 315);
     this.xtraTabPage1.Text = "xtraTabPage1";
     //
     // btn_Add2
     //
     this.btn_Add2.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.btn_Add2.Appearance.Options.UseFont = true;
     this.btn_Add2.Appearance.Options.UseTextOptions = true;
     this.btn_Add2.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.btn_Add2.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.btn_Add2.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.btn_Add2.ImageIndex = 0;
     this.btn_Add2.ImageList = this.imageList1;
     this.btn_Add2.ImeMode = System.Windows.Forms.ImeMode.On;
     this.btn_Add2.Location = new System.Drawing.Point(0, 8);
     this.btn_Add2.Name = "btn_Add2";
     this.btn_Add2.Size = new System.Drawing.Size(38, 20);
     this.btn_Add2.TabIndex = 138;
     //
     // btn_del2
     //
     this.btn_del2.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.btn_del2.Appearance.Options.UseFont = true;
     this.btn_del2.Appearance.Options.UseTextOptions = true;
     this.btn_del2.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.btn_del2.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.btn_del2.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.btn_del2.ImageIndex = 1;
     this.btn_del2.ImageList = this.imageList1;
     this.btn_del2.Location = new System.Drawing.Point(40, 8);
     this.btn_del2.Name = "btn_del2";
     this.btn_del2.Size = new System.Drawing.Size(38, 20);
     this.btn_del2.TabIndex = 137;
     //
     // gridControlMd_SalesCommisionSchemeEntries
     //
     this.gridControlMd_SalesCommisionSchemeEntries.Dock = System.Windows.Forms.DockStyle.Bottom;
     //
     // gridControlMd_SalesCommisionSchemeEntries.EmbeddedNavigator
     //
     this.gridControlMd_SalesCommisionSchemeEntries.EmbeddedNavigator.Name = "";
     this.gridControlMd_SalesCommisionSchemeEntries.Location = new System.Drawing.Point(0, 131);
     this.gridControlMd_SalesCommisionSchemeEntries.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.gridControlMd_SalesCommisionSchemeEntries.LookAndFeel.UseWindowsXPTheme = false;
     this.gridControlMd_SalesCommisionSchemeEntries.MainView = this.gridViewMd_SalesCommissionSchemeEntries;
     this.gridControlMd_SalesCommisionSchemeEntries.Name = "gridControlMd_SalesCommisionSchemeEntries";
     this.gridControlMd_SalesCommisionSchemeEntries.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
                                                                                                                                        this.repositoryItemComboBox1});
     this.gridControlMd_SalesCommisionSchemeEntries.Size = new System.Drawing.Size(948, 184);
     this.gridControlMd_SalesCommisionSchemeEntries.TabIndex = 96;
     this.gridControlMd_SalesCommisionSchemeEntries.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
                                                                                                                              this.gridViewMd_SalesCommissionSchemeEntries});
     //
     // gridViewMd_SalesCommissionSchemeEntries
     //
     this.gridViewMd_SalesCommissionSchemeEntries.Appearance.FocusedRow.BackColor = System.Drawing.Color.White;
     this.gridViewMd_SalesCommissionSchemeEntries.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
                                                                                                                    this.gridColumn17,
                                                                                                                    this.gridColumnMdSCE2,
                                                                                                                    this.gridColumnMdSCE3,
                                                                                                                    this.gridColumnMdSCE4,
                                                                                                                    this.gridColumnMdSCE5,
                                                                                                                    this.gridColumnMdSCE6,
                                                                                                                    this.gridColumnMdSCE7,
                                                                                                                    this.gridColumnMdSCE8,
                                                                                                                    this.gridColumnMdSCE9,
                                                                                                                    this.gridColumnMdSCE10,
                                                                                                                    this.gridColumnMdSCE11,
                                                                                                                    this.gridColumnMdSCE12,
                                                                                                                    this.gridColumnMdSCE13,
                                                                                                                    this.gridColumnMdSCE14,
                                                                                                                    this.gridColumnMdSCE15,
                                                                                                                    this.gridColumnMdSCE16,
                                                                                                                    this.gridColumnMdSCE17,
                                                                                                                    this.gridColumnMdSCE18,
                                                                                                                    this.gridColumnMdSCE19,
                                                                                                                    this.gridColumnMdSCE20,
                                                                                                                    this.gridColumnMdSCE21,
                                                                                                                    this.gridColumn1,
                                                                                                                    this.gridColumn2,
                                                                                                                    this.gridColumn3,
                                                                                                                    this.gridColumn4,
                                                                                                                    this.gridColumn5,
                                                                                                                    this.gridColumn6,
                                                                                                                    this.gridColumn7,
                                                                                                                    this.gridColumn8,
                                                                                                                    this.gridColumn9,
                                                                                                                    this.gridColumn10,
                                                                                                                    this.gridColumn11,
                                                                                                                    this.gridColumn12,
                                                                                                                    this.gridColumn13,
                                                                                                                    this.gridColumn14,
                                                                                                                    this.gridColumn15,
                                                                                                                    this.gridColumn16});
     this.gridViewMd_SalesCommissionSchemeEntries.GridControl = this.gridControlMd_SalesCommisionSchemeEntries;
     this.gridViewMd_SalesCommissionSchemeEntries.Name = "gridViewMd_SalesCommissionSchemeEntries";
     this.gridViewMd_SalesCommissionSchemeEntries.OptionsCustomization.AllowFilter = false;
     this.gridViewMd_SalesCommissionSchemeEntries.OptionsCustomization.AllowSort = false;
     this.gridViewMd_SalesCommissionSchemeEntries.OptionsView.ColumnAutoWidth = false;
     this.gridViewMd_SalesCommissionSchemeEntries.OptionsView.ShowGroupPanel = false;
     //
     // gridColumn17
     //
     this.gridColumn17.Caption = "Priority ID";
     this.gridColumn17.FieldName = "nPriorityID";
     this.gridColumn17.Name = "gridColumn17";
     this.gridColumn17.Visible = true;
     this.gridColumn17.VisibleIndex = 0;
     //
     // gridColumnMdSCE2
     //
     this.gridColumnMdSCE2.AppearanceCell.BackColor = System.Drawing.SystemColors.InactiveCaption;
     this.gridColumnMdSCE2.AppearanceCell.Options.UseBackColor = true;
     this.gridColumnMdSCE2.Caption = "Fitness Pkg %";
     this.gridColumnMdSCE2.DisplayFormat.FormatString = "f";
     this.gridColumnMdSCE2.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumnMdSCE2.FieldName = "nFitnessPackageBranchTargetPercent";
     this.gridColumnMdSCE2.MinWidth = 30;
     this.gridColumnMdSCE2.Name = "gridColumnMdSCE2";
     this.gridColumnMdSCE2.Visible = true;
     this.gridColumnMdSCE2.VisibleIndex = 1;
     this.gridColumnMdSCE2.Width = 80;
     //
     // gridColumnMdSCE3
     //
     this.gridColumnMdSCE3.AppearanceCell.BackColor = System.Drawing.SystemColors.InactiveCaption;
     this.gridColumnMdSCE3.AppearanceCell.Options.UseBackColor = true;
     this.gridColumnMdSCE3.Caption = "Fitness Prod %";
     this.gridColumnMdSCE3.DisplayFormat.FormatString = "f";
     this.gridColumnMdSCE3.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumnMdSCE3.FieldName = "nFitnessProductBranchTargetPercent";
     this.gridColumnMdSCE3.MinWidth = 30;
     this.gridColumnMdSCE3.Name = "gridColumnMdSCE3";
     this.gridColumnMdSCE3.Visible = true;
     this.gridColumnMdSCE3.VisibleIndex = 2;
     this.gridColumnMdSCE3.Width = 80;
     //
     // gridColumnMdSCE4
     //
     this.gridColumnMdSCE4.AppearanceCell.BackColor = System.Drawing.SystemColors.InactiveCaption;
     this.gridColumnMdSCE4.AppearanceCell.Options.UseBackColor = true;
     this.gridColumnMdSCE4.Caption = "SPA Pkg %";
     this.gridColumnMdSCE4.DisplayFormat.FormatString = "f";
     this.gridColumnMdSCE4.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumnMdSCE4.FieldName = "nSPAPackageBranchTargetPercent";
     this.gridColumnMdSCE4.MinWidth = 30;
     this.gridColumnMdSCE4.Name = "gridColumnMdSCE4";
     this.gridColumnMdSCE4.Visible = true;
     this.gridColumnMdSCE4.VisibleIndex = 3;
     this.gridColumnMdSCE4.Width = 80;
     //
     // gridColumnMdSCE5
     //
     this.gridColumnMdSCE5.AppearanceCell.BackColor = System.Drawing.SystemColors.InactiveCaption;
     this.gridColumnMdSCE5.AppearanceCell.Options.UseBackColor = true;
     this.gridColumnMdSCE5.Caption = "SPA Prod %";
     this.gridColumnMdSCE5.DisplayFormat.FormatString = "f";
     this.gridColumnMdSCE5.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumnMdSCE5.FieldName = "nSPAProductBranchTargetPercent";
     this.gridColumnMdSCE5.Name = "gridColumnMdSCE5";
     this.gridColumnMdSCE5.Visible = true;
     this.gridColumnMdSCE5.VisibleIndex = 4;
     this.gridColumnMdSCE5.Width = 80;
     //
     // gridColumnMdSCE6
     //
     this.gridColumnMdSCE6.AppearanceCell.BackColor = System.Drawing.SystemColors.InactiveCaption;
     this.gridColumnMdSCE6.AppearanceCell.Options.UseBackColor = true;
     this.gridColumnMdSCE6.Caption = "PT Pkg %";
     this.gridColumnMdSCE6.DisplayFormat.FormatString = "f";
     this.gridColumnMdSCE6.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumnMdSCE6.FieldName = "nPTPackageBranchTargetPercent";
     this.gridColumnMdSCE6.Name = "gridColumnMdSCE6";
     this.gridColumnMdSCE6.Visible = true;
     this.gridColumnMdSCE6.VisibleIndex = 5;
     this.gridColumnMdSCE6.Width = 60;
     //
     // gridColumnMdSCE7
     //
     this.gridColumnMdSCE7.AppearanceCell.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(255)), ((System.Byte)(255)), ((System.Byte)(192)));
     this.gridColumnMdSCE7.AppearanceCell.Options.UseBackColor = true;
     this.gridColumnMdSCE7.Caption = "Fitness Pkg %";
     this.gridColumnMdSCE7.DisplayFormat.FormatString = "f";
     this.gridColumnMdSCE7.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumnMdSCE7.FieldName = "nFitnessPackageIndTargetPercent";
     this.gridColumnMdSCE7.Name = "gridColumnMdSCE7";
     this.gridColumnMdSCE7.Visible = true;
     this.gridColumnMdSCE7.VisibleIndex = 6;
     this.gridColumnMdSCE7.Width = 80;
     //
     // gridColumnMdSCE8
     //
     this.gridColumnMdSCE8.AppearanceCell.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(255)), ((System.Byte)(255)), ((System.Byte)(192)));
     this.gridColumnMdSCE8.AppearanceCell.Options.UseBackColor = true;
     this.gridColumnMdSCE8.Caption = "Fitness Prod %";
     this.gridColumnMdSCE8.DisplayFormat.FormatString = "f";
     this.gridColumnMdSCE8.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumnMdSCE8.FieldName = "nFitnessProductIndTargetPercent";
     this.gridColumnMdSCE8.Name = "gridColumnMdSCE8";
     this.gridColumnMdSCE8.Visible = true;
     this.gridColumnMdSCE8.VisibleIndex = 7;
     this.gridColumnMdSCE8.Width = 80;
     //
     // gridColumnMdSCE9
     //
     this.gridColumnMdSCE9.AppearanceCell.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(255)), ((System.Byte)(255)), ((System.Byte)(192)));
     this.gridColumnMdSCE9.AppearanceCell.Options.UseBackColor = true;
     this.gridColumnMdSCE9.Caption = "SPA Pkg %";
     this.gridColumnMdSCE9.DisplayFormat.FormatString = "f";
     this.gridColumnMdSCE9.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumnMdSCE9.FieldName = "nSPAPackageIndTargetPercent";
     this.gridColumnMdSCE9.Name = "gridColumnMdSCE9";
     this.gridColumnMdSCE9.Visible = true;
     this.gridColumnMdSCE9.VisibleIndex = 8;
     this.gridColumnMdSCE9.Width = 80;
     //
     // gridColumnMdSCE10
     //
     this.gridColumnMdSCE10.AppearanceCell.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(255)), ((System.Byte)(255)), ((System.Byte)(192)));
     this.gridColumnMdSCE10.AppearanceCell.Options.UseBackColor = true;
     this.gridColumnMdSCE10.Caption = "SPA Prod %";
     this.gridColumnMdSCE10.DisplayFormat.FormatString = "f";
     this.gridColumnMdSCE10.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumnMdSCE10.FieldName = "nSPAProductIndTargetPercent";
     this.gridColumnMdSCE10.Name = "gridColumnMdSCE10";
     this.gridColumnMdSCE10.Visible = true;
     this.gridColumnMdSCE10.VisibleIndex = 9;
     this.gridColumnMdSCE10.Width = 80;
     //
     // gridColumnMdSCE11
     //
     this.gridColumnMdSCE11.AppearanceCell.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(255)), ((System.Byte)(255)), ((System.Byte)(192)));
     this.gridColumnMdSCE11.AppearanceCell.Options.UseBackColor = true;
     this.gridColumnMdSCE11.Caption = "PT Pkg %";
     this.gridColumnMdSCE11.DisplayFormat.FormatString = "f";
     this.gridColumnMdSCE11.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumnMdSCE11.FieldName = "nPTPackageIndTargetPercent";
     this.gridColumnMdSCE11.Name = "gridColumnMdSCE11";
     this.gridColumnMdSCE11.Visible = true;
     this.gridColumnMdSCE11.VisibleIndex = 10;
     this.gridColumnMdSCE11.Width = 80;
     //
     // gridColumnMdSCE12
     //
     this.gridColumnMdSCE12.AppearanceCell.BackColor = System.Drawing.SystemColors.InactiveCaption;
     this.gridColumnMdSCE12.AppearanceCell.Options.UseBackColor = true;
     this.gridColumnMdSCE12.Caption = "Fitness Pkg Excess";
     this.gridColumnMdSCE12.DisplayFormat.FormatString = "f2";
     this.gridColumnMdSCE12.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumnMdSCE12.FieldName = "nFitnessPackageBranchExcess";
     this.gridColumnMdSCE12.Name = "gridColumnMdSCE12";
     this.gridColumnMdSCE12.Visible = true;
     this.gridColumnMdSCE12.VisibleIndex = 11;
     this.gridColumnMdSCE12.Width = 100;
     //
     // gridColumnMdSCE13
     //
     this.gridColumnMdSCE13.AppearanceCell.BackColor = System.Drawing.SystemColors.InactiveCaption;
     this.gridColumnMdSCE13.AppearanceCell.Options.UseBackColor = true;
     this.gridColumnMdSCE13.Caption = "Fitness Prod Excess";
     this.gridColumnMdSCE13.DisplayFormat.FormatString = "f2";
     this.gridColumnMdSCE13.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumnMdSCE13.FieldName = "nFitnessProductBranchExcess";
     this.gridColumnMdSCE13.Name = "gridColumnMdSCE13";
     this.gridColumnMdSCE13.Visible = true;
     this.gridColumnMdSCE13.VisibleIndex = 12;
     this.gridColumnMdSCE13.Width = 100;
     //
     // gridColumnMdSCE14
     //
     this.gridColumnMdSCE14.AppearanceCell.BackColor = System.Drawing.SystemColors.InactiveCaption;
     this.gridColumnMdSCE14.AppearanceCell.Options.UseBackColor = true;
     this.gridColumnMdSCE14.Caption = "SPA Pkg Excess";
     this.gridColumnMdSCE14.DisplayFormat.FormatString = "f2";
     this.gridColumnMdSCE14.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumnMdSCE14.FieldName = "nSpaPackageBranchExcess";
     this.gridColumnMdSCE14.Name = "gridColumnMdSCE14";
     this.gridColumnMdSCE14.Visible = true;
     this.gridColumnMdSCE14.VisibleIndex = 13;
     this.gridColumnMdSCE14.Width = 90;
     //
     // gridColumnMdSCE15
     //
     this.gridColumnMdSCE15.AppearanceCell.BackColor = System.Drawing.SystemColors.InactiveCaption;
     this.gridColumnMdSCE15.AppearanceCell.Options.UseBackColor = true;
     this.gridColumnMdSCE15.Caption = "SPA Prod Excess";
     this.gridColumnMdSCE15.DisplayFormat.FormatString = "f2";
     this.gridColumnMdSCE15.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumnMdSCE15.FieldName = "nSpaProductBranchExcess";
     this.gridColumnMdSCE15.Name = "gridColumnMdSCE15";
     this.gridColumnMdSCE15.Visible = true;
     this.gridColumnMdSCE15.VisibleIndex = 14;
     this.gridColumnMdSCE15.Width = 90;
     //
     // gridColumnMdSCE16
     //
     this.gridColumnMdSCE16.AppearanceCell.BackColor = System.Drawing.SystemColors.InactiveCaption;
     this.gridColumnMdSCE16.AppearanceCell.Options.UseBackColor = true;
     this.gridColumnMdSCE16.Caption = "PT Pkg Excess";
     this.gridColumnMdSCE16.DisplayFormat.FormatString = "f2";
     this.gridColumnMdSCE16.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumnMdSCE16.FieldName = "nPTPackageBranchExcess";
     this.gridColumnMdSCE16.Name = "gridColumnMdSCE16";
     this.gridColumnMdSCE16.Visible = true;
     this.gridColumnMdSCE16.VisibleIndex = 15;
     this.gridColumnMdSCE16.Width = 90;
     //
     // gridColumnMdSCE17
     //
     this.gridColumnMdSCE17.AppearanceCell.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(255)), ((System.Byte)(255)), ((System.Byte)(192)));
     this.gridColumnMdSCE17.AppearanceCell.Options.UseBackColor = true;
     this.gridColumnMdSCE17.Caption = "Fitness Pkg Excess";
     this.gridColumnMdSCE17.DisplayFormat.FormatString = "f2";
     this.gridColumnMdSCE17.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumnMdSCE17.FieldName = "nFitnessPackageIndExcess";
     this.gridColumnMdSCE17.Name = "gridColumnMdSCE17";
     this.gridColumnMdSCE17.Visible = true;
     this.gridColumnMdSCE17.VisibleIndex = 16;
     this.gridColumnMdSCE17.Width = 100;
     //
     // gridColumnMdSCE18
     //
     this.gridColumnMdSCE18.AppearanceCell.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(255)), ((System.Byte)(255)), ((System.Byte)(192)));
     this.gridColumnMdSCE18.AppearanceCell.Options.UseBackColor = true;
     this.gridColumnMdSCE18.Caption = "Fitness Prod Excess";
     this.gridColumnMdSCE18.DisplayFormat.FormatString = "f2";
     this.gridColumnMdSCE18.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumnMdSCE18.FieldName = "nFitnessProductIndExcess";
     this.gridColumnMdSCE18.Name = "gridColumnMdSCE18";
     this.gridColumnMdSCE18.Visible = true;
     this.gridColumnMdSCE18.VisibleIndex = 17;
     this.gridColumnMdSCE18.Width = 90;
     //
     // gridColumnMdSCE19
     //
     this.gridColumnMdSCE19.AppearanceCell.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(255)), ((System.Byte)(255)), ((System.Byte)(192)));
     this.gridColumnMdSCE19.AppearanceCell.Options.UseBackColor = true;
     this.gridColumnMdSCE19.Caption = "SPA Pkg Excess";
     this.gridColumnMdSCE19.DisplayFormat.FormatString = "f2";
     this.gridColumnMdSCE19.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumnMdSCE19.FieldName = "nSPAPackageIndExcess";
     this.gridColumnMdSCE19.Name = "gridColumnMdSCE19";
     this.gridColumnMdSCE19.Visible = true;
     this.gridColumnMdSCE19.VisibleIndex = 18;
     this.gridColumnMdSCE19.Width = 90;
     //
     // gridColumnMdSCE20
     //
     this.gridColumnMdSCE20.AppearanceCell.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(255)), ((System.Byte)(255)), ((System.Byte)(192)));
     this.gridColumnMdSCE20.AppearanceCell.Options.UseBackColor = true;
     this.gridColumnMdSCE20.Caption = "SPA Prod Excess";
     this.gridColumnMdSCE20.DisplayFormat.FormatString = "f2";
     this.gridColumnMdSCE20.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumnMdSCE20.FieldName = "nSPAProductIndExcess";
     this.gridColumnMdSCE20.Name = "gridColumnMdSCE20";
     this.gridColumnMdSCE20.Visible = true;
     this.gridColumnMdSCE20.VisibleIndex = 19;
     this.gridColumnMdSCE20.Width = 90;
     //
     // gridColumnMdSCE21
     //
     this.gridColumnMdSCE21.AppearanceCell.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(255)), ((System.Byte)(255)), ((System.Byte)(192)));
     this.gridColumnMdSCE21.AppearanceCell.Options.UseBackColor = true;
     this.gridColumnMdSCE21.Caption = "PT Pkg Excess";
     this.gridColumnMdSCE21.DisplayFormat.FormatString = "f2";
     this.gridColumnMdSCE21.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumnMdSCE21.FieldName = "nPTPackageIndExcess";
     this.gridColumnMdSCE21.Name = "gridColumnMdSCE21";
     this.gridColumnMdSCE21.Visible = true;
     this.gridColumnMdSCE21.VisibleIndex = 20;
     this.gridColumnMdSCE21.Width = 90;
     //
     // gridColumn1
     //
     this.gridColumn1.Caption = "Fitness Pkg Branch Comm %";
     this.gridColumn1.DisplayFormat.FormatString = "f";
     this.gridColumn1.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn1.FieldName = "nFitnessPackageBranchPercentComm";
     this.gridColumn1.Name = "gridColumn1";
     this.gridColumn1.Visible = true;
     this.gridColumn1.VisibleIndex = 21;
     this.gridColumn1.Width = 150;
     //
     // gridColumn2
     //
     this.gridColumn2.Caption = "Fitness Prod Branch Comm %";
     this.gridColumn2.DisplayFormat.FormatString = "f";
     this.gridColumn2.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn2.FieldName = "nFitnessProductBranchPercentComm";
     this.gridColumn2.Name = "gridColumn2";
     this.gridColumn2.Visible = true;
     this.gridColumn2.VisibleIndex = 22;
     this.gridColumn2.Width = 150;
     //
     // gridColumn3
     //
     this.gridColumn3.Caption = "SPA Pkg Branch Comm %";
     this.gridColumn3.DisplayFormat.FormatString = "f";
     this.gridColumn3.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn3.FieldName = "nSpaPackageBranchPercentComm";
     this.gridColumn3.Name = "gridColumn3";
     this.gridColumn3.Visible = true;
     this.gridColumn3.VisibleIndex = 23;
     this.gridColumn3.Width = 150;
     //
     // gridColumn4
     //
     this.gridColumn4.Caption = "SPA Prod Branch Comm %";
     this.gridColumn4.DisplayFormat.FormatString = "f";
     this.gridColumn4.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn4.FieldName = "nSpaProductBranchPercentComm";
     this.gridColumn4.Name = "gridColumn4";
     this.gridColumn4.Visible = true;
     this.gridColumn4.VisibleIndex = 24;
     this.gridColumn4.Width = 150;
     //
     // gridColumn5
     //
     this.gridColumn5.Caption = "PT Pkg Branch Comm %";
     this.gridColumn5.DisplayFormat.FormatString = "f";
     this.gridColumn5.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn5.FieldName = "nPTPackageBranchPercentComm";
     this.gridColumn5.Name = "gridColumn5";
     this.gridColumn5.Visible = true;
     this.gridColumn5.VisibleIndex = 25;
     this.gridColumn5.Width = 150;
     //
     // gridColumn6
     //
     this.gridColumn6.Caption = "Fitness Pkg Branch Shared Comm %";
     this.gridColumn6.DisplayFormat.FormatString = "f";
     this.gridColumn6.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn6.FieldName = "nFitnessPackageBranchPercentSharedComm";
     this.gridColumn6.Name = "gridColumn6";
     this.gridColumn6.Visible = true;
     this.gridColumn6.VisibleIndex = 26;
     this.gridColumn6.Width = 130;
     //
     // gridColumn7
     //
     this.gridColumn7.Caption = "Fitness Prod Branch Shared Comm %";
     this.gridColumn7.DisplayFormat.FormatString = "f";
     this.gridColumn7.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn7.FieldName = "nFitnessProductBranchPercentSharedComm";
     this.gridColumn7.Name = "gridColumn7";
     this.gridColumn7.Visible = true;
     this.gridColumn7.VisibleIndex = 27;
     this.gridColumn7.Width = 130;
     //
     // gridColumn8
     //
     this.gridColumn8.Caption = "SPA Pkg Branch Shared Comm %";
     this.gridColumn8.DisplayFormat.FormatString = "f";
     this.gridColumn8.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn8.FieldName = "nSpaPackageBranchPercentSharedComm";
     this.gridColumn8.Name = "gridColumn8";
     this.gridColumn8.Visible = true;
     this.gridColumn8.VisibleIndex = 28;
     this.gridColumn8.Width = 130;
     //
     // gridColumn9
     //
     this.gridColumn9.Caption = "SPA Prod Branch Shared Comm %";
     this.gridColumn9.DisplayFormat.FormatString = "f";
     this.gridColumn9.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn9.FieldName = "nSpaProductBranchPercentSharedComm";
     this.gridColumn9.Name = "gridColumn9";
     this.gridColumn9.Visible = true;
     this.gridColumn9.VisibleIndex = 29;
     this.gridColumn9.Width = 130;
     //
     // gridColumn10
     //
     this.gridColumn10.Caption = "PT Pkg Branch Shared Comm %";
     this.gridColumn10.DisplayFormat.FormatString = "f";
     this.gridColumn10.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn10.FieldName = "nPTPackageBranchPercentSharedComm";
     this.gridColumn10.Name = "gridColumn10";
     this.gridColumn10.Visible = true;
     this.gridColumn10.VisibleIndex = 30;
     this.gridColumn10.Width = 130;
     //
     // gridColumn11
     //
     this.gridColumn11.Caption = "Fitness Pkg Branch Individual Comm %";
     this.gridColumn11.DisplayFormat.FormatString = "f";
     this.gridColumn11.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn11.FieldName = "nFitnessPackageIndPercentComm";
     this.gridColumn11.Name = "gridColumn11";
     this.gridColumn11.Visible = true;
     this.gridColumn11.VisibleIndex = 31;
     this.gridColumn11.Width = 140;
     //
     // gridColumn12
     //
     this.gridColumn12.Caption = "Fitness Prod Branch Individual Comm %";
     this.gridColumn12.DisplayFormat.FormatString = "f";
     this.gridColumn12.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn12.FieldName = "nFitnessProductIndPercentComm";
     this.gridColumn12.Name = "gridColumn12";
     this.gridColumn12.Visible = true;
     this.gridColumn12.VisibleIndex = 32;
     this.gridColumn12.Width = 140;
     //
     // gridColumn13
     //
     this.gridColumn13.Caption = "SPA Pkg Branch Individual Comm %";
     this.gridColumn13.DisplayFormat.FormatString = "f";
     this.gridColumn13.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn13.FieldName = "nSpaPackageIndPercentComm";
     this.gridColumn13.Name = "gridColumn13";
     this.gridColumn13.Visible = true;
     this.gridColumn13.VisibleIndex = 33;
     this.gridColumn13.Width = 140;
     //
     // gridColumn14
     //
     this.gridColumn14.Caption = "SPA Prod Branch Individual Comm %";
     this.gridColumn14.DisplayFormat.FormatString = "f";
     this.gridColumn14.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn14.FieldName = "nSpaProductIndPercentComm";
     this.gridColumn14.Name = "gridColumn14";
     this.gridColumn14.Visible = true;
     this.gridColumn14.VisibleIndex = 34;
     this.gridColumn14.Width = 140;
     //
     // gridColumn15
     //
     this.gridColumn15.Caption = "PT Pkg Branch Individual Comm %";
     this.gridColumn15.DisplayFormat.FormatString = "f";
     this.gridColumn15.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn15.FieldName = "nPTPackageIndPercentComm";
     this.gridColumn15.Name = "gridColumn15";
     this.gridColumn15.Visible = true;
     this.gridColumn15.VisibleIndex = 35;
     this.gridColumn15.Width = 140;
     //
     // gridColumn16
     //
     this.gridColumn16.Caption = "Commission Amount";
     this.gridColumn16.DisplayFormat.FormatString = "f2";
     this.gridColumn16.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Custom;
     this.gridColumn16.FieldName = "mCommissionAmount";
     this.gridColumn16.Name = "gridColumn16";
     this.gridColumn16.Visible = true;
     this.gridColumn16.VisibleIndex = 36;
     //
     // repositoryItemComboBox1
     //
     this.repositoryItemComboBox1.AutoHeight = false;
     this.repositoryItemComboBox1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                          new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemComboBox1.DisplayFormat.FormatString = "f";
     this.repositoryItemComboBox1.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemComboBox1.EditFormat.FormatString = "f";
     this.repositoryItemComboBox1.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemComboBox1.Items.AddRange(new object[] {
                                                                  "1",
                                                                  "2",
                                                                  "3",
                                                                  "4",
                                                                  "5"});
     this.repositoryItemComboBox1.Mask.EditMask = "f";
     this.repositoryItemComboBox1.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.repositoryItemComboBox1.Name = "repositoryItemComboBox1";
     //
     // mdCM_tabInstructorCommision
     //
     this.mdCM_tabInstructorCommision.Controls.Add(this.tabControlInstructorCommission);
     this.mdCM_tabInstructorCommision.Name = "mdCM_tabInstructorCommision";
     this.mdCM_tabInstructorCommision.Size = new System.Drawing.Size(954, 483);
     this.mdCM_tabInstructorCommision.Text = "Instructor Commission";
     //
     // tabControlInstructorCommission
     //
     this.tabControlInstructorCommission.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.tabControlInstructorCommission.Appearance.Options.UseBackColor = true;
     this.tabControlInstructorCommission.AppearancePage.Header.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.tabControlInstructorCommission.AppearancePage.Header.Options.UseFont = true;
     this.tabControlInstructorCommission.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabControlInstructorCommission.Location = new System.Drawing.Point(0, 0);
     this.tabControlInstructorCommission.LookAndFeel.SkinName = "Coffee";
     this.tabControlInstructorCommission.LookAndFeel.UseWindowsXPTheme = false;
     this.tabControlInstructorCommission.Name = "tabControlInstructorCommission";
     this.tabControlInstructorCommission.SelectedTabPage = this.tabPageInstructorType;
     this.tabControlInstructorCommission.Size = new System.Drawing.Size(954, 483);
     this.tabControlInstructorCommission.TabIndex = 1;
     this.tabControlInstructorCommission.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
                                                                                                    this.tabPageInstructorType,
                                                                                                    this.tabPageInstructorComm,
                                                                                                    this.tabPageInstructorTypeComm});
     this.tabControlInstructorCommission.Text = "xtraTabControl2";
     this.tabControlInstructorCommission.SelectedPageChanged += new DevExpress.XtraTab.TabPageChangedEventHandler(this.tabControlInstructorCommission_SelectedPageChanged);
     //
     // tabPageInstructorType
     //
     this.tabPageInstructorType.Controls.Add(this.gridControlMd_InstructorType);
     this.tabPageInstructorType.Name = "tabPageInstructorType";
     this.tabPageInstructorType.Size = new System.Drawing.Size(948, 442);
     this.tabPageInstructorType.Text = "Instructor Type";
     //
     // gridControlMd_InstructorType
     //
     this.gridControlMd_InstructorType.Dock = System.Windows.Forms.DockStyle.Fill;
     //
     // gridControlMd_InstructorType.EmbeddedNavigator
     //
     this.gridControlMd_InstructorType.EmbeddedNavigator.Name = "";
     this.gridControlMd_InstructorType.Location = new System.Drawing.Point(0, 0);
     this.gridControlMd_InstructorType.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.gridControlMd_InstructorType.LookAndFeel.UseWindowsXPTheme = false;
     this.gridControlMd_InstructorType.MainView = this.gridViewMdInstructor;
     this.gridControlMd_InstructorType.Name = "gridControlMd_InstructorType";
     this.gridControlMd_InstructorType.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
                                                                                                                           this.repositoryItemComboBox2,
                                                                                                                           this.repositoryItemImageComboBox1});
     this.gridControlMd_InstructorType.Size = new System.Drawing.Size(948, 442);
     this.gridControlMd_InstructorType.TabIndex = 15;
     this.gridControlMd_InstructorType.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
                                                                                                                 this.gridViewMdInstructor});
     //
     // gridViewMdInstructor
     //
     this.gridViewMdInstructor.ActiveFilterEnabled = false;
     this.gridViewMdInstructor.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
                                                                                                 this.gridColumnMdIT1,
                                                                                                 this.gridColumnMdIT2,
                                                                                                 this.gridColumnMdIT3});
     this.gridViewMdInstructor.GridControl = this.gridControlMd_InstructorType;
     this.gridViewMdInstructor.Name = "gridViewMdInstructor";
     this.gridViewMdInstructor.OptionsCustomization.AllowFilter = false;
     this.gridViewMdInstructor.OptionsCustomization.AllowSort = false;
     this.gridViewMdInstructor.OptionsView.ShowGroupPanel = false;
     this.gridViewMdInstructor.LostFocus += new System.EventHandler(this.gridViewMdInstructor_LostFocus);
     //
     // gridColumnMdIT1
     //
     this.gridColumnMdIT1.Caption = "Instructor Type";
     this.gridColumnMdIT1.FieldName = "nInstructorTypeID";
     this.gridColumnMdIT1.Name = "gridColumnMdIT1";
     this.gridColumnMdIT1.Visible = true;
     this.gridColumnMdIT1.VisibleIndex = 0;
     //
     // gridColumnMdIT2
     //
     this.gridColumnMdIT2.Caption = "Name";
     this.gridColumnMdIT2.FieldName = "strDescription";
     this.gridColumnMdIT2.MinWidth = 40;
     this.gridColumnMdIT2.Name = "gridColumnMdIT2";
     this.gridColumnMdIT2.Visible = true;
     this.gridColumnMdIT2.VisibleIndex = 2;
     //
     // gridColumnMdIT3
     //
     this.gridColumnMdIT3.Caption = "Bonus Type ID";
     this.gridColumnMdIT3.ColumnEdit = this.repositoryItemImageComboBox1;
     this.gridColumnMdIT3.FieldName = "nBonusTypeID";
     this.gridColumnMdIT3.Name = "gridColumnMdIT3";
     this.gridColumnMdIT3.Visible = true;
     this.gridColumnMdIT3.VisibleIndex = 1;
     //
     // repositoryItemImageComboBox1
     //
     this.repositoryItemImageComboBox1.AutoHeight = false;
     this.repositoryItemImageComboBox1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                               new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemImageComboBox1.Items.AddRange(new object[] {
                                                                       new DevExpress.XtraEditors.Controls.ImageComboBoxItem("No Bonus", 0, -1),
                                                                       new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Extra for All Permenant Class", 1, -1),
                                                                       new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Extra for All Class Taught", 2, -1)});
     this.repositoryItemImageComboBox1.Name = "repositoryItemImageComboBox1";
     //
     // repositoryItemComboBox2
     //
     this.repositoryItemComboBox2.AutoHeight = false;
     this.repositoryItemComboBox2.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                          new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemComboBox2.Name = "repositoryItemComboBox2";
     //
     // tabPageInstructorComm
     //
     this.tabPageInstructorComm.Controls.Add(this.gridControlMd_InstructorCommission);
     this.tabPageInstructorComm.Name = "tabPageInstructorComm";
     this.tabPageInstructorComm.Size = new System.Drawing.Size(948, 442);
     this.tabPageInstructorComm.Text = "Commission";
     //
     // gridControlMd_InstructorCommission
     //
     this.gridControlMd_InstructorCommission.Dock = System.Windows.Forms.DockStyle.Fill;
     //
     // gridControlMd_InstructorCommission.EmbeddedNavigator
     //
     this.gridControlMd_InstructorCommission.EmbeddedNavigator.Name = "";
     this.gridControlMd_InstructorCommission.Location = new System.Drawing.Point(0, 0);
     this.gridControlMd_InstructorCommission.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.gridControlMd_InstructorCommission.LookAndFeel.UseWindowsXPTheme = false;
     this.gridControlMd_InstructorCommission.MainView = this.gridViewMdIC;
     this.gridControlMd_InstructorCommission.Name = "gridControlMd_InstructorCommission";
     this.gridControlMd_InstructorCommission.Size = new System.Drawing.Size(948, 442);
     this.gridControlMd_InstructorCommission.TabIndex = 14;
     this.gridControlMd_InstructorCommission.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
                                                                                                                       this.gridViewMdIC});
     //
     // gridViewMdIC
     //
     this.gridViewMdIC.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
                                                                                         this.gridColumnMdIC1,
                                                                                         this.gridColumnMdIC2});
     this.gridViewMdIC.GridControl = this.gridControlMd_InstructorCommission;
     this.gridViewMdIC.Name = "gridViewMdIC";
     this.gridViewMdIC.OptionsCustomization.AllowFilter = false;
     this.gridViewMdIC.OptionsCustomization.AllowSort = false;
     this.gridViewMdIC.OptionsView.ShowGroupPanel = false;
     this.gridViewMdIC.LostFocus += new System.EventHandler(this.gridViewMdIC_LostFocus);
     //
     // gridColumnMdIC1
     //
     this.gridColumnMdIC1.Caption = "Commission Code";
     this.gridColumnMdIC1.FieldName = "nCommissionTypeID";
     this.gridColumnMdIC1.Name = "gridColumnMdIC1";
     this.gridColumnMdIC1.Visible = true;
     this.gridColumnMdIC1.VisibleIndex = 0;
     //
     // gridColumnMdIC2
     //
     this.gridColumnMdIC2.Caption = "Description";
     this.gridColumnMdIC2.FieldName = "strDescription";
     this.gridColumnMdIC2.Name = "gridColumnMdIC2";
     this.gridColumnMdIC2.Visible = true;
     this.gridColumnMdIC2.VisibleIndex = 1;
     //
     // tabPageInstructorTypeComm
     //
     this.tabPageInstructorTypeComm.Appearance.PageClient.BackColor = System.Drawing.SystemColors.Control;
     this.tabPageInstructorTypeComm.Appearance.PageClient.Options.UseBackColor = true;
     this.tabPageInstructorTypeComm.Controls.Add(this.gridControlMd_InstructorTypeCommission);
     this.tabPageInstructorTypeComm.Name = "tabPageInstructorTypeComm";
     this.tabPageInstructorTypeComm.Size = new System.Drawing.Size(948, 442);
     this.tabPageInstructorTypeComm.Text = "Instructor Type Commission";
     //
     // gridControlMd_InstructorTypeCommission
     //
     this.gridControlMd_InstructorTypeCommission.Dock = System.Windows.Forms.DockStyle.Fill;
     //
     // gridControlMd_InstructorTypeCommission.EmbeddedNavigator
     //
     this.gridControlMd_InstructorTypeCommission.EmbeddedNavigator.Name = "";
     this.gridControlMd_InstructorTypeCommission.Location = new System.Drawing.Point(0, 0);
     this.gridControlMd_InstructorTypeCommission.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.gridControlMd_InstructorTypeCommission.LookAndFeel.UseWindowsXPTheme = false;
     this.gridControlMd_InstructorTypeCommission.MainView = this.gridViewMdITC;
     this.gridControlMd_InstructorTypeCommission.Name = "gridControlMd_InstructorTypeCommission";
     this.gridControlMd_InstructorTypeCommission.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
                                                                                                                                     this.repositoryItemLookUpEdit1,
                                                                                                                                     this.repositoryItemLookUpEdit2});
     this.gridControlMd_InstructorTypeCommission.Size = new System.Drawing.Size(948, 442);
     this.gridControlMd_InstructorTypeCommission.TabIndex = 14;
     this.gridControlMd_InstructorTypeCommission.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
                                                                                                                           this.gridViewMdITC});
     //
     // gridViewMdITC
     //
     this.gridViewMdITC.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
                                                                                          this.gridColumnMdITC1,
                                                                                          this.gridColumnMdITC2,
                                                                                          this.gridColumnMdITC3});
     this.gridViewMdITC.GridControl = this.gridControlMd_InstructorTypeCommission;
     this.gridViewMdITC.Name = "gridViewMdITC";
     this.gridViewMdITC.OptionsCustomization.AllowFilter = false;
     this.gridViewMdITC.OptionsCustomization.AllowSort = false;
     this.gridViewMdITC.OptionsView.ShowGroupPanel = false;
     this.gridViewMdITC.LostFocus += new System.EventHandler(this.gridViewMdITC_LostFocus);
     //
     // gridColumnMdITC1
     //
     this.gridColumnMdITC1.Caption = "Instructor Type";
     this.gridColumnMdITC1.ColumnEdit = this.repositoryItemLookUpEdit1;
     this.gridColumnMdITC1.FieldName = "nInstructorTypeID";
     this.gridColumnMdITC1.Name = "gridColumnMdITC1";
     this.gridColumnMdITC1.Visible = true;
     this.gridColumnMdITC1.VisibleIndex = 0;
     //
     // repositoryItemLookUpEdit1
     //
     this.repositoryItemLookUpEdit1.AutoHeight = false;
     this.repositoryItemLookUpEdit1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemLookUpEdit1.Name = "repositoryItemLookUpEdit1";
     //
     // gridColumnMdITC2
     //
     this.gridColumnMdITC2.Caption = "Commission Type";
     this.gridColumnMdITC2.ColumnEdit = this.repositoryItemLookUpEdit2;
     this.gridColumnMdITC2.FieldName = "nCommissionTypeID";
     this.gridColumnMdITC2.Name = "gridColumnMdITC2";
     this.gridColumnMdITC2.Visible = true;
     this.gridColumnMdITC2.VisibleIndex = 1;
     //
     // repositoryItemLookUpEdit2
     //
     this.repositoryItemLookUpEdit2.AutoHeight = false;
     this.repositoryItemLookUpEdit2.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemLookUpEdit2.Name = "repositoryItemLookUpEdit2";
     //
     // gridColumnMdITC3
     //
     this.gridColumnMdITC3.Caption = "Commission Amount";
     this.gridColumnMdITC3.FieldName = "mCommissionAmount";
     this.gridColumnMdITC3.Name = "gridColumnMdITC3";
     this.gridColumnMdITC3.Visible = true;
     this.gridColumnMdITC3.VisibleIndex = 2;
     //
     // mdCM_tabPTCommision
     //
     this.mdCM_tabPTCommision.Controls.Add(this.gridControlMd_PTCommission);
     this.mdCM_tabPTCommision.Name = "mdCM_tabPTCommision";
     this.mdCM_tabPTCommision.Size = new System.Drawing.Size(954, 483);
     this.mdCM_tabPTCommision.Text = "PT Commission";
     //
     // gridControlMd_PTCommission
     //
     this.gridControlMd_PTCommission.Dock = System.Windows.Forms.DockStyle.Fill;
     //
     // gridControlMd_PTCommission.EmbeddedNavigator
     //
     this.gridControlMd_PTCommission.EmbeddedNavigator.Name = "";
     this.gridControlMd_PTCommission.Location = new System.Drawing.Point(0, 0);
     this.gridControlMd_PTCommission.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.gridControlMd_PTCommission.LookAndFeel.UseWindowsXPTheme = false;
     this.gridControlMd_PTCommission.MainView = this.gridViewPTCommission;
     this.gridControlMd_PTCommission.Name = "gridControlMd_PTCommission";
     this.gridControlMd_PTCommission.Size = new System.Drawing.Size(954, 483);
     this.gridControlMd_PTCommission.TabIndex = 15;
     this.gridControlMd_PTCommission.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
                                                                                                               this.gridViewPTCommission,
                                                                                                               this.gridView2});
     //
     // gridViewPTCommission
     //
     this.gridViewPTCommission.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
                                                                                                 this.gridColumnPT1,
                                                                                                 this.gridColumnPT2,
                                                                                                 this.gridColumnPT3});
     this.gridViewPTCommission.GridControl = this.gridControlMd_PTCommission;
     this.gridViewPTCommission.Name = "gridViewPTCommission";
     this.gridViewPTCommission.OptionsCustomization.AllowFilter = false;
     this.gridViewPTCommission.OptionsCustomization.AllowSort = false;
     this.gridViewPTCommission.OptionsView.ShowGroupPanel = false;
     this.gridViewPTCommission.LostFocus += new System.EventHandler(this.gridViewPTCommission_LostFocus);
     //
     // gridColumnPT1
     //
     this.gridColumnPT1.Caption = "Lower Limit";
     this.gridColumnPT1.DisplayFormat.FormatString = "f2";
     this.gridColumnPT1.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumnPT1.FieldName = "nLowerLimit";
     this.gridColumnPT1.Name = "gridColumnPT1";
     this.gridColumnPT1.Visible = true;
     this.gridColumnPT1.VisibleIndex = 0;
     //
     // gridColumnPT2
     //
     this.gridColumnPT2.Caption = "Upper Limit";
     this.gridColumnPT2.DisplayFormat.FormatString = "f2";
     this.gridColumnPT2.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumnPT2.FieldName = "nUpperLimit";
     this.gridColumnPT2.Name = "gridColumnPT2";
     this.gridColumnPT2.Visible = true;
     this.gridColumnPT2.VisibleIndex = 1;
     //
     // gridColumnPT3
     //
     this.gridColumnPT3.Caption = "Service Commission";
     this.gridColumnPT3.DisplayFormat.FormatString = "f2";
     this.gridColumnPT3.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumnPT3.FieldName = "mServiceCommission";
     this.gridColumnPT3.Name = "gridColumnPT3";
     this.gridColumnPT3.Visible = true;
     this.gridColumnPT3.VisibleIndex = 2;
     //
     // gridView2
     //
     this.gridView2.GridControl = this.gridControlMd_PTCommission;
     this.gridView2.Name = "gridView2";
     //
     // btn_Add
     //
     this.btn_Add.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.btn_Add.Appearance.Options.UseFont = true;
     this.btn_Add.Appearance.Options.UseTextOptions = true;
     this.btn_Add.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.btn_Add.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.btn_Add.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.btn_Add.ImageIndex = 0;
     this.btn_Add.ImageList = this.imageList1;
     this.btn_Add.ImeMode = System.Windows.Forms.ImeMode.On;
     this.btn_Add.Location = new System.Drawing.Point(16, 24);
     this.btn_Add.Name = "btn_Add";
     this.btn_Add.Size = new System.Drawing.Size(38, 16);
     this.btn_Add.TabIndex = 134;
     this.btn_Add.Click += new System.EventHandler(this.btn_Add_Click);
     //
     // btn_Del
     //
     this.btn_Del.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.btn_Del.Appearance.Options.UseFont = true;
     this.btn_Del.Appearance.Options.UseTextOptions = true;
     this.btn_Del.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.btn_Del.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.btn_Del.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.btn_Del.ImageIndex = 1;
     this.btn_Del.ImageList = this.imageList1;
     this.btn_Del.Location = new System.Drawing.Point(56, 24);
     this.btn_Del.Name = "btn_Del";
     this.btn_Del.Size = new System.Drawing.Size(38, 16);
     this.btn_Del.TabIndex = 133;
     this.btn_Del.Click += new System.EventHandler(this.btn_Del_Click);
     //
     // panelSalesCommission
     //
     this.panelSalesCommission.BackColor = System.Drawing.Color.Transparent;
     this.panelSalesCommission.Controls.Add(this.cmbYear);
     this.panelSalesCommission.Controls.Add(this.label12);
     this.panelSalesCommission.Controls.Add(this.lkBranch);
     this.panelSalesCommission.Controls.Add(this.label3);
     this.panelSalesCommission.Controls.Add(this.btn_Search);
     this.panelSalesCommission.Location = new System.Drawing.Point(176, 16);
     this.panelSalesCommission.Name = "panelSalesCommission";
     this.panelSalesCommission.Size = new System.Drawing.Size(792, 32);
     this.panelSalesCommission.TabIndex = 220;
     //
     // cmbYear
     //
     this.cmbYear.Location = new System.Drawing.Point(640, 8);
     this.cmbYear.Name = "cmbYear";
     //
     // cmbYear.Properties
     //
     this.cmbYear.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cmbYear.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.cmbYear.Size = new System.Drawing.Size(48, 20);
     this.cmbYear.TabIndex = 221;
     //
     // label12
     //
     this.label12.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label12.Location = new System.Drawing.Point(600, 12);
     this.label12.Name = "label12";
     this.label12.Size = new System.Drawing.Size(40, 16);
     this.label12.TabIndex = 220;
     this.label12.Text = "Year";
     //
     // lkBranch
     //
     this.lkBranch.Location = new System.Drawing.Point(472, 8);
     this.lkBranch.Name = "lkBranch";
     //
     // lkBranch.Properties
     //
     this.lkBranch.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                      new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lkBranch.Size = new System.Drawing.Size(112, 20);
     this.lkBranch.TabIndex = 149;
     this.lkBranch.KeyDown += new System.Windows.Forms.KeyEventHandler(this.Branch_KeyDown);
     //
     // label3
     //
     this.label3.BackColor = System.Drawing.Color.Transparent;
     this.label3.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label3.Location = new System.Drawing.Point(392, 12);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(56, 16);
     this.label3.TabIndex = 148;
     this.label3.Text = "Branch";
     this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // btn_Search
     //
     this.btn_Search.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.btn_Search.Appearance.Options.UseFont = true;
     this.btn_Search.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btn_Search.Location = new System.Drawing.Point(712, 8);
     this.btn_Search.Name = "btn_Search";
     this.btn_Search.Size = new System.Drawing.Size(56, 20);
     this.btn_Search.TabIndex = 219;
     this.btn_Search.Text = "Search";
     this.btn_Search.Click += new System.EventHandler(this.btn_Search_Click);
     //
     // frmCommission
     //
     this.AutoScale = false;
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.BackColor = System.Drawing.Color.White;
     this.ClientSize = new System.Drawing.Size(1000, 560);
     this.Controls.Add(this.grpMDCommision);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
     this.Name = "frmCommission";
     this.Text = "frmCommission";
     this.Load += new System.EventHandler(this.frmCommission_Load);
     ((System.ComponentModel.ISupportInitialize)(this.grpMDCommision)).EndInit();
     this.grpMDCommision.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.tabControlCommission)).EndInit();
     this.tabControlCommission.ResumeLayout(false);
     this.mdCM_tabSalesCommision.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.grpSubMDCommissionScheme)).EndInit();
     this.grpSubMDCommissionScheme.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMd_SalesCommisionScheme)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMd_SalesCommission)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_CalMethod)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_CrossSales)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.mdSC_txtNEmployeeID.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tabControlCommissionEntry)).EndInit();
     this.tabControlCommissionEntry.ResumeLayout(false);
     this.tabMethodOne.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.grpMDPromotionBelow2)).EndInit();
     this.grpMDPromotionBelow2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridCategory2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewCategory2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridCategory)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewCategory)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridTarget)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewTarget)).EndInit();
     this.tabMethodTwo.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridRange)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewRange)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_fCombine)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).EndInit();
     this.groupControl2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.grid2Category2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView2Category2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.grid2Category)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView2Category)).EndInit();
     this.tabMethodThree.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridMgr)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMgr)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_fCombine_Mgr)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl3)).EndInit();
     this.groupControl3.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.grid3Category2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView3Category2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.grid3Category)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView3Category)).EndInit();
     this.xtraTabPage1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMd_SalesCommisionSchemeEntries)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMd_SalesCommissionSchemeEntries)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemComboBox1)).EndInit();
     this.mdCM_tabInstructorCommision.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.tabControlInstructorCommission)).EndInit();
     this.tabControlInstructorCommission.ResumeLayout(false);
     this.tabPageInstructorType.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMd_InstructorType)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMdInstructor)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemImageComboBox1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemComboBox2)).EndInit();
     this.tabPageInstructorComm.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMd_InstructorCommission)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMdIC)).EndInit();
     this.tabPageInstructorTypeComm.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMd_InstructorTypeCommission)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMdITC)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEdit2)).EndInit();
     this.mdCM_tabPTCommision.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMd_PTCommission)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewPTCommission)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView2)).EndInit();
     this.panelSalesCommission.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.cmbYear.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkBranch.Properties)).EndInit();
     this.ResumeLayout(false);
 }
Beispiel #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.components = new System.ComponentModel.Container();
     DevExpress.XtraPivotGrid.PivotGridGroup pivotGridGroup1 = new DevExpress.XtraPivotGrid.PivotGridGroup();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(RPIncomeAnalysis));
     DevExpress.XtraPivotGrid.PivotGridGroup pivotGridGroup2 = new DevExpress.XtraPivotGrid.PivotGridGroup();
     DevExpress.XtraPivotGrid.PivotGridGroup pivotGridGroup3 = new DevExpress.XtraPivotGrid.PivotGridGroup();
     DevExpress.XtraPivotGrid.PivotGridGroup pivotGridGroup4 = new DevExpress.XtraPivotGrid.PivotGridGroup();
     this.CurrentGridIncomeAnalysis = new DevExpress.XtraPivotGrid.PivotGridControl();
     this.pv2NettAmount = new DevExpress.XtraPivotGrid.PivotGridField();
     this.pivotGridField7 = new DevExpress.XtraPivotGrid.PivotGridField();
     this.pivotGridField8 = new DevExpress.XtraPivotGrid.PivotGridField();
     this.v2TargetAmount = new DevExpress.XtraPivotGrid.PivotGridField();
     this.TargetPercent = new DevExpress.XtraPivotGrid.PivotGridField();
     this.DayMonthEnd = new DevExpress.XtraPivotGrid.PivotGridField();
     this.DayAvg = new DevExpress.XtraPivotGrid.PivotGridField();
     this.pivotGridField14 = new DevExpress.XtraPivotGrid.PivotGridField();
     this.colTest = new DevExpress.XtraPivotGrid.PivotGridField();
     this.label63 = new System.Windows.Forms.Label();
     this.cmbCategory = new DevExpress.XtraEditors.ImageComboBoxEdit();
     this.label2 = new System.Windows.Forms.Label();
     this.imageList1 = new System.Windows.Forms.ImageList(this.components);
     this.PRINT1 = new DevExpress.XtraEditors.HyperLinkEdit();
     this.printingSystem1 = new DevExpress.XtraPrinting.PrintingSystem(this.components);
     this.printableComponentLink1 = new DevExpress.XtraPrinting.PrintableComponentLink(this.components);
     this.printableComponentLink2 = new DevExpress.XtraPrinting.PrintableComponentLink(this.components);
     this.printableComponentLink3 = new DevExpress.XtraPrinting.PrintableComponentLink(this.components);
     this.printableComponentLink4 = new DevExpress.XtraPrinting.PrintableComponentLink(this.components);
     this.hyperLinkEdit1 = new DevExpress.XtraEditors.HyperLinkEdit();
     this.PrevGridIncomeAnalysis = new DevExpress.XtraPivotGrid.PivotGridControl();
     this.pivotGridField1 = new DevExpress.XtraPivotGrid.PivotGridField();
     this.pivotGridField3 = new DevExpress.XtraPivotGrid.PivotGridField();
     this.pivotGridField4 = new DevExpress.XtraPivotGrid.PivotGridField();
     this.vTargetAmt = new DevExpress.XtraPivotGrid.PivotGridField();
     this.TargetAmt = new DevExpress.XtraPivotGrid.PivotGridField();
     this.pivotGridField13 = new DevExpress.XtraPivotGrid.PivotGridField();
     this.TestTargetAmt = new DevExpress.XtraPivotGrid.PivotGridField();
     this.label3 = new System.Windows.Forms.Label();
     this.label1 = new System.Windows.Forms.Label();
     this.hyperLinkEdit2 = new DevExpress.XtraEditors.HyperLinkEdit();
     this.btn_Add = new DevExpress.XtraEditors.SimpleButton();
     this.btn_Del = new DevExpress.XtraEditors.SimpleButton();
     this.pvGrandTotal10Days = new DevExpress.XtraPivotGrid.PivotGridControl();
     this.pivotGridField16 = new DevExpress.XtraPivotGrid.PivotGridField();
     this.pivotGridField17 = new DevExpress.XtraPivotGrid.PivotGridField();
     this.ThirdGridIncomeAnalysis = new DevExpress.XtraPivotGrid.PivotGridControl();
     this.pivotGridField11 = new DevExpress.XtraPivotGrid.PivotGridField();
     this.pivotGridField12 = new DevExpress.XtraPivotGrid.PivotGridField();
     this.pivotGridField9 = new DevExpress.XtraPivotGrid.PivotGridField();
     this.cmbMonth = new System.Windows.Forms.ComboBox();
     this.label4 = new System.Windows.Forms.Label();
     ((System.ComponentModel.ISupportInitialize)(this.CurrentGridIncomeAnalysis)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbCategory.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.PRINT1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.printingSystem1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.hyperLinkEdit1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.PrevGridIncomeAnalysis)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.hyperLinkEdit2.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pvGrandTotal10Days)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ThirdGridIncomeAnalysis)).BeginInit();
     this.SuspendLayout();
     //
     // CurrentGridIncomeAnalysis
     //
     this.CurrentGridIncomeAnalysis.Cursor = System.Windows.Forms.Cursors.Default;
     this.CurrentGridIncomeAnalysis.Fields.AddRange(new DevExpress.XtraPivotGrid.PivotGridField[] {
     this.pv2NettAmount,
     this.pivotGridField7,
     this.pivotGridField8,
     this.v2TargetAmount,
     this.TargetPercent,
     this.DayMonthEnd,
     this.DayAvg,
     this.pivotGridField14,
     this.colTest});
     this.CurrentGridIncomeAnalysis.Groups.AddRange(new DevExpress.XtraPivotGrid.PivotGridGroup[] {
     pivotGridGroup1});
     this.CurrentGridIncomeAnalysis.Location = new System.Drawing.Point(0, 271);
     this.CurrentGridIncomeAnalysis.Name = "CurrentGridIncomeAnalysis";
     this.CurrentGridIncomeAnalysis.OptionsCustomization.AllowDrag = false;
     this.CurrentGridIncomeAnalysis.OptionsCustomization.AllowExpand = false;
     this.CurrentGridIncomeAnalysis.OptionsDataField.Area = DevExpress.XtraPivotGrid.PivotDataArea.RowArea;
     this.CurrentGridIncomeAnalysis.OptionsDataField.AreaIndex = 1;
     this.CurrentGridIncomeAnalysis.OptionsPrint.UsePrintAppearance = true;
     this.CurrentGridIncomeAnalysis.OptionsView.ShowDataHeaders = false;
     this.CurrentGridIncomeAnalysis.OptionsView.ShowFilterHeaders = false;
     this.CurrentGridIncomeAnalysis.OptionsView.ShowRowGrandTotals = false;
     this.CurrentGridIncomeAnalysis.Size = new System.Drawing.Size(960, 156);
     this.CurrentGridIncomeAnalysis.TabIndex = 1;
     this.CurrentGridIncomeAnalysis.Click += new System.EventHandler(this.CurrentGridIncomeAnalysis_Click);
     this.CurrentGridIncomeAnalysis.CustomSummary += new DevExpress.XtraPivotGrid.PivotGridCustomSummaryEventHandler(this.CurrentGridIncomeAnalysis_CustomSummary);
     //
     // pv2NettAmount
     //
     this.pv2NettAmount.Area = DevExpress.XtraPivotGrid.PivotArea.DataArea;
     this.pv2NettAmount.AreaIndex = 0;
     this.pv2NettAmount.Caption = "Branch Sales";
     this.pv2NettAmount.CellFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.pv2NettAmount.FieldName = "mNettAmount";
     this.pv2NettAmount.Name = "pv2NettAmount";
     this.pv2NettAmount.TotalCellFormat.FormatString = "f2";
     this.pv2NettAmount.TotalCellFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.pv2NettAmount.TotalValueFormat.FormatString = "f2";
     this.pv2NettAmount.TotalValueFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.pv2NettAmount.ValueFormat.FormatString = "f2";
     this.pv2NettAmount.ValueFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.pv2NettAmount.Width = 80;
     //
     // pivotGridField7
     //
     this.pivotGridField7.Area = DevExpress.XtraPivotGrid.PivotArea.ColumnArea;
     this.pivotGridField7.AreaIndex = 0;
     this.pivotGridField7.Caption = "Branch";
     this.pivotGridField7.FieldName = "strBranchCode";
     this.pivotGridField7.Name = "pivotGridField7";
     this.pivotGridField7.Options.AllowDrag = DevExpress.Utils.DefaultBoolean.False;
     this.pivotGridField7.Options.AllowExpand = DevExpress.Utils.DefaultBoolean.False;
     this.pivotGridField7.Options.AllowFilter = DevExpress.Utils.DefaultBoolean.False;
     this.pivotGridField7.Options.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.pivotGridField7.Width = 80;
     //
     // pivotGridField8
     //
     this.pivotGridField8.Area = DevExpress.XtraPivotGrid.PivotArea.DataArea;
     this.pivotGridField8.AreaIndex = 1;
     this.pivotGridField8.Caption = "Branch Sales";
     this.pivotGridField8.FieldName = "mTotalAmount";
     this.pivotGridField8.Name = "pivotGridField8";
     this.pivotGridField8.Visible = false;
     this.pivotGridField8.Width = 80;
     //
     // v2TargetAmount
     //
     this.v2TargetAmount.Area = DevExpress.XtraPivotGrid.PivotArea.DataArea;
     this.v2TargetAmount.AreaIndex = 2;
     this.v2TargetAmount.Caption = "Amount - Target";
     this.v2TargetAmount.Name = "v2TargetAmount";
     this.v2TargetAmount.SummaryType = DevExpress.Data.PivotGrid.PivotSummaryType.Custom;
     this.v2TargetAmount.UnboundFieldName = "pv2TargetAmount";
     this.v2TargetAmount.UnboundType = DevExpress.Data.UnboundColumnType.Decimal;
     //
     // TargetPercent
     //
     this.TargetPercent.Area = DevExpress.XtraPivotGrid.PivotArea.DataArea;
     this.TargetPercent.AreaIndex = 2;
     this.TargetPercent.Caption = "% of Target";
     this.TargetPercent.CellFormat.FormatString = "p";
     this.TargetPercent.CellFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.TargetPercent.Name = "TargetPercent";
     this.TargetPercent.SummaryDisplayType = DevExpress.Data.PivotGrid.PivotSummaryDisplayType.PercentVariation;
     this.TargetPercent.SummaryType = DevExpress.Data.PivotGrid.PivotSummaryType.Custom;
     this.TargetPercent.TotalCellFormat.FormatString = "p";
     this.TargetPercent.TotalCellFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.TargetPercent.TotalValueFormat.FormatString = "p";
     this.TargetPercent.TotalValueFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.TargetPercent.ValueFormat.FormatString = "p";
     this.TargetPercent.ValueFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.TargetPercent.Visible = false;
     //
     // DayMonthEnd
     //
     this.DayMonthEnd.Area = DevExpress.XtraPivotGrid.PivotArea.DataArea;
     this.DayMonthEnd.AreaIndex = 3;
     this.DayMonthEnd.Caption = "Days To Month End";
     this.DayMonthEnd.Name = "DayMonthEnd";
     this.DayMonthEnd.SummaryType = DevExpress.Data.PivotGrid.PivotSummaryType.Min;
     //
     // DayAvg
     //
     this.DayAvg.Appearance.ValueTotal.ForeColor = System.Drawing.Color.Black;
     this.DayAvg.Appearance.ValueTotal.Options.UseForeColor = true;
     this.DayAvg.Area = DevExpress.XtraPivotGrid.PivotArea.DataArea;
     this.DayAvg.AreaIndex = 4;
     this.DayAvg.Caption = "Daily Average";
     this.DayAvg.Name = "DayAvg";
     this.DayAvg.SummaryType = DevExpress.Data.PivotGrid.PivotSummaryType.Custom;
     this.DayAvg.TotalCellFormat.FormatString = "f2";
     this.DayAvg.TotalCellFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.DayAvg.TotalValueFormat.FormatString = "f2";
     this.DayAvg.TotalValueFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.DayAvg.UnboundFieldName = "DailyAvg";
     this.DayAvg.UnboundType = DevExpress.Data.UnboundColumnType.Decimal;
     this.DayAvg.ValueFormat.FormatString = "f2";
     this.DayAvg.ValueFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     //
     // pivotGridField14
     //
     this.pivotGridField14.Area = DevExpress.XtraPivotGrid.PivotArea.RowArea;
     this.pivotGridField14.AreaIndex = 0;
     this.pivotGridField14.Caption = "Month";
     this.pivotGridField14.FieldName = "dtMonth";
     this.pivotGridField14.Name = "pivotGridField14";
     this.pivotGridField14.Options.AllowDrag = DevExpress.Utils.DefaultBoolean.False;
     this.pivotGridField14.Options.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.pivotGridField14.Width = 80;
     //
     // colTest
     //
     this.colTest.Area = DevExpress.XtraPivotGrid.PivotArea.DataArea;
     this.colTest.AreaIndex = 1;
     this.colTest.Caption = "% of Target";
     this.colTest.CellFormat.FormatString = "P";
     this.colTest.CellFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.colTest.Name = "colTest";
     this.colTest.SummaryType = DevExpress.Data.PivotGrid.PivotSummaryType.Custom;
     //
     // label63
     //
     this.label63.BackColor = System.Drawing.Color.Transparent;
     this.label63.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label63.Location = new System.Drawing.Point(547, 10);
     this.label63.Name = "label63";
     this.label63.Size = new System.Drawing.Size(56, 16);
     this.label63.TabIndex = 36;
     this.label63.Text = "Category";
     //
     // cmbCategory
     //
     this.cmbCategory.EditValue = "cbGIROStatus";
     this.cmbCategory.Location = new System.Drawing.Point(608, 8);
     this.cmbCategory.Name = "cmbCategory";
     this.cmbCategory.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cmbCategory.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.cmbCategory.Size = new System.Drawing.Size(200, 20);
     this.cmbCategory.TabIndex = 35;
     this.cmbCategory.SelectedValueChanged += new System.EventHandler(this.cmbCategory_SelectedValueChanged);
     //
     // label2
     //
     this.label2.BackColor = System.Drawing.Color.Transparent;
     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(0, 253);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(112, 16);
     this.label2.TabIndex = 38;
     this.label2.Text = "Current Month Sales";
     this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // imageList1
     //
     this.imageList1.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
     this.imageList1.TransparentColor = System.Drawing.Color.Magenta;
     this.imageList1.Images.SetKeyName(0, "");
     this.imageList1.Images.SetKeyName(1, "");
     this.imageList1.Images.SetKeyName(2, "");
     this.imageList1.Images.SetKeyName(3, "");
     this.imageList1.Images.SetKeyName(4, "");
     this.imageList1.Images.SetKeyName(5, "");
     this.imageList1.Images.SetKeyName(6, "");
     //
     // PRINT1
     //
     this.PRINT1.EditValue = "PRINT";
     this.PRINT1.Location = new System.Drawing.Point(168, 432);
     this.PRINT1.Name = "PRINT1";
     this.PRINT1.Properties.Appearance.BackColor = System.Drawing.SystemColors.Control;
     this.PRINT1.Properties.Appearance.Options.UseBackColor = true;
     this.PRINT1.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.PRINT1.Size = new System.Drawing.Size(40, 18);
     this.PRINT1.TabIndex = 139;
     this.PRINT1.OpenLink += new DevExpress.XtraEditors.Controls.OpenLinkEventHandler(this.PRINT1_OpenLink);
     //
     // printingSystem1
     //
     this.printingSystem1.Links.AddRange(new object[] {
     this.printableComponentLink1,
     this.printableComponentLink2,
     this.printableComponentLink3,
     this.printableComponentLink4});
     //
     // printableComponentLink1
     //
     this.printableComponentLink1.Component = this.CurrentGridIncomeAnalysis;
     this.printableComponentLink1.CustomPaperSize = new System.Drawing.Size(0, 0);
     this.printableComponentLink1.ImageStream = ((DevExpress.Utils.ImageCollectionStreamer)(resources.GetObject("printableComponentLink1.ImageStream")));
     this.printableComponentLink1.Landscape = true;
     this.printableComponentLink1.Margins = new System.Drawing.Printing.Margins(50, 50, 50, 50);
     this.printableComponentLink1.PageHeaderFooter = new DevExpress.XtraPrinting.PageHeaderFooter(new DevExpress.XtraPrinting.PageHeaderArea(new string[] {
         "\r\nCurrent Month Sales Report",
         "Income Analysis Report",
         "[Date Printed][Time Printed]"}, new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))), DevExpress.XtraPrinting.BrickAlignment.Near), new DevExpress.XtraPrinting.PageFooterArea(new string[] {
         "",
         "",
         "[Page # of Pages #]"}, new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))), DevExpress.XtraPrinting.BrickAlignment.Near));
     this.printableComponentLink1.PaperKind = System.Drawing.Printing.PaperKind.A4;
     this.printableComponentLink1.PrintingSystem = this.printingSystem1;
     this.printableComponentLink1.VerticalContentSplitting = DevExpress.XtraPrinting.VerticalContentSplitting.Smart;
     //
     // printableComponentLink2
     //
     this.printableComponentLink2.CustomPaperSize = new System.Drawing.Size(0, 0);
     this.printableComponentLink2.ImageStream = ((DevExpress.Utils.ImageCollectionStreamer)(resources.GetObject("printableComponentLink2.ImageStream")));
     this.printableComponentLink2.Landscape = true;
     this.printableComponentLink2.Margins = new System.Drawing.Printing.Margins(50, 50, 50, 50);
     this.printableComponentLink2.PageHeaderFooter = new DevExpress.XtraPrinting.PageHeaderFooter(new DevExpress.XtraPrinting.PageHeaderArea(new string[] {
         "Previus Two Month Sales Report",
         "",
         "[Date Printed][Time Printed]"}, new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))), DevExpress.XtraPrinting.BrickAlignment.Near), new DevExpress.XtraPrinting.PageFooterArea(new string[] {
         "",
         "",
         "[Page # of Pages #]"}, new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))), DevExpress.XtraPrinting.BrickAlignment.Near));
     this.printableComponentLink2.PaperKind = System.Drawing.Printing.PaperKind.A4;
     this.printableComponentLink2.PrintingSystem = this.printingSystem1;
     this.printableComponentLink2.VerticalContentSplitting = DevExpress.XtraPrinting.VerticalContentSplitting.Smart;
     //
     // printableComponentLink3
     //
     this.printableComponentLink3.CustomPaperSize = new System.Drawing.Size(0, 0);
     this.printableComponentLink3.ImageStream = ((DevExpress.Utils.ImageCollectionStreamer)(resources.GetObject("printableComponentLink3.ImageStream")));
     this.printableComponentLink3.Landscape = true;
     this.printableComponentLink3.Margins = new System.Drawing.Printing.Margins(50, 50, 50, 50);
     this.printableComponentLink3.PageHeaderFooter = new DevExpress.XtraPrinting.PageHeaderFooter(new DevExpress.XtraPrinting.PageHeaderArea(new string[] {
         "Previous 10 Days Sales Report",
         "",
         "[Date Printed][Time Printed]"}, new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))), DevExpress.XtraPrinting.BrickAlignment.Near), new DevExpress.XtraPrinting.PageFooterArea(new string[] {
         "",
         "",
         "[Page # of Pages #]"}, new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))), DevExpress.XtraPrinting.BrickAlignment.Near));
     this.printableComponentLink3.PaperKind = System.Drawing.Printing.PaperKind.A4;
     this.printableComponentLink3.PrintingSystem = this.printingSystem1;
     this.printableComponentLink3.VerticalContentSplitting = DevExpress.XtraPrinting.VerticalContentSplitting.Smart;
     //
     // printableComponentLink4
     //
     this.printableComponentLink4.CustomPaperSize = new System.Drawing.Size(0, 0);
     this.printableComponentLink4.ImageStream = ((DevExpress.Utils.ImageCollectionStreamer)(resources.GetObject("printableComponentLink4.ImageStream")));
     this.printableComponentLink4.Landscape = true;
     this.printableComponentLink4.Margins = new System.Drawing.Printing.Margins(50, 50, 50, 50);
     this.printableComponentLink4.PageHeaderFooter = new DevExpress.XtraPrinting.PageHeaderFooter(new DevExpress.XtraPrinting.PageHeaderArea(new string[] {
         "Previous 10 Days Sales Report",
         "",
         "[Date Printed][Time Printed]"}, new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))), DevExpress.XtraPrinting.BrickAlignment.Near), new DevExpress.XtraPrinting.PageFooterArea(new string[] {
         "",
         "",
         "[Page # of Pages #]"}, new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))), DevExpress.XtraPrinting.BrickAlignment.Near));
     this.printableComponentLink4.PaperKind = System.Drawing.Printing.PaperKind.A4;
     this.printableComponentLink4.PrintingSystem = this.printingSystem1;
     this.printableComponentLink4.VerticalContentSplitting = DevExpress.XtraPrinting.VerticalContentSplitting.Smart;
     //
     // hyperLinkEdit1
     //
     this.hyperLinkEdit1.EditValue = "PRINT";
     this.hyperLinkEdit1.Location = new System.Drawing.Point(120, 253);
     this.hyperLinkEdit1.Name = "hyperLinkEdit1";
     this.hyperLinkEdit1.Properties.Appearance.BackColor = System.Drawing.SystemColors.Control;
     this.hyperLinkEdit1.Properties.Appearance.Options.UseBackColor = true;
     this.hyperLinkEdit1.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.hyperLinkEdit1.Size = new System.Drawing.Size(40, 18);
     this.hyperLinkEdit1.TabIndex = 140;
     this.hyperLinkEdit1.OpenLink += new DevExpress.XtraEditors.Controls.OpenLinkEventHandler(this.hyperLinkEdit1_OpenLink);
     //
     // PrevGridIncomeAnalysis
     //
     this.PrevGridIncomeAnalysis.AppearancePrint.Cell.Font = new System.Drawing.Font("Tahoma", 6.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.PrevGridIncomeAnalysis.AppearancePrint.Cell.Options.UseFont = true;
     this.PrevGridIncomeAnalysis.AppearancePrint.CustomTotalCell.Font = new System.Drawing.Font("Tahoma", 6.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.PrevGridIncomeAnalysis.AppearancePrint.CustomTotalCell.Options.UseFont = true;
     this.PrevGridIncomeAnalysis.AppearancePrint.FieldValue.Font = new System.Drawing.Font("Tahoma", 6.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.PrevGridIncomeAnalysis.AppearancePrint.FieldValue.Options.UseFont = true;
     this.PrevGridIncomeAnalysis.AppearancePrint.FieldValueGrandTotal.Font = new System.Drawing.Font("Tahoma", 6.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.PrevGridIncomeAnalysis.AppearancePrint.FieldValueGrandTotal.Options.UseFont = true;
     this.PrevGridIncomeAnalysis.AppearancePrint.FieldValueTotal.Font = new System.Drawing.Font("Tahoma", 6.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.PrevGridIncomeAnalysis.AppearancePrint.FieldValueTotal.Options.UseFont = true;
     this.PrevGridIncomeAnalysis.AppearancePrint.FilterSeparator.Font = new System.Drawing.Font("Tahoma", 6.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.PrevGridIncomeAnalysis.AppearancePrint.FilterSeparator.Options.UseFont = true;
     this.PrevGridIncomeAnalysis.AppearancePrint.GrandTotalCell.Font = new System.Drawing.Font("Tahoma", 6.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.PrevGridIncomeAnalysis.AppearancePrint.GrandTotalCell.Options.UseFont = true;
     this.PrevGridIncomeAnalysis.AppearancePrint.Lines.Font = new System.Drawing.Font("Tahoma", 6.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.PrevGridIncomeAnalysis.AppearancePrint.Lines.Options.UseFont = true;
     this.PrevGridIncomeAnalysis.AppearancePrint.TotalCell.Font = new System.Drawing.Font("Tahoma", 6.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.PrevGridIncomeAnalysis.AppearancePrint.TotalCell.Options.UseFont = true;
     this.PrevGridIncomeAnalysis.Cursor = System.Windows.Forms.Cursors.Default;
     this.PrevGridIncomeAnalysis.Fields.AddRange(new DevExpress.XtraPivotGrid.PivotGridField[] {
     this.pivotGridField1,
     this.pivotGridField3,
     this.pivotGridField4,
     this.vTargetAmt,
     this.TargetAmt,
     this.pivotGridField13,
     this.TestTargetAmt});
     this.PrevGridIncomeAnalysis.Groups.AddRange(new DevExpress.XtraPivotGrid.PivotGridGroup[] {
     pivotGridGroup2});
     this.PrevGridIncomeAnalysis.Location = new System.Drawing.Point(-8, 450);
     this.PrevGridIncomeAnalysis.Name = "PrevGridIncomeAnalysis";
     this.PrevGridIncomeAnalysis.OptionsBehavior.ApplyBestFitOnFieldDragging = true;
     this.PrevGridIncomeAnalysis.OptionsCustomization.AllowDrag = false;
     this.PrevGridIncomeAnalysis.OptionsCustomization.AllowExpand = false;
     this.PrevGridIncomeAnalysis.OptionsCustomization.AllowHideFields = DevExpress.XtraPivotGrid.AllowHideFieldsType.Never;
     this.PrevGridIncomeAnalysis.OptionsCustomization.AllowSort = false;
     this.PrevGridIncomeAnalysis.OptionsDataField.Area = DevExpress.XtraPivotGrid.PivotDataArea.RowArea;
     this.PrevGridIncomeAnalysis.OptionsDataField.AreaIndex = 1;
     this.PrevGridIncomeAnalysis.OptionsPrint.PrintDataHeaders = DevExpress.Utils.DefaultBoolean.False;
     this.PrevGridIncomeAnalysis.OptionsPrint.PrintFilterHeaders = DevExpress.Utils.DefaultBoolean.False;
     this.PrevGridIncomeAnalysis.OptionsPrint.UsePrintAppearance = true;
     this.PrevGridIncomeAnalysis.OptionsView.ShowDataHeaders = false;
     this.PrevGridIncomeAnalysis.OptionsView.ShowFilterHeaders = false;
     this.PrevGridIncomeAnalysis.OptionsView.ShowFilterSeparatorBar = false;
     this.PrevGridIncomeAnalysis.OptionsView.ShowRowGrandTotals = false;
     this.PrevGridIncomeAnalysis.Size = new System.Drawing.Size(960, 176);
     this.PrevGridIncomeAnalysis.TabIndex = 142;
     //
     // pivotGridField1
     //
     this.pivotGridField1.Area = DevExpress.XtraPivotGrid.PivotArea.DataArea;
     this.pivotGridField1.AreaIndex = 0;
     this.pivotGridField1.Caption = "Branch Sales";
     this.pivotGridField1.ExpandedInFieldsGroup = false;
     this.pivotGridField1.FieldName = "mNettAmount";
     this.pivotGridField1.MinWidth = 80;
     this.pivotGridField1.Name = "pivotGridField1";
     this.pivotGridField1.Options.AllowDrag = DevExpress.Utils.DefaultBoolean.False;
     this.pivotGridField1.Options.AllowExpand = DevExpress.Utils.DefaultBoolean.True;
     this.pivotGridField1.Options.AllowFilter = DevExpress.Utils.DefaultBoolean.False;
     this.pivotGridField1.Options.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.pivotGridField1.TotalCellFormat.FormatString = "f2";
     this.pivotGridField1.TotalCellFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.pivotGridField1.TotalValueFormat.FormatString = "f2";
     this.pivotGridField1.TotalValueFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.pivotGridField1.ValueFormat.FormatString = "f2";
     this.pivotGridField1.ValueFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.pivotGridField1.Width = 80;
     //
     // pivotGridField3
     //
     this.pivotGridField3.Area = DevExpress.XtraPivotGrid.PivotArea.ColumnArea;
     this.pivotGridField3.AreaIndex = 0;
     this.pivotGridField3.Caption = "Branch";
     this.pivotGridField3.FieldName = "strBranchCode";
     this.pivotGridField3.MinWidth = 10;
     this.pivotGridField3.Name = "pivotGridField3";
     this.pivotGridField3.Options.AllowDrag = DevExpress.Utils.DefaultBoolean.False;
     this.pivotGridField3.Options.AllowExpand = DevExpress.Utils.DefaultBoolean.True;
     this.pivotGridField3.Options.AllowFilter = DevExpress.Utils.DefaultBoolean.False;
     this.pivotGridField3.Options.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.pivotGridField3.Width = 80;
     //
     // pivotGridField4
     //
     this.pivotGridField4.Area = DevExpress.XtraPivotGrid.PivotArea.DataArea;
     this.pivotGridField4.AreaIndex = 1;
     this.pivotGridField4.FieldName = "mTotalAmount";
     this.pivotGridField4.Name = "pivotGridField4";
     this.pivotGridField4.Options.AllowDrag = DevExpress.Utils.DefaultBoolean.False;
     this.pivotGridField4.Options.AllowExpand = DevExpress.Utils.DefaultBoolean.False;
     this.pivotGridField4.Options.AllowFilter = DevExpress.Utils.DefaultBoolean.False;
     this.pivotGridField4.Options.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.pivotGridField4.TotalCellFormat.FormatString = "f2";
     this.pivotGridField4.TotalCellFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.pivotGridField4.TotalValueFormat.FormatString = "f2";
     this.pivotGridField4.TotalValueFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.pivotGridField4.ValueFormat.FormatString = "f2";
     this.pivotGridField4.ValueFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.pivotGridField4.Visible = false;
     this.pivotGridField4.Width = 80;
     //
     // vTargetAmt
     //
     this.vTargetAmt.Area = DevExpress.XtraPivotGrid.PivotArea.DataArea;
     this.vTargetAmt.AreaIndex = 1;
     this.vTargetAmt.Caption = "Target Amount";
     this.vTargetAmt.Name = "vTargetAmt";
     this.vTargetAmt.Options.AllowDrag = DevExpress.Utils.DefaultBoolean.False;
     this.vTargetAmt.Options.AllowExpand = DevExpress.Utils.DefaultBoolean.False;
     this.vTargetAmt.Options.AllowFilter = DevExpress.Utils.DefaultBoolean.False;
     this.vTargetAmt.Options.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.vTargetAmt.SummaryType = DevExpress.Data.PivotGrid.PivotSummaryType.Custom;
     this.vTargetAmt.TotalCellFormat.FormatString = "f2";
     this.vTargetAmt.TotalCellFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.vTargetAmt.TotalValueFormat.FormatString = "f2";
     this.vTargetAmt.TotalValueFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.vTargetAmt.UnboundFieldName = "gvTargetAmt";
     this.vTargetAmt.UnboundType = DevExpress.Data.UnboundColumnType.Decimal;
     this.vTargetAmt.ValueFormat.FormatString = "f2";
     this.vTargetAmt.ValueFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     //
     // TargetAmt
     //
     this.TargetAmt.Area = DevExpress.XtraPivotGrid.PivotArea.DataArea;
     this.TargetAmt.AreaIndex = 2;
     this.TargetAmt.Caption = "Amount > Target";
     this.TargetAmt.Name = "TargetAmt";
     this.TargetAmt.SummaryType = DevExpress.Data.PivotGrid.PivotSummaryType.Custom;
     this.TargetAmt.TotalValueFormat.FormatString = "f2";
     this.TargetAmt.TotalValueFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.TargetAmt.UnboundFieldName = "TargetAmount";
     this.TargetAmt.UnboundType = DevExpress.Data.UnboundColumnType.Decimal;
     this.TargetAmt.ValueFormat.FormatString = "f2";
     this.TargetAmt.ValueFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.TargetAmt.Width = 90;
     //
     // pivotGridField13
     //
     this.pivotGridField13.Area = DevExpress.XtraPivotGrid.PivotArea.RowArea;
     this.pivotGridField13.AreaIndex = 0;
     this.pivotGridField13.Caption = "Month";
     this.pivotGridField13.FieldName = "dtMonth";
     this.pivotGridField13.Name = "pivotGridField13";
     this.pivotGridField13.Options.AllowDrag = DevExpress.Utils.DefaultBoolean.False;
     this.pivotGridField13.Options.AllowFilter = DevExpress.Utils.DefaultBoolean.False;
     this.pivotGridField13.Width = 80;
     //
     // TestTargetAmt
     //
     this.TestTargetAmt.Area = DevExpress.XtraPivotGrid.PivotArea.ColumnArea;
     this.TestTargetAmt.AreaIndex = 1;
     this.TestTargetAmt.FieldName = "TargetAmount";
     this.TestTargetAmt.Name = "TestTargetAmt";
     this.TestTargetAmt.Visible = false;
     this.TestTargetAmt.Width = 90;
     //
     // label3
     //
     this.label3.BackColor = System.Drawing.Color.Transparent;
     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(-1, 8);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(136, 16);
     this.label3.TabIndex = 143;
     this.label3.Text = "Previous 10  Days Sales";
     this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // label1
     //
     this.label1.BackColor = System.Drawing.Color.Transparent;
     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(0, 432);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(96, 16);
     this.label1.TabIndex = 144;
     this.label1.Text = "Selected Month:";
     this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.label1.Click += new System.EventHandler(this.label1_Click);
     //
     // hyperLinkEdit2
     //
     this.hyperLinkEdit2.EditValue = "PRINT";
     this.hyperLinkEdit2.Location = new System.Drawing.Point(199, 8);
     this.hyperLinkEdit2.Name = "hyperLinkEdit2";
     this.hyperLinkEdit2.Properties.Appearance.BackColor = System.Drawing.SystemColors.Control;
     this.hyperLinkEdit2.Properties.Appearance.Options.UseBackColor = true;
     this.hyperLinkEdit2.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.hyperLinkEdit2.Size = new System.Drawing.Size(40, 18);
     this.hyperLinkEdit2.TabIndex = 147;
     //
     // btn_Add
     //
     this.btn_Add.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btn_Add.Appearance.Options.UseFont = true;
     this.btn_Add.Appearance.Options.UseTextOptions = true;
     this.btn_Add.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.btn_Add.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.btn_Add.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.btn_Add.ImageIndex = 0;
     this.btn_Add.ImageList = this.imageList1;
     this.btn_Add.ImeMode = System.Windows.Forms.ImeMode.On;
     this.btn_Add.Location = new System.Drawing.Point(135, 8);
     this.btn_Add.Name = "btn_Add";
     this.btn_Add.Size = new System.Drawing.Size(32, 16);
     this.btn_Add.TabIndex = 146;
     this.btn_Add.Click += new System.EventHandler(this.btn_Add_Click);
     //
     // btn_Del
     //
     this.btn_Del.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btn_Del.Appearance.Options.UseFont = true;
     this.btn_Del.Appearance.Options.UseTextOptions = true;
     this.btn_Del.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.btn_Del.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.btn_Del.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.btn_Del.ImageIndex = 1;
     this.btn_Del.ImageList = this.imageList1;
     this.btn_Del.Location = new System.Drawing.Point(168, 8);
     this.btn_Del.Name = "btn_Del";
     this.btn_Del.Size = new System.Drawing.Size(24, 16);
     this.btn_Del.TabIndex = 145;
     this.btn_Del.Click += new System.EventHandler(this.btn_Del_Click);
     //
     // pvGrandTotal10Days
     //
     this.pvGrandTotal10Days.Cursor = System.Windows.Forms.Cursors.Default;
     this.pvGrandTotal10Days.Fields.AddRange(new DevExpress.XtraPivotGrid.PivotGridField[] {
     this.pivotGridField16,
     this.pivotGridField17});
     this.pvGrandTotal10Days.Groups.AddRange(new DevExpress.XtraPivotGrid.PivotGridGroup[] {
     pivotGridGroup3});
     this.pvGrandTotal10Days.Location = new System.Drawing.Point(0, 32);
     this.pvGrandTotal10Days.Name = "pvGrandTotal10Days";
     this.pvGrandTotal10Days.OptionsCustomization.AllowDrag = false;
     this.pvGrandTotal10Days.OptionsCustomization.AllowExpand = false;
     this.pvGrandTotal10Days.OptionsCustomization.AllowSort = false;
     this.pvGrandTotal10Days.OptionsDataField.Area = DevExpress.XtraPivotGrid.PivotDataArea.RowArea;
     this.pvGrandTotal10Days.OptionsDataField.AreaIndex = 1;
     this.pvGrandTotal10Days.OptionsView.ShowDataHeaders = false;
     this.pvGrandTotal10Days.OptionsView.ShowFilterHeaders = false;
     this.pvGrandTotal10Days.OptionsView.ShowRowGrandTotals = false;
     this.pvGrandTotal10Days.Size = new System.Drawing.Size(960, 200);
     this.pvGrandTotal10Days.TabIndex = 150;
     //
     // pivotGridField16
     //
     this.pivotGridField16.Area = DevExpress.XtraPivotGrid.PivotArea.DataArea;
     this.pivotGridField16.AreaIndex = 0;
     this.pivotGridField16.Caption = "Nett Amount";
     this.pivotGridField16.FieldName = "mNettAmount";
     this.pivotGridField16.Name = "pivotGridField16";
     //
     // pivotGridField17
     //
     this.pivotGridField17.Area = DevExpress.XtraPivotGrid.PivotArea.ColumnArea;
     this.pivotGridField17.AreaIndex = 0;
     this.pivotGridField17.Caption = "Branch";
     this.pivotGridField17.FieldName = "strBranchCode";
     this.pivotGridField17.Name = "pivotGridField17";
     this.pivotGridField17.Options.AllowDrag = DevExpress.Utils.DefaultBoolean.False;
     this.pivotGridField17.Options.AllowExpand = DevExpress.Utils.DefaultBoolean.False;
     this.pivotGridField17.Options.AllowFilter = DevExpress.Utils.DefaultBoolean.False;
     this.pivotGridField17.Options.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     //
     // ThirdGridIncomeAnalysis
     //
     this.ThirdGridIncomeAnalysis.Cursor = System.Windows.Forms.Cursors.Default;
     this.ThirdGridIncomeAnalysis.Fields.AddRange(new DevExpress.XtraPivotGrid.PivotGridField[] {
     this.pivotGridField11,
     this.pivotGridField12,
     this.pivotGridField9});
     this.ThirdGridIncomeAnalysis.Groups.AddRange(new DevExpress.XtraPivotGrid.PivotGridGroup[] {
     pivotGridGroup4});
     this.ThirdGridIncomeAnalysis.Location = new System.Drawing.Point(0, 27);
     this.ThirdGridIncomeAnalysis.Name = "ThirdGridIncomeAnalysis";
     this.ThirdGridIncomeAnalysis.OptionsCustomization.AllowDrag = false;
     this.ThirdGridIncomeAnalysis.OptionsCustomization.AllowExpand = false;
     this.ThirdGridIncomeAnalysis.OptionsCustomization.AllowSort = false;
     this.ThirdGridIncomeAnalysis.OptionsDataField.Area = DevExpress.XtraPivotGrid.PivotDataArea.RowArea;
     this.ThirdGridIncomeAnalysis.OptionsDataField.AreaIndex = 1;
     this.ThirdGridIncomeAnalysis.OptionsView.ShowDataHeaders = false;
     this.ThirdGridIncomeAnalysis.OptionsView.ShowFilterHeaders = false;
     this.ThirdGridIncomeAnalysis.OptionsView.ShowRowGrandTotals = false;
     this.ThirdGridIncomeAnalysis.Size = new System.Drawing.Size(960, 224);
     this.ThirdGridIncomeAnalysis.TabIndex = 151;
     //
     // pivotGridField11
     //
     this.pivotGridField11.Area = DevExpress.XtraPivotGrid.PivotArea.DataArea;
     this.pivotGridField11.AreaIndex = 0;
     this.pivotGridField11.Caption = "Nett Amount";
     this.pivotGridField11.FieldName = "mNettAmount";
     this.pivotGridField11.Name = "pivotGridField11";
     this.pivotGridField11.Width = 90;
     //
     // pivotGridField12
     //
     this.pivotGridField12.Area = DevExpress.XtraPivotGrid.PivotArea.ColumnArea;
     this.pivotGridField12.AreaIndex = 0;
     this.pivotGridField12.Caption = "Branch";
     this.pivotGridField12.FieldName = "strBranchCode";
     this.pivotGridField12.Name = "pivotGridField12";
     this.pivotGridField12.Options.AllowDrag = DevExpress.Utils.DefaultBoolean.False;
     this.pivotGridField12.Options.AllowExpand = DevExpress.Utils.DefaultBoolean.False;
     this.pivotGridField12.Options.AllowFilter = DevExpress.Utils.DefaultBoolean.False;
     this.pivotGridField12.Options.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.pivotGridField12.Width = 90;
     //
     // pivotGridField9
     //
     this.pivotGridField9.Area = DevExpress.XtraPivotGrid.PivotArea.RowArea;
     this.pivotGridField9.AreaIndex = 0;
     this.pivotGridField9.Caption = "Date";
     this.pivotGridField9.FieldName = "dtDate";
     this.pivotGridField9.Name = "pivotGridField9";
     this.pivotGridField9.Options.AllowDrag = DevExpress.Utils.DefaultBoolean.False;
     this.pivotGridField9.Options.AllowExpand = DevExpress.Utils.DefaultBoolean.False;
     this.pivotGridField9.Options.AllowFilter = DevExpress.Utils.DefaultBoolean.False;
     this.pivotGridField9.Options.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.pivotGridField9.ValueFormat.FormatString = "d";
     this.pivotGridField9.ValueFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.pivotGridField9.Width = 80;
     //
     // cmbMonth
     //
     this.cmbMonth.Items.AddRange(new object[] {
     "1",
     "2",
     "3",
     "4",
     "5",
     "6",
     "7",
     "8",
     "9",
     "10",
     "11",
     "12"});
     this.cmbMonth.Location = new System.Drawing.Point(440, 5);
     this.cmbMonth.Name = "cmbMonth";
     this.cmbMonth.Size = new System.Drawing.Size(104, 21);
     this.cmbMonth.TabIndex = 152;
     this.cmbMonth.Text = "-Select Month-";
     this.cmbMonth.SelectedIndexChanged += new System.EventHandler(this.cmbMonth_SelectedIndexChanged);
     //
     // label4
     //
     this.label4.BackColor = System.Drawing.Color.Transparent;
     this.label4.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label4.Location = new System.Drawing.Point(392, 10);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(40, 16);
     this.label4.TabIndex = 153;
     this.label4.Text = "Month";
     //
     // RPIncomeAnalysis
     //
     this.AutoScroll = true;
     this.ClientSize = new System.Drawing.Size(994, 688);
     this.Controls.Add(this.label4);
     this.Controls.Add(this.cmbMonth);
     this.Controls.Add(this.hyperLinkEdit2);
     this.Controls.Add(this.btn_Add);
     this.Controls.Add(this.btn_Del);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.label3);
     this.Controls.Add(this.PrevGridIncomeAnalysis);
     this.Controls.Add(this.hyperLinkEdit1);
     this.Controls.Add(this.PRINT1);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.label63);
     this.Controls.Add(this.cmbCategory);
     this.Controls.Add(this.CurrentGridIncomeAnalysis);
     this.Controls.Add(this.ThirdGridIncomeAnalysis);
     this.Controls.Add(this.pvGrandTotal10Days);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "RPIncomeAnalysis";
     this.Padding = new System.Windows.Forms.Padding(0, 0, 0, 50);
     this.ShowInTaskbar = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Income Analysis Report";
     this.TopMost = true;
     this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
     this.Load += new System.EventHandler(this.ShowReport_Load);
     ((System.ComponentModel.ISupportInitialize)(this.CurrentGridIncomeAnalysis)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbCategory.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.PRINT1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.printingSystem1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.hyperLinkEdit1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.PrevGridIncomeAnalysis)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.hyperLinkEdit2.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pvGrandTotal10Days)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ThirdGridIncomeAnalysis)).EndInit();
     this.ResumeLayout(false);
 }
Beispiel #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.groupHdrMd_Promotion = new DevExpress.XtraEditors.GroupControl();
     this.hdrMd_Package = new System.Windows.Forms.Label();
     this.grpMDPackageBelow1 = new DevExpress.XtraEditors.GroupControl();
     this.mdPKG_lblStrPackageCategory = new System.Windows.Forms.Label();
     this.mdpkg_txtNCategoryID = new DevExpress.XtraEditors.TextEdit();
     this.mdPKG_txtStrPackageCode = new DevExpress.XtraEditors.TextEdit();
     this.btnPackageDelete = new DevExpress.XtraEditors.SimpleButton();
     this.btnPackageCancel = new DevExpress.XtraEditors.SimpleButton();
     this.btnPackageUpdate = new DevExpress.XtraEditors.SimpleButton();
     this.mdPKG_cbNStatus = new DevExpress.XtraEditors.ImageComboBoxEdit();
     this.mdPKG_txtNPackageDuration = new DevExpress.XtraEditors.TextEdit();
     this.mdPKG_txtMBaseUnitPrice = new DevExpress.XtraEditors.TextEdit();
     this.mdPKG_txtNMaxSession = new DevExpress.XtraEditors.TextEdit();
     this.mdPKG_txtNWarrantyMonths = new DevExpress.XtraEditors.TextEdit();
     this.mdPKG_txtNValidMonths = new DevExpress.XtraEditors.TextEdit();
     this.mdPKG_txtMListPrice = new DevExpress.XtraEditors.TextEdit();
     this.mdPKG_txtStrReceiptDesc = new DevExpress.XtraEditors.TextEdit();
     this.mdPKG_txtStrDescription = new DevExpress.XtraEditors.TextEdit();
     this.mdPKG_dtValidEnd = new DevExpress.XtraEditors.DateEdit();
     this.mdPKG_dtValidStart = new DevExpress.XtraEditors.DateEdit();
     this.grpMDPackageBelow2 = new DevExpress.XtraEditors.PanelControl();
     this.mdPKG_fStudentPackage = new DevExpress.XtraEditors.CheckEdit();
     this.mdPKG_fNoRestrictionUpgrade = new DevExpress.XtraEditors.CheckEdit();
     this.mdPKG_fPeak = new DevExpress.XtraEditors.CheckEdit();
     this.mdPKG_fGIRO = new DevExpress.XtraEditors.CheckEdit();
     this.mdPKG_lblNStatus = new System.Windows.Forms.Label();
     this.mdPKG_lblNWarrantyMonths = new System.Windows.Forms.Label();
     this.mdPKG_lvlNValidMonths = new System.Windows.Forms.Label();
     this.mdPKG_lbldtValidEnd = new System.Windows.Forms.Label();
     this.mdPKG_lbldtValidStart = new System.Windows.Forms.Label();
     this.mdPKG_lblMBaseUnitPrice = new System.Windows.Forms.Label();
     this.mdPKG_lblNPackageDuration = new System.Windows.Forms.Label();
     this.mdPKG_lblNMaxSession = new System.Windows.Forms.Label();
     this.mdPKG_lblMListPrice = new System.Windows.Forms.Label();
     this.mdPKG_lblStrReceiptDesc = new System.Windows.Forms.Label();
     this.mdPKG_lblStrDescription = new System.Windows.Forms.Label();
     this.mdPKG_lblStrPackageCode = new System.Windows.Forms.Label();
     ((System.ComponentModel.ISupportInitialize)(this.groupHdrMd_Promotion)).BeginInit();
     this.groupHdrMd_Promotion.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grpMDPackageBelow1)).BeginInit();
     this.grpMDPackageBelow1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.mdpkg_txtNCategoryID.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.mdPKG_txtStrPackageCode.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.mdPKG_cbNStatus.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.mdPKG_txtNPackageDuration.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.mdPKG_txtMBaseUnitPrice.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.mdPKG_txtNMaxSession.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.mdPKG_txtNWarrantyMonths.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.mdPKG_txtNValidMonths.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.mdPKG_txtMListPrice.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.mdPKG_txtStrReceiptDesc.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.mdPKG_txtStrDescription.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.mdPKG_dtValidEnd.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.mdPKG_dtValidEnd.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.mdPKG_dtValidStart.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.mdPKG_dtValidStart.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.grpMDPackageBelow2)).BeginInit();
     this.grpMDPackageBelow2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.mdPKG_fStudentPackage.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.mdPKG_fNoRestrictionUpgrade.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.mdPKG_fPeak.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.mdPKG_fGIRO.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // groupHdrMd_Promotion
     //
     this.groupHdrMd_Promotion.Appearance.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
     this.groupHdrMd_Promotion.Appearance.Options.UseBackColor = true;
     this.groupHdrMd_Promotion.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.groupHdrMd_Promotion.Controls.Add(this.hdrMd_Package);
     this.groupHdrMd_Promotion.Location = new System.Drawing.Point(0, 0);
     this.groupHdrMd_Promotion.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.groupHdrMd_Promotion.LookAndFeel.UseDefaultLookAndFeel = false;
     this.groupHdrMd_Promotion.Name = "groupHdrMd_Promotion";
     this.groupHdrMd_Promotion.Size = new System.Drawing.Size(739, 37);
     this.groupHdrMd_Promotion.TabIndex = 5;
     this.groupHdrMd_Promotion.Text = "groupControl1";
     //
     // hdrMd_Package
     //
     this.hdrMd_Package.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
     this.hdrMd_Package.Font = new System.Drawing.Font("Tahoma", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.hdrMd_Package.Location = new System.Drawing.Point(10, 9);
     this.hdrMd_Package.Name = "hdrMd_Package";
     this.hdrMd_Package.Size = new System.Drawing.Size(720, 27);
     this.hdrMd_Package.TabIndex = 1;
     this.hdrMd_Package.Text = "AMORE PACKAGE MASTER SETUP";
     this.hdrMd_Package.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // grpMDPackageBelow1
     //
     this.grpMDPackageBelow1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.grpMDPackageBelow1.Controls.Add(this.mdPKG_lblStrPackageCategory);
     this.grpMDPackageBelow1.Controls.Add(this.mdpkg_txtNCategoryID);
     this.grpMDPackageBelow1.Controls.Add(this.mdPKG_txtStrPackageCode);
     this.grpMDPackageBelow1.Controls.Add(this.btnPackageDelete);
     this.grpMDPackageBelow1.Controls.Add(this.btnPackageCancel);
     this.grpMDPackageBelow1.Controls.Add(this.btnPackageUpdate);
     this.grpMDPackageBelow1.Controls.Add(this.mdPKG_cbNStatus);
     this.grpMDPackageBelow1.Controls.Add(this.mdPKG_txtNPackageDuration);
     this.grpMDPackageBelow1.Controls.Add(this.mdPKG_txtMBaseUnitPrice);
     this.grpMDPackageBelow1.Controls.Add(this.mdPKG_txtNMaxSession);
     this.grpMDPackageBelow1.Controls.Add(this.mdPKG_txtNWarrantyMonths);
     this.grpMDPackageBelow1.Controls.Add(this.mdPKG_txtNValidMonths);
     this.grpMDPackageBelow1.Controls.Add(this.mdPKG_txtMListPrice);
     this.grpMDPackageBelow1.Controls.Add(this.mdPKG_txtStrReceiptDesc);
     this.grpMDPackageBelow1.Controls.Add(this.mdPKG_txtStrDescription);
     this.grpMDPackageBelow1.Controls.Add(this.mdPKG_dtValidEnd);
     this.grpMDPackageBelow1.Controls.Add(this.mdPKG_dtValidStart);
     this.grpMDPackageBelow1.Controls.Add(this.grpMDPackageBelow2);
     this.grpMDPackageBelow1.Controls.Add(this.mdPKG_lblNStatus);
     this.grpMDPackageBelow1.Controls.Add(this.mdPKG_lblNWarrantyMonths);
     this.grpMDPackageBelow1.Controls.Add(this.mdPKG_lvlNValidMonths);
     this.grpMDPackageBelow1.Controls.Add(this.mdPKG_lbldtValidEnd);
     this.grpMDPackageBelow1.Controls.Add(this.mdPKG_lbldtValidStart);
     this.grpMDPackageBelow1.Controls.Add(this.mdPKG_lblMBaseUnitPrice);
     this.grpMDPackageBelow1.Controls.Add(this.mdPKG_lblNPackageDuration);
     this.grpMDPackageBelow1.Controls.Add(this.mdPKG_lblNMaxSession);
     this.grpMDPackageBelow1.Controls.Add(this.mdPKG_lblMListPrice);
     this.grpMDPackageBelow1.Controls.Add(this.mdPKG_lblStrReceiptDesc);
     this.grpMDPackageBelow1.Controls.Add(this.mdPKG_lblStrDescription);
     this.grpMDPackageBelow1.Controls.Add(this.mdPKG_lblStrPackageCode);
     this.grpMDPackageBelow1.Location = new System.Drawing.Point(0, 37);
     this.grpMDPackageBelow1.LookAndFeel.UseDefaultLookAndFeel = false;
     this.grpMDPackageBelow1.Name = "grpMDPackageBelow1";
     this.grpMDPackageBelow1.ShowCaption = false;
     this.grpMDPackageBelow1.Size = new System.Drawing.Size(749, 378);
     this.grpMDPackageBelow1.TabIndex = 6;
     this.grpMDPackageBelow1.Text = "groupControl1";
     //
     // mdPKG_lblStrPackageCategory
     //
     this.mdPKG_lblStrPackageCategory.BackColor = System.Drawing.Color.Transparent;
     this.mdPKG_lblStrPackageCategory.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.mdPKG_lblStrPackageCategory.Location = new System.Drawing.Point(317, 18);
     this.mdPKG_lblStrPackageCategory.Name = "mdPKG_lblStrPackageCategory";
     this.mdPKG_lblStrPackageCategory.Size = new System.Drawing.Size(134, 19);
     this.mdPKG_lblStrPackageCategory.TabIndex = 164;
     this.mdPKG_lblStrPackageCategory.Text = "Package Category";
     this.mdPKG_lblStrPackageCategory.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // mdpkg_txtNCategoryID
     //
     this.mdpkg_txtNCategoryID.EditValue = "";
     this.mdpkg_txtNCategoryID.Location = new System.Drawing.Point(461, 18);
     this.mdpkg_txtNCategoryID.Name = "mdpkg_txtNCategoryID";
     this.mdpkg_txtNCategoryID.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.mdpkg_txtNCategoryID.Size = new System.Drawing.Size(125, 22);
     this.mdpkg_txtNCategoryID.TabIndex = 163;
     //
     // mdPKG_txtStrPackageCode
     //
     this.mdPKG_txtStrPackageCode.EditValue = "";
     this.mdPKG_txtStrPackageCode.Location = new System.Drawing.Point(173, 18);
     this.mdPKG_txtStrPackageCode.Name = "mdPKG_txtStrPackageCode";
     this.mdPKG_txtStrPackageCode.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.mdPKG_txtStrPackageCode.Size = new System.Drawing.Size(125, 22);
     this.mdPKG_txtStrPackageCode.TabIndex = 162;
     //
     // btnPackageDelete
     //
     this.btnPackageDelete.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnPackageDelete.Location = new System.Drawing.Point(125, 277);
     this.btnPackageDelete.LookAndFeel.UseDefaultLookAndFeel = false;
     this.btnPackageDelete.Name = "btnPackageDelete";
     this.btnPackageDelete.Size = new System.Drawing.Size(90, 26);
     this.btnPackageDelete.TabIndex = 161;
     this.btnPackageDelete.Text = "Delete";
     //
     // btnPackageCancel
     //
     this.btnPackageCancel.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnPackageCancel.Location = new System.Drawing.Point(221, 277);
     this.btnPackageCancel.Name = "btnPackageCancel";
     this.btnPackageCancel.Size = new System.Drawing.Size(90, 26);
     this.btnPackageCancel.TabIndex = 160;
     this.btnPackageCancel.Text = "Cancel";
     this.btnPackageCancel.Click += new System.EventHandler(this.btnPackageCancel_Click);
     //
     // btnPackageUpdate
     //
     this.btnPackageUpdate.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnPackageUpdate.Location = new System.Drawing.Point(29, 277);
     this.btnPackageUpdate.LookAndFeel.UseDefaultLookAndFeel = false;
     this.btnPackageUpdate.Name = "btnPackageUpdate";
     this.btnPackageUpdate.Size = new System.Drawing.Size(90, 26);
     this.btnPackageUpdate.TabIndex = 159;
     this.btnPackageUpdate.Text = "Save";
     this.btnPackageUpdate.Click += new System.EventHandler(this.btnPackageUpdate_Click);
     //
     // mdPKG_cbNStatus
     //
     this.mdPKG_cbNStatus.EditValue = "imageComboBoxEdit2";
     this.mdPKG_cbNStatus.Location = new System.Drawing.Point(566, 157);
     this.mdPKG_cbNStatus.Name = "mdPKG_cbNStatus";
     this.mdPKG_cbNStatus.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.mdPKG_cbNStatus.Properties.Items.AddRange(new DevExpress.XtraEditors.Controls.ImageComboBoxItem[] {
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Active", 1, -1),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Deleted", 2, -1)});
     this.mdPKG_cbNStatus.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.mdPKG_cbNStatus.Size = new System.Drawing.Size(116, 22);
     this.mdPKG_cbNStatus.TabIndex = 158;
     //
     // mdPKG_txtNPackageDuration
     //
     this.mdPKG_txtNPackageDuration.EditValue = "";
     this.mdPKG_txtNPackageDuration.Location = new System.Drawing.Point(173, 185);
     this.mdPKG_txtNPackageDuration.Name = "mdPKG_txtNPackageDuration";
     this.mdPKG_txtNPackageDuration.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.mdPKG_txtNPackageDuration.Properties.Mask.EditMask = "#######0";
     this.mdPKG_txtNPackageDuration.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.mdPKG_txtNPackageDuration.Size = new System.Drawing.Size(90, 22);
     this.mdPKG_txtNPackageDuration.TabIndex = 157;
     //
     // mdPKG_txtMBaseUnitPrice
     //
     this.mdPKG_txtMBaseUnitPrice.EditValue = "";
     this.mdPKG_txtMBaseUnitPrice.Location = new System.Drawing.Point(259, 240);
     this.mdPKG_txtMBaseUnitPrice.Name = "mdPKG_txtMBaseUnitPrice";
     this.mdPKG_txtMBaseUnitPrice.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.mdPKG_txtMBaseUnitPrice.Properties.Mask.EditMask = "#####0.00";
     this.mdPKG_txtMBaseUnitPrice.Size = new System.Drawing.Size(90, 22);
     this.mdPKG_txtMBaseUnitPrice.TabIndex = 156;
     //
     // mdPKG_txtNMaxSession
     //
     this.mdPKG_txtNMaxSession.EditValue = "";
     this.mdPKG_txtNMaxSession.Location = new System.Drawing.Point(259, 212);
     this.mdPKG_txtNMaxSession.Name = "mdPKG_txtNMaxSession";
     this.mdPKG_txtNMaxSession.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.mdPKG_txtNMaxSession.Properties.Mask.EditMask = "###0";
     this.mdPKG_txtNMaxSession.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.mdPKG_txtNMaxSession.Size = new System.Drawing.Size(90, 22);
     this.mdPKG_txtNMaxSession.TabIndex = 155;
     //
     // mdPKG_txtNWarrantyMonths
     //
     this.mdPKG_txtNWarrantyMonths.EditValue = "";
     this.mdPKG_txtNWarrantyMonths.Location = new System.Drawing.Point(173, 157);
     this.mdPKG_txtNWarrantyMonths.Name = "mdPKG_txtNWarrantyMonths";
     this.mdPKG_txtNWarrantyMonths.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.mdPKG_txtNWarrantyMonths.Properties.Mask.EditMask = "#0";
     this.mdPKG_txtNWarrantyMonths.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.mdPKG_txtNWarrantyMonths.Size = new System.Drawing.Size(90, 22);
     this.mdPKG_txtNWarrantyMonths.TabIndex = 154;
     //
     // mdPKG_txtNValidMonths
     //
     this.mdPKG_txtNValidMonths.EditValue = "";
     this.mdPKG_txtNValidMonths.Location = new System.Drawing.Point(173, 129);
     this.mdPKG_txtNValidMonths.Name = "mdPKG_txtNValidMonths";
     this.mdPKG_txtNValidMonths.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.mdPKG_txtNValidMonths.Properties.Mask.EditMask = "#0";
     this.mdPKG_txtNValidMonths.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.mdPKG_txtNValidMonths.Size = new System.Drawing.Size(90, 22);
     this.mdPKG_txtNValidMonths.TabIndex = 153;
     //
     // mdPKG_txtMListPrice
     //
     this.mdPKG_txtMListPrice.EditValue = "";
     this.mdPKG_txtMListPrice.Location = new System.Drawing.Point(173, 102);
     this.mdPKG_txtMListPrice.Name = "mdPKG_txtMListPrice";
     this.mdPKG_txtMListPrice.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.mdPKG_txtMListPrice.Properties.Mask.EditMask = "#####0.00";
     this.mdPKG_txtMListPrice.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.mdPKG_txtMListPrice.Size = new System.Drawing.Size(90, 22);
     this.mdPKG_txtMListPrice.TabIndex = 152;
     //
     // mdPKG_txtStrReceiptDesc
     //
     this.mdPKG_txtStrReceiptDesc.EditValue = "";
     this.mdPKG_txtStrReceiptDesc.Location = new System.Drawing.Point(173, 74);
     this.mdPKG_txtStrReceiptDesc.Name = "mdPKG_txtStrReceiptDesc";
     this.mdPKG_txtStrReceiptDesc.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.mdPKG_txtStrReceiptDesc.Size = new System.Drawing.Size(509, 22);
     this.mdPKG_txtStrReceiptDesc.TabIndex = 151;
     //
     // mdPKG_txtStrDescription
     //
     this.mdPKG_txtStrDescription.EditValue = "";
     this.mdPKG_txtStrDescription.Location = new System.Drawing.Point(173, 46);
     this.mdPKG_txtStrDescription.Name = "mdPKG_txtStrDescription";
     this.mdPKG_txtStrDescription.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.mdPKG_txtStrDescription.Size = new System.Drawing.Size(509, 22);
     this.mdPKG_txtStrDescription.TabIndex = 150;
     //
     // mdPKG_dtValidEnd
     //
     this.mdPKG_dtValidEnd.EditValue = new System.DateTime(2005, 12, 28, 0, 0, 0, 0);
     this.mdPKG_dtValidEnd.Location = new System.Drawing.Point(566, 129);
     this.mdPKG_dtValidEnd.Name = "mdPKG_dtValidEnd";
     this.mdPKG_dtValidEnd.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.mdPKG_dtValidEnd.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.mdPKG_dtValidEnd.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.mdPKG_dtValidEnd.Size = new System.Drawing.Size(116, 22);
     this.mdPKG_dtValidEnd.TabIndex = 149;
     //
     // mdPKG_dtValidStart
     //
     this.mdPKG_dtValidStart.EditValue = new System.DateTime(2005, 12, 28, 0, 0, 0, 0);
     this.mdPKG_dtValidStart.Location = new System.Drawing.Point(566, 102);
     this.mdPKG_dtValidStart.Name = "mdPKG_dtValidStart";
     this.mdPKG_dtValidStart.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.mdPKG_dtValidStart.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.mdPKG_dtValidStart.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.mdPKG_dtValidStart.Size = new System.Drawing.Size(116, 22);
     this.mdPKG_dtValidStart.TabIndex = 148;
     //
     // grpMDPackageBelow2
     //
     this.grpMDPackageBelow2.Controls.Add(this.mdPKG_fStudentPackage);
     this.grpMDPackageBelow2.Controls.Add(this.mdPKG_fNoRestrictionUpgrade);
     this.grpMDPackageBelow2.Controls.Add(this.mdPKG_fPeak);
     this.grpMDPackageBelow2.Controls.Add(this.mdPKG_fGIRO);
     this.grpMDPackageBelow2.Location = new System.Drawing.Point(403, 185);
     this.grpMDPackageBelow2.LookAndFeel.UseDefaultLookAndFeel = false;
     this.grpMDPackageBelow2.Name = "grpMDPackageBelow2";
     this.grpMDPackageBelow2.Size = new System.Drawing.Size(279, 129);
     this.grpMDPackageBelow2.TabIndex = 146;
     //
     // mdPKG_fStudentPackage
     //
     this.mdPKG_fStudentPackage.Location = new System.Drawing.Point(10, 92);
     this.mdPKG_fStudentPackage.Name = "mdPKG_fStudentPackage";
     this.mdPKG_fStudentPackage.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.mdPKG_fStudentPackage.Properties.Appearance.Options.UseFont = true;
     this.mdPKG_fStudentPackage.Properties.Caption = "Student Package ?";
     this.mdPKG_fStudentPackage.Size = new System.Drawing.Size(220, 22);
     this.mdPKG_fStudentPackage.TabIndex = 3;
     //
     // mdPKG_fNoRestrictionUpgrade
     //
     this.mdPKG_fNoRestrictionUpgrade.Location = new System.Drawing.Point(10, 65);
     this.mdPKG_fNoRestrictionUpgrade.Name = "mdPKG_fNoRestrictionUpgrade";
     this.mdPKG_fNoRestrictionUpgrade.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.mdPKG_fNoRestrictionUpgrade.Properties.Appearance.Options.UseFont = true;
     this.mdPKG_fNoRestrictionUpgrade.Properties.Caption = "Allowed For Upgrading ?";
     this.mdPKG_fNoRestrictionUpgrade.Size = new System.Drawing.Size(220, 22);
     this.mdPKG_fNoRestrictionUpgrade.TabIndex = 2;
     //
     // mdPKG_fPeak
     //
     this.mdPKG_fPeak.Location = new System.Drawing.Point(10, 37);
     this.mdPKG_fPeak.Name = "mdPKG_fPeak";
     this.mdPKG_fPeak.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.mdPKG_fPeak.Properties.Appearance.Options.UseFont = true;
     this.mdPKG_fPeak.Properties.Caption = "Allowed For Peak Period Used ?";
     this.mdPKG_fPeak.Size = new System.Drawing.Size(240, 22);
     this.mdPKG_fPeak.TabIndex = 1;
     //
     // mdPKG_fGIRO
     //
     this.mdPKG_fGIRO.Location = new System.Drawing.Point(10, 9);
     this.mdPKG_fGIRO.Name = "mdPKG_fGIRO";
     this.mdPKG_fGIRO.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.mdPKG_fGIRO.Properties.Appearance.Options.UseFont = true;
     this.mdPKG_fGIRO.Properties.Caption = "Allowed For Giro ?";
     this.mdPKG_fGIRO.Size = new System.Drawing.Size(144, 22);
     this.mdPKG_fGIRO.TabIndex = 0;
     //
     // mdPKG_lblNStatus
     //
     this.mdPKG_lblNStatus.BackColor = System.Drawing.Color.Transparent;
     this.mdPKG_lblNStatus.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.mdPKG_lblNStatus.Location = new System.Drawing.Point(403, 157);
     this.mdPKG_lblNStatus.Name = "mdPKG_lblNStatus";
     this.mdPKG_lblNStatus.Size = new System.Drawing.Size(77, 18);
     this.mdPKG_lblNStatus.TabIndex = 145;
     this.mdPKG_lblNStatus.Text = "Status";
     this.mdPKG_lblNStatus.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // mdPKG_lblNWarrantyMonths
     //
     this.mdPKG_lblNWarrantyMonths.BackColor = System.Drawing.Color.Transparent;
     this.mdPKG_lblNWarrantyMonths.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.mdPKG_lblNWarrantyMonths.Location = new System.Drawing.Point(29, 157);
     this.mdPKG_lblNWarrantyMonths.Name = "mdPKG_lblNWarrantyMonths";
     this.mdPKG_lblNWarrantyMonths.Size = new System.Drawing.Size(144, 18);
     this.mdPKG_lblNWarrantyMonths.TabIndex = 142;
     this.mdPKG_lblNWarrantyMonths.Text = "Warranty Month #";
     this.mdPKG_lblNWarrantyMonths.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // mdPKG_lvlNValidMonths
     //
     this.mdPKG_lvlNValidMonths.BackColor = System.Drawing.Color.Transparent;
     this.mdPKG_lvlNValidMonths.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.mdPKG_lvlNValidMonths.Location = new System.Drawing.Point(29, 129);
     this.mdPKG_lvlNValidMonths.Name = "mdPKG_lvlNValidMonths";
     this.mdPKG_lvlNValidMonths.Size = new System.Drawing.Size(144, 19);
     this.mdPKG_lvlNValidMonths.TabIndex = 141;
     this.mdPKG_lvlNValidMonths.Text = "Validity In Month";
     this.mdPKG_lvlNValidMonths.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // mdPKG_lbldtValidEnd
     //
     this.mdPKG_lbldtValidEnd.BackColor = System.Drawing.Color.Transparent;
     this.mdPKG_lbldtValidEnd.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.mdPKG_lbldtValidEnd.Location = new System.Drawing.Point(403, 129);
     this.mdPKG_lbldtValidEnd.Name = "mdPKG_lbldtValidEnd";
     this.mdPKG_lbldtValidEnd.Size = new System.Drawing.Size(154, 19);
     this.mdPKG_lbldtValidEnd.TabIndex = 139;
     this.mdPKG_lbldtValidEnd.Text = "Effective End Date";
     this.mdPKG_lbldtValidEnd.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // mdPKG_lbldtValidStart
     //
     this.mdPKG_lbldtValidStart.BackColor = System.Drawing.Color.Transparent;
     this.mdPKG_lbldtValidStart.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.mdPKG_lbldtValidStart.Location = new System.Drawing.Point(403, 102);
     this.mdPKG_lbldtValidStart.Name = "mdPKG_lbldtValidStart";
     this.mdPKG_lbldtValidStart.Size = new System.Drawing.Size(154, 18);
     this.mdPKG_lbldtValidStart.TabIndex = 138;
     this.mdPKG_lbldtValidStart.Text = "Effective Start Start";
     this.mdPKG_lbldtValidStart.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // mdPKG_lblMBaseUnitPrice
     //
     this.mdPKG_lblMBaseUnitPrice.BackColor = System.Drawing.Color.Transparent;
     this.mdPKG_lblMBaseUnitPrice.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.mdPKG_lblMBaseUnitPrice.Location = new System.Drawing.Point(29, 240);
     this.mdPKG_lblMBaseUnitPrice.Name = "mdPKG_lblMBaseUnitPrice";
     this.mdPKG_lblMBaseUnitPrice.Size = new System.Drawing.Size(192, 18);
     this.mdPKG_lblMBaseUnitPrice.TabIndex = 137;
     this.mdPKG_lblMBaseUnitPrice.Text = "Base Unit Price Per Session";
     this.mdPKG_lblMBaseUnitPrice.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // mdPKG_lblNPackageDuration
     //
     this.mdPKG_lblNPackageDuration.BackColor = System.Drawing.Color.Transparent;
     this.mdPKG_lblNPackageDuration.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.mdPKG_lblNPackageDuration.Location = new System.Drawing.Point(29, 185);
     this.mdPKG_lblNPackageDuration.Name = "mdPKG_lblNPackageDuration";
     this.mdPKG_lblNPackageDuration.Size = new System.Drawing.Size(144, 18);
     this.mdPKG_lblNPackageDuration.TabIndex = 136;
     this.mdPKG_lblNPackageDuration.Text = "Package Duration";
     this.mdPKG_lblNPackageDuration.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // mdPKG_lblNMaxSession
     //
     this.mdPKG_lblNMaxSession.BackColor = System.Drawing.Color.Transparent;
     this.mdPKG_lblNMaxSession.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.mdPKG_lblNMaxSession.Location = new System.Drawing.Point(29, 212);
     this.mdPKG_lblNMaxSession.Name = "mdPKG_lblNMaxSession";
     this.mdPKG_lblNMaxSession.Size = new System.Drawing.Size(211, 19);
     this.mdPKG_lblNMaxSession.TabIndex = 135;
     this.mdPKG_lblNMaxSession.Text = "Max Session in one package";
     this.mdPKG_lblNMaxSession.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // mdPKG_lblMListPrice
     //
     this.mdPKG_lblMListPrice.BackColor = System.Drawing.Color.Transparent;
     this.mdPKG_lblMListPrice.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.mdPKG_lblMListPrice.Location = new System.Drawing.Point(29, 102);
     this.mdPKG_lblMListPrice.Name = "mdPKG_lblMListPrice";
     this.mdPKG_lblMListPrice.Size = new System.Drawing.Size(144, 18);
     this.mdPKG_lblMListPrice.TabIndex = 134;
     this.mdPKG_lblMListPrice.Text = "Package Price";
     this.mdPKG_lblMListPrice.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // mdPKG_lblStrReceiptDesc
     //
     this.mdPKG_lblStrReceiptDesc.BackColor = System.Drawing.Color.Transparent;
     this.mdPKG_lblStrReceiptDesc.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.mdPKG_lblStrReceiptDesc.Location = new System.Drawing.Point(29, 74);
     this.mdPKG_lblStrReceiptDesc.Name = "mdPKG_lblStrReceiptDesc";
     this.mdPKG_lblStrReceiptDesc.Size = new System.Drawing.Size(144, 18);
     this.mdPKG_lblStrReceiptDesc.TabIndex = 133;
     this.mdPKG_lblStrReceiptDesc.Text = "Receipt Description";
     this.mdPKG_lblStrReceiptDesc.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // mdPKG_lblStrDescription
     //
     this.mdPKG_lblStrDescription.BackColor = System.Drawing.Color.Transparent;
     this.mdPKG_lblStrDescription.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.mdPKG_lblStrDescription.Location = new System.Drawing.Point(29, 46);
     this.mdPKG_lblStrDescription.Name = "mdPKG_lblStrDescription";
     this.mdPKG_lblStrDescription.Size = new System.Drawing.Size(115, 19);
     this.mdPKG_lblStrDescription.TabIndex = 132;
     this.mdPKG_lblStrDescription.Text = "Description";
     this.mdPKG_lblStrDescription.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // mdPKG_lblStrPackageCode
     //
     this.mdPKG_lblStrPackageCode.BackColor = System.Drawing.Color.Transparent;
     this.mdPKG_lblStrPackageCode.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.mdPKG_lblStrPackageCode.Location = new System.Drawing.Point(29, 18);
     this.mdPKG_lblStrPackageCode.Name = "mdPKG_lblStrPackageCode";
     this.mdPKG_lblStrPackageCode.Size = new System.Drawing.Size(115, 19);
     this.mdPKG_lblStrPackageCode.TabIndex = 131;
     this.mdPKG_lblStrPackageCode.Text = "Package Code";
     this.mdPKG_lblStrPackageCode.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // frmMd_Package
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(6, 15);
     this.ClientSize = new System.Drawing.Size(656, 349);
     this.Controls.Add(this.grpMDPackageBelow1);
     this.Controls.Add(this.groupHdrMd_Promotion);
     this.Name = "frmMd_Package";
     this.Text = "Package .....";
     ((System.ComponentModel.ISupportInitialize)(this.groupHdrMd_Promotion)).EndInit();
     this.groupHdrMd_Promotion.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.grpMDPackageBelow1)).EndInit();
     this.grpMDPackageBelow1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.mdpkg_txtNCategoryID.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.mdPKG_txtStrPackageCode.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.mdPKG_cbNStatus.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.mdPKG_txtNPackageDuration.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.mdPKG_txtMBaseUnitPrice.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.mdPKG_txtNMaxSession.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.mdPKG_txtNWarrantyMonths.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.mdPKG_txtNValidMonths.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.mdPKG_txtMListPrice.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.mdPKG_txtStrReceiptDesc.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.mdPKG_txtStrDescription.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.mdPKG_dtValidEnd.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.mdPKG_dtValidEnd.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.mdPKG_dtValidStart.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.mdPKG_dtValidStart.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.grpMDPackageBelow2)).EndInit();
     this.grpMDPackageBelow2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.mdPKG_fStudentPackage.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.mdPKG_fNoRestrictionUpgrade.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.mdPKG_fPeak.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.mdPKG_fGIRO.Properties)).EndInit();
     this.ResumeLayout(false);
 }
Beispiel #46
0
 public static void Populate(DevExpress.XtraEditors.ImageComboBoxEdit comboBox, Type enumType, params System.Enum[] excludeValues)
 {
     Populate(comboBox.Properties, enumType, excludeValues);
 }
Beispiel #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.lblBranch = new System.Windows.Forms.Label();
     this.label4 = new System.Windows.Forms.Label();
     this.groupControl1 = new DevExpress.XtraEditors.GroupControl();
     this.txtRemarks = new DevExpress.XtraEditors.MemoEdit();
     this.lblRemarks = new System.Windows.Forms.Label();
     this.lbldate = new System.Windows.Forms.Label();
     this.dtDate = new DevExpress.XtraEditors.DateEdit();
     this.label3 = new System.Windows.Forms.Label();
     this.cbEmployee = new DevExpress.XtraEditors.ImageComboBoxEdit();
     this.label2 = new System.Windows.Forms.Label();
     this.cbBranch = new DevExpress.XtraEditors.ImageComboBoxEdit();
     this.label1 = new System.Windows.Forms.Label();
     this.lblStartTime = new System.Windows.Forms.Label();
     this.dtEndTime = new DevExpress.XtraEditors.TimeEdit();
     this.dtStartTime = new DevExpress.XtraEditors.TimeEdit();
     this.btnSave = new DevExpress.XtraEditors.SimpleButton();
     this.btnCancel = new DevExpress.XtraEditors.SimpleButton();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtRemarks.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtDate.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbEmployee.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbBranch.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtEndTime.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtStartTime.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // lblBranch
     //
     this.lblBranch.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.lblBranch.Location = new System.Drawing.Point(-58, 142);
     this.lblBranch.Name = "lblBranch";
     this.lblBranch.Size = new System.Drawing.Size(58, 16);
     this.lblBranch.TabIndex = 186;
     this.lblBranch.Text = "Branch";
     //
     // label4
     //
     this.label4.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label4.Location = new System.Drawing.Point(16, 8);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(112, 16);
     this.label4.TabIndex = 191;
     this.label4.Text = "New Roster";
     //
     // groupControl1
     //
     this.groupControl1.Controls.Add(this.txtRemarks);
     this.groupControl1.Controls.Add(this.lblRemarks);
     this.groupControl1.Controls.Add(this.lbldate);
     this.groupControl1.Controls.Add(this.dtDate);
     this.groupControl1.Controls.Add(this.label3);
     this.groupControl1.Controls.Add(this.cbEmployee);
     this.groupControl1.Controls.Add(this.label2);
     this.groupControl1.Controls.Add(this.cbBranch);
     this.groupControl1.Controls.Add(this.label1);
     this.groupControl1.Controls.Add(this.lblStartTime);
     this.groupControl1.Controls.Add(this.dtEndTime);
     this.groupControl1.Controls.Add(this.dtStartTime);
     this.groupControl1.Location = new System.Drawing.Point(16, 32);
     this.groupControl1.Name = "groupControl1";
     this.groupControl1.ShowCaption = false;
     this.groupControl1.Size = new System.Drawing.Size(280, 256);
     this.groupControl1.TabIndex = 192;
     this.groupControl1.Text = "groupControl1";
     //
     // txtRemarks
     //
     this.txtRemarks.EditValue = "";
     this.txtRemarks.Location = new System.Drawing.Point(16, 184);
     this.txtRemarks.Name = "txtRemarks";
     //
     // txtRemarks.Properties
     //
     this.txtRemarks.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Style3D;
     this.txtRemarks.Size = new System.Drawing.Size(232, 64);
     this.txtRemarks.TabIndex = 6;
     //
     // lblRemarks
     //
     this.lblRemarks.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.lblRemarks.Location = new System.Drawing.Point(16, 168);
     this.lblRemarks.Name = "lblRemarks";
     this.lblRemarks.Size = new System.Drawing.Size(80, 16);
     this.lblRemarks.TabIndex = 201;
     this.lblRemarks.Text = "Remarks";
     //
     // lbldate
     //
     this.lbldate.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.lbldate.Location = new System.Drawing.Point(16, 80);
     this.lbldate.Name = "lbldate";
     this.lbldate.Size = new System.Drawing.Size(80, 16);
     this.lbldate.TabIndex = 200;
     this.lbldate.Text = "Date";
     //
     // dtDate
     //
     this.dtDate.EditValue = null;
     this.dtDate.Location = new System.Drawing.Point(104, 80);
     this.dtDate.Name = "dtDate";
     //
     // dtDate.Properties
     //
     this.dtDate.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Style3D;
     this.dtDate.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                    new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.dtDate.Properties.DisplayFormat.FormatString = "dd/MM/yyyy";
     this.dtDate.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Custom;
     this.dtDate.Properties.EditFormat.FormatString = "dd/MM/yyyy";
     this.dtDate.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.Custom;
     this.dtDate.Properties.Mask.EditMask = "dd/MM/yyyy";
     this.dtDate.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.DateTimeAdvancingCaret;
     this.dtDate.Size = new System.Drawing.Size(100, 22);
     this.dtDate.TabIndex = 3;
     //
     // label3
     //
     this.label3.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label3.Location = new System.Drawing.Point(16, 48);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(80, 16);
     this.label3.TabIndex = 198;
     this.label3.Text = "Employee";
     //
     // cbEmployee
     //
     this.cbEmployee.Location = new System.Drawing.Point(104, 48);
     this.cbEmployee.Name = "cbEmployee";
     //
     // cbEmployee.Properties
     //
     this.cbEmployee.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Style3D;
     this.cbEmployee.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                        new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cbEmployee.Size = new System.Drawing.Size(144, 22);
     this.cbEmployee.TabIndex = 2;
     //
     // label2
     //
     this.label2.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label2.Location = new System.Drawing.Point(16, 16);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(80, 16);
     this.label2.TabIndex = 196;
     this.label2.Text = "Branch";
     //
     // cbBranch
     //
     this.cbBranch.Location = new System.Drawing.Point(104, 16);
     this.cbBranch.Name = "cbBranch";
     //
     // cbBranch.Properties
     //
     this.cbBranch.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Style3D;
     this.cbBranch.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                      new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cbBranch.Size = new System.Drawing.Size(144, 22);
     this.cbBranch.TabIndex = 1;
     this.cbBranch.SelectedIndexChanged += new System.EventHandler(this.cbBranch_SelectedIndexChanged);
     //
     // label1
     //
     this.label1.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label1.Location = new System.Drawing.Point(144, 112);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(80, 16);
     this.label1.TabIndex = 194;
     this.label1.Text = "End Time";
     //
     // lblStartTime
     //
     this.lblStartTime.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.lblStartTime.Location = new System.Drawing.Point(16, 112);
     this.lblStartTime.Name = "lblStartTime";
     this.lblStartTime.Size = new System.Drawing.Size(80, 16);
     this.lblStartTime.TabIndex = 193;
     this.lblStartTime.Text = "Start Time";
     //
     // dtEndTime
     //
     this.dtEndTime.EditValue = null;
     this.dtEndTime.Location = new System.Drawing.Point(144, 136);
     this.dtEndTime.Name = "dtEndTime";
     //
     // dtEndTime.Properties
     //
     this.dtEndTime.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Style3D;
     this.dtEndTime.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                       new DevExpress.XtraEditors.Controls.EditorButton()});
     this.dtEndTime.Properties.DisplayFormat.FormatString = "hh:mm tt";
     this.dtEndTime.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Custom;
     this.dtEndTime.Properties.EditFormat.FormatString = "hh:mm tt";
     this.dtEndTime.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.Custom;
     this.dtEndTime.Size = new System.Drawing.Size(104, 22);
     this.dtEndTime.TabIndex = 5;
     //
     // dtStartTime
     //
     this.dtStartTime.EditValue = null;
     this.dtStartTime.Location = new System.Drawing.Point(16, 136);
     this.dtStartTime.Name = "dtStartTime";
     //
     // dtStartTime.Properties
     //
     this.dtStartTime.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Style3D;
     this.dtStartTime.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                         new DevExpress.XtraEditors.Controls.EditorButton()});
     this.dtStartTime.Properties.DisplayFormat.FormatString = "hh:mm tt";
     this.dtStartTime.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Custom;
     this.dtStartTime.Properties.EditFormat.FormatString = "hh:mm tt";
     this.dtStartTime.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.Custom;
     this.dtStartTime.Size = new System.Drawing.Size(104, 22);
     this.dtStartTime.TabIndex = 4;
     //
     // btnSave
     //
     this.btnSave.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.btnSave.Appearance.Options.UseFont = true;
     this.btnSave.Location = new System.Drawing.Point(128, 296);
     this.btnSave.LookAndFeel.UseDefaultLookAndFeel = false;
     this.btnSave.Name = "btnSave";
     this.btnSave.TabIndex = 7;
     this.btnSave.Text = "Save";
     this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
     //
     // btnCancel
     //
     this.btnCancel.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.btnCancel.Appearance.Options.UseFont = true;
     this.btnCancel.Location = new System.Drawing.Point(208, 296);
     this.btnCancel.LookAndFeel.UseDefaultLookAndFeel = false;
     this.btnCancel.Name = "btnCancel";
     this.btnCancel.TabIndex = 8;
     this.btnCancel.Text = "Cancel";
     this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
     //
     // frmRosterNew
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize = new System.Drawing.Size(306, 327);
     this.Controls.Add(this.groupControl1);
     this.Controls.Add(this.label4);
     this.Controls.Add(this.lblBranch);
     this.Controls.Add(this.btnSave);
     this.Controls.Add(this.btnCancel);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "frmRosterNew";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text = "Add New Roster";
     this.Load += new System.EventHandler(this.frmRosterNew_Load);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.txtRemarks.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtDate.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbEmployee.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbBranch.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtEndTime.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtStartTime.Properties)).EndInit();
     this.ResumeLayout(false);
 }
Beispiel #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();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmPackage));
     DevExpress.XtraGrid.GridLevelNode gridLevelNode1 = new DevExpress.XtraGrid.GridLevelNode();
     DevExpress.XtraGrid.GridLevelNode gridLevelNode2 = new DevExpress.XtraGrid.GridLevelNode();
     this.grpMDPackageTop = new DevExpress.XtraEditors.GroupControl();
     this.label31 = new System.Windows.Forms.Label();
     this.ddlPackageCategory = new DevExpress.XtraEditors.ImageComboBoxEdit();
     this.Searchpanel = new System.Windows.Forms.Panel();
     this.btn_Search = new DevExpress.XtraEditors.SimpleButton();
     this.txtSearch = new DevExpress.XtraEditors.TextEdit();
     this.grpPackage = new DevExpress.XtraEditors.GroupControl();
     this.btn_PackageAdd = new DevExpress.XtraEditors.SimpleButton();
     this.imageList1 = new System.Windows.Forms.ImageList(this.components);
     this.btn_PackageDel = new DevExpress.XtraEditors.SimpleButton();
     this.groupControl1 = new DevExpress.XtraEditors.GroupControl();
     this.gridControlMd_Package = new DevExpress.XtraGrid.GridControl();
     this.gridViewMd_Package = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumnPKG1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnPKG2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnPKG3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcPkgPriceWGST = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnPKG4 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnPKG5 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn30 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.chk_DurationUnit = new DevExpress.XtraEditors.Repository.RepositoryItemComboBox();
     this.gcFreePkg = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnPKG6 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnPKG7 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.StartDate = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
     this.gridColumnPKG8 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.EndDate = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
     this.gridColumnPKG9 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.chk_Peak = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.gridColumn3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.chk_StudentPackage = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.gridColumn4 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.lk_Category = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gridColumn5 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn6 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn7 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.chk_GIRO = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.gridColumn8 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn28 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.chk_Sell = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.gridColumn31 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.chk_Peak_1 = new DevExpress.XtraEditors.Repository.RepositoryItemComboBox();
     this.chk_StuPackage = new DevExpress.XtraEditors.Repository.RepositoryItemComboBox();
     this.repositoryItemCheckEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.chk_RestUpgrade = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.grpPackageGroup = new DevExpress.XtraEditors.GroupControl();
     this.btnPacGroup_Add = new DevExpress.XtraEditors.SimpleButton();
     this.btnPacGroup_Del = new DevExpress.XtraEditors.SimpleButton();
     this.groupControl4 = new DevExpress.XtraEditors.GroupControl();
     this.gridControlMd_PackageGroup = new DevExpress.XtraGrid.GridControl();
     this.gridViewMd_PackageGroup = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumnPG1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnPG2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnPG3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcPkgComboPriceWGST = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnPG4 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.lk_pkGroupCatID = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gridColumnPG5 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnPG6 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.grpCreditPackage = new DevExpress.XtraEditors.GroupControl();
     this.btnCreditPackage_Add = new DevExpress.XtraEditors.SimpleButton();
     this.btnCreditPackage_Del = new DevExpress.XtraEditors.SimpleButton();
     this.groupControl5 = new DevExpress.XtraEditors.GroupControl();
     this.gridControlMd_CreditPackage = new DevExpress.XtraGrid.GridControl();
     this.gridViewMd_CreditPackage = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumnCP1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnCP2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn24 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnCP3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcPriceWGST = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnCP4 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.EffCCStartDate = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
     this.gridColumnCP5 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.EffCCEndDate = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
     this.gridColumnCP6 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.lk_CreditCategoryID = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gridColumn29 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnCP7 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnCP8 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcFreeCredit = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnCP9 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.grpPackageClass = new DevExpress.XtraEditors.GroupControl();
     this.btn_PGC_Del = new DevExpress.XtraEditors.SimpleButton();
     this.btn_PGCAll_Del = new DevExpress.XtraEditors.SimpleButton();
     this.btn_PGCAll_Add = new DevExpress.XtraEditors.SimpleButton();
     this.btn_PGC_Add = new DevExpress.XtraEditors.SimpleButton();
     this.gridPackageClass2 = new DevExpress.XtraGrid.GridControl();
     this.gvPackageClass2 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn13 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn14 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn21 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.label2 = new System.Windows.Forms.Label();
     this.gridPackageClass = new DevExpress.XtraGrid.GridControl();
     this.gvPackageClass = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn15 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn16 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.btn_PGB_Del = new DevExpress.XtraEditors.SimpleButton();
     this.btn_PGBAll_Del = new DevExpress.XtraEditors.SimpleButton();
     this.btn_PGBAll_Add = new DevExpress.XtraEditors.SimpleButton();
     this.btn_PGB_Add = new DevExpress.XtraEditors.SimpleButton();
     this.btn_PGUB_Del = new DevExpress.XtraEditors.SimpleButton();
     this.btn_PGUBAll_Del = new DevExpress.XtraEditors.SimpleButton();
     this.btn_PGUBAll_Add = new DevExpress.XtraEditors.SimpleButton();
     this.btn_PGUB_Add = new DevExpress.XtraEditors.SimpleButton();
     this.gridPcGroupBranch2 = new DevExpress.XtraGrid.GridControl();
     this.gvPcGroupBranch2 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridPcGroupUseBranch2 = new DevExpress.XtraGrid.GridControl();
     this.gvPcGroupUseBranch2 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn17 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn18 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn22 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn50 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn51 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn52 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn53 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn54 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.label4 = new System.Windows.Forms.Label();
     this.label5 = new System.Windows.Forms.Label();
     this.gridPcGroupBranch = new DevExpress.XtraGrid.GridControl();
     this.gvPcGroupBranch = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridPcGroupUseBranch = new DevExpress.XtraGrid.GridControl();
     this.gvPcGroupUseBranch = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn19 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn20 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.label119 = new System.Windows.Forms.Label();
     this.label120 = new System.Windows.Forms.Label();
     this.grpPackageService = new DevExpress.XtraEditors.GroupControl();
     this.btn_PSAll_Del = new DevExpress.XtraEditors.SimpleButton();
     this.btn_PS_Del = new DevExpress.XtraEditors.SimpleButton();
     this.btn_PSAdd_Add = new DevExpress.XtraEditors.SimpleButton();
     this.btn_PS_Add = new DevExpress.XtraEditors.SimpleButton();
     this.gridPackageService2 = new DevExpress.XtraGrid.GridControl();
     this.gvPackageService2 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn9 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn10 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn23 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.label1 = new System.Windows.Forms.Label();
     this.gridPackageService = new DevExpress.XtraGrid.GridControl();
     this.gvPackageService = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn11 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn12 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.btn_PB_Del = new DevExpress.XtraEditors.SimpleButton();
     this.btn_PBAll_Del = new DevExpress.XtraEditors.SimpleButton();
     this.btn_PBAll_Add = new DevExpress.XtraEditors.SimpleButton();
     this.btn_PB_Add = new DevExpress.XtraEditors.SimpleButton();
     this.btn_PUB_Del = new DevExpress.XtraEditors.SimpleButton();
     this.btn_PUBAll_Del = new DevExpress.XtraEditors.SimpleButton();
     this.btn_PUBAll_Add = new DevExpress.XtraEditors.SimpleButton();
     this.btn_PUB_Add = new DevExpress.XtraEditors.SimpleButton();
     this.gridPackageBranch2 = new DevExpress.XtraGrid.GridControl();
     this.gridPackageUseBranch2 = new DevExpress.XtraGrid.GridControl();
     this.gvPSBranch2 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gvPSUseBranch2 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colBranchCode2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colBranchName2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colUseBranchCode2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colUseBranchName2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.label3 = new System.Windows.Forms.Label();
     this.label7 = new System.Windows.Forms.Label();
     this.gridPackageBranch = new DevExpress.XtraGrid.GridControl();
     this.gridPackageUseBranch = new DevExpress.XtraGrid.GridControl();
     this.gvPSBranch = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gvPSUseBranch = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colBranchCode = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colBranchName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colUseBranchCode = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colUseBranchName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.PackageGroup = new DevExpress.XtraEditors.GroupControl();
     this.btn_PacGroup_Add = new DevExpress.XtraEditors.SimpleButton();
     this.btn_PacGroup_Del = new DevExpress.XtraEditors.SimpleButton();
     this.groupControl2 = new DevExpress.XtraEditors.GroupControl();
     this.gridControlMd_GroupEntries = new DevExpress.XtraGrid.GridControl();
     this.gridViewMd_GroupEntries = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn44 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn45 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.lk_GrpPackageCode = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gridColumn46 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.splitter2 = new System.Windows.Forms.Splitter();
     this.GroupCreditPackage = new DevExpress.XtraEditors.GroupControl();
     this.btn_CreGroup_Add = new DevExpress.XtraEditors.SimpleButton();
     this.btn_CreGroup_Del = new DevExpress.XtraEditors.SimpleButton();
     this.groupControl3 = new DevExpress.XtraEditors.GroupControl();
     this.GridCreditRestric = new DevExpress.XtraGrid.GridControl();
     this.gridViewmd_CreditRestric = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn25 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn26 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.lk_PackageCode = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gridColumn27 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.chk_AllowDiscount = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.grpBranch = new DevExpress.XtraEditors.GroupControl();
     this.btnPacBranch_Del = new DevExpress.XtraEditors.SimpleButton();
     this.btnPacBranch_DelAll = new DevExpress.XtraEditors.SimpleButton();
     this.btnPacBranch_AddAll = new DevExpress.XtraEditors.SimpleButton();
     this.btnPacBranch_Add = new DevExpress.XtraEditors.SimpleButton();
     this.gridPacBranch2 = new DevExpress.XtraGrid.GridControl();
     this.gvPacBranch2 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn33 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn34 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.label6 = new System.Windows.Forms.Label();
     this.gridPacBranch = new DevExpress.XtraGrid.GridControl();
     this.gvPacBranch = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn35 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn36 = new DevExpress.XtraGrid.Columns.GridColumn();
     ((System.ComponentModel.ISupportInitialize)(this.grpMDPackageTop)).BeginInit();
     this.grpMDPackageTop.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ddlPackageCategory.Properties)).BeginInit();
     this.Searchpanel.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtSearch.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.grpPackage)).BeginInit();
     this.grpPackage.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMd_Package)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMd_Package)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_DurationUnit)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.StartDate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.StartDate.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.EndDate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.EndDate.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_Peak)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_StudentPackage)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_Category)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_GIRO)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_Sell)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_Peak_1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_StuPackage)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_RestUpgrade)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.grpPackageGroup)).BeginInit();
     this.grpPackageGroup.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl4)).BeginInit();
     this.groupControl4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMd_PackageGroup)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMd_PackageGroup)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_pkGroupCatID)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.grpCreditPackage)).BeginInit();
     this.grpCreditPackage.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl5)).BeginInit();
     this.groupControl5.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMd_CreditPackage)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMd_CreditPackage)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.EffCCStartDate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.EffCCStartDate.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.EffCCEndDate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.EffCCEndDate.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_CreditCategoryID)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.grpPackageClass)).BeginInit();
     this.grpPackageClass.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridPackageClass2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvPackageClass2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridPackageClass)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvPackageClass)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridPcGroupBranch2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvPcGroupBranch2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridPcGroupBranch)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvPcGroupBranch)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridPcGroupUseBranch2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvPcGroupUseBranch2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridPcGroupUseBranch)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvPcGroupUseBranch)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.grpPackageService)).BeginInit();
     this.grpPackageService.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridPackageService2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvPackageService2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridPackageService)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvPackageService)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridPackageBranch2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridPackageUseBranch2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvPSBranch2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvPSUseBranch2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridPackageBranch)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridPackageUseBranch)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvPSBranch)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvPSUseBranch)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.PackageGroup)).BeginInit();
     this.PackageGroup.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).BeginInit();
     this.groupControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMd_GroupEntries)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMd_GroupEntries)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_GrpPackageCode)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.GroupCreditPackage)).BeginInit();
     this.GroupCreditPackage.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl3)).BeginInit();
     this.groupControl3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.GridCreditRestric)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewmd_CreditRestric)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_PackageCode)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_AllowDiscount)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.grpBranch)).BeginInit();
     this.grpBranch.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridPacBranch2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvPacBranch2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridPacBranch)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvPacBranch)).BeginInit();
     this.SuspendLayout();
     //
     // grpMDPackageTop
     //
     this.grpMDPackageTop.Appearance.BackColor = System.Drawing.SystemColors.Control;
     this.grpMDPackageTop.Appearance.Options.UseBackColor = true;
     this.grpMDPackageTop.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.grpMDPackageTop.AppearanceCaption.Options.UseFont = true;
     this.grpMDPackageTop.Controls.Add(this.label31);
     this.grpMDPackageTop.Controls.Add(this.ddlPackageCategory);
     this.grpMDPackageTop.Controls.Add(this.Searchpanel);
     this.grpMDPackageTop.Controls.Add(this.grpPackage);
     this.grpMDPackageTop.Controls.Add(this.grpPackageGroup);
     this.grpMDPackageTop.Controls.Add(this.grpCreditPackage);
     this.grpMDPackageTop.ImeMode = System.Windows.Forms.ImeMode.On;
     this.grpMDPackageTop.Location = new System.Drawing.Point(8, 2);
     this.grpMDPackageTop.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.grpMDPackageTop.LookAndFeel.UseDefaultLookAndFeel = false;
     this.grpMDPackageTop.Name = "grpMDPackageTop";
     this.grpMDPackageTop.Size = new System.Drawing.Size(968, 280);
     this.grpMDPackageTop.TabIndex = 93;
     this.grpMDPackageTop.Text = "MASTER FILE";
     //
     // label31
     //
     this.label31.BackColor = System.Drawing.Color.Transparent;
     this.label31.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label31.Location = new System.Drawing.Point(8, 24);
     this.label31.Name = "label31";
     this.label31.Size = new System.Drawing.Size(136, 16);
     this.label31.TabIndex = 116;
     this.label31.Text = "Package Category";
     this.label31.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // ddlPackageCategory
     //
     this.ddlPackageCategory.EditValue = "mdPKG_cbNCategoryID";
     this.ddlPackageCategory.Location = new System.Drawing.Point(144, 24);
     this.ddlPackageCategory.Name = "ddlPackageCategory";
     this.ddlPackageCategory.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.ddlPackageCategory.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.ddlPackageCategory.Size = new System.Drawing.Size(176, 20);
     this.ddlPackageCategory.TabIndex = 19;
     this.ddlPackageCategory.SelectedIndexChanged += new System.EventHandler(this.ddlPackageCategory_SelectedIndexChanged);
     //
     // Searchpanel
     //
     this.Searchpanel.Controls.Add(this.btn_Search);
     this.Searchpanel.Controls.Add(this.txtSearch);
     this.Searchpanel.Location = new System.Drawing.Point(488, 24);
     this.Searchpanel.Name = "Searchpanel";
     this.Searchpanel.Size = new System.Drawing.Size(464, 24);
     this.Searchpanel.TabIndex = 151;
     //
     // btn_Search
     //
     this.btn_Search.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.btn_Search.Appearance.Options.UseFont = true;
     this.btn_Search.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btn_Search.Location = new System.Drawing.Point(392, 0);
     this.btn_Search.Name = "btn_Search";
     this.btn_Search.Size = new System.Drawing.Size(56, 20);
     this.btn_Search.TabIndex = 137;
     this.btn_Search.Text = "Search";
     this.btn_Search.Click += new System.EventHandler(this.btn_Search_Click);
     //
     // txtSearch
     //
     this.txtSearch.EditValue = "";
     this.txtSearch.ImeMode = System.Windows.Forms.ImeMode.On;
     this.txtSearch.Location = new System.Drawing.Point(232, 0);
     this.txtSearch.Name = "txtSearch";
     this.txtSearch.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtSearch.Properties.Appearance.Options.UseFont = true;
     this.txtSearch.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.txtSearch.Size = new System.Drawing.Size(152, 20);
     this.txtSearch.TabIndex = 136;
     this.txtSearch.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtSearch_KeyDown);
     //
     // grpPackage
     //
     this.grpPackage.Controls.Add(this.btn_PackageAdd);
     this.grpPackage.Controls.Add(this.btn_PackageDel);
     this.grpPackage.Controls.Add(this.groupControl1);
     this.grpPackage.Location = new System.Drawing.Point(0, 48);
     this.grpPackage.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.grpPackage.LookAndFeel.UseDefaultLookAndFeel = false;
     this.grpPackage.Name = "grpPackage";
     this.grpPackage.Size = new System.Drawing.Size(960, 232);
     this.grpPackage.TabIndex = 118;
     this.grpPackage.Text = "Package";
     //
     // btn_PackageAdd
     //
     this.btn_PackageAdd.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btn_PackageAdd.Appearance.Options.UseFont = true;
     this.btn_PackageAdd.Appearance.Options.UseTextOptions = true;
     this.btn_PackageAdd.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.btn_PackageAdd.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.btn_PackageAdd.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.btn_PackageAdd.ImageIndex = 0;
     this.btn_PackageAdd.ImageList = this.imageList1;
     this.btn_PackageAdd.ImeMode = System.Windows.Forms.ImeMode.On;
     this.btn_PackageAdd.Location = new System.Drawing.Point(8, 24);
     this.btn_PackageAdd.Name = "btn_PackageAdd";
     this.btn_PackageAdd.Size = new System.Drawing.Size(38, 16);
     this.btn_PackageAdd.TabIndex = 132;
     this.btn_PackageAdd.Click += new System.EventHandler(this.btn_PackageAdd_Click);
     //
     // imageList1
     //
     this.imageList1.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
     this.imageList1.TransparentColor = System.Drawing.Color.Magenta;
     this.imageList1.Images.SetKeyName(0, "");
     this.imageList1.Images.SetKeyName(1, "");
     this.imageList1.Images.SetKeyName(2, "");
     this.imageList1.Images.SetKeyName(3, "");
     this.imageList1.Images.SetKeyName(4, "");
     this.imageList1.Images.SetKeyName(5, "");
     this.imageList1.Images.SetKeyName(6, "");
     //
     // btn_PackageDel
     //
     this.btn_PackageDel.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btn_PackageDel.Appearance.Options.UseFont = true;
     this.btn_PackageDel.Appearance.Options.UseTextOptions = true;
     this.btn_PackageDel.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.btn_PackageDel.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.btn_PackageDel.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.btn_PackageDel.ImageIndex = 1;
     this.btn_PackageDel.ImageList = this.imageList1;
     this.btn_PackageDel.Location = new System.Drawing.Point(48, 24);
     this.btn_PackageDel.Name = "btn_PackageDel";
     this.btn_PackageDel.Size = new System.Drawing.Size(38, 16);
     this.btn_PackageDel.TabIndex = 131;
     this.btn_PackageDel.Click += new System.EventHandler(this.btn_PackageDel_Click);
     //
     // groupControl1
     //
     this.groupControl1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.groupControl1.Controls.Add(this.gridControlMd_Package);
     this.groupControl1.Location = new System.Drawing.Point(0, 40);
     this.groupControl1.Name = "groupControl1";
     this.groupControl1.Size = new System.Drawing.Size(952, 192);
     this.groupControl1.TabIndex = 121;
     //
     // gridControlMd_Package
     //
     this.gridControlMd_Package.Dock = System.Windows.Forms.DockStyle.Fill;
     gridLevelNode1.RelationName = "Level1";
     this.gridControlMd_Package.LevelTree.Nodes.AddRange(new DevExpress.XtraGrid.GridLevelNode[] {
     gridLevelNode1});
     this.gridControlMd_Package.Location = new System.Drawing.Point(0, 0);
     this.gridControlMd_Package.LookAndFeel.UseDefaultLookAndFeel = false;
     this.gridControlMd_Package.MainView = this.gridViewMd_Package;
     this.gridControlMd_Package.Name = "gridControlMd_Package";
     this.gridControlMd_Package.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.chk_Peak_1,
     this.chk_StuPackage,
     this.lk_Category,
     this.chk_GIRO,
     this.repositoryItemCheckEdit1,
     this.chk_Peak,
     this.chk_StudentPackage,
     this.chk_RestUpgrade,
     this.StartDate,
     this.EndDate,
     this.chk_Sell,
     this.chk_DurationUnit});
     this.gridControlMd_Package.Size = new System.Drawing.Size(952, 192);
     this.gridControlMd_Package.TabIndex = 2;
     this.gridControlMd_Package.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewMd_Package});
     //
     // gridViewMd_Package
     //
     this.gridViewMd_Package.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumnPKG1,
     this.gridColumnPKG2,
     this.gridColumnPKG3,
     this.gcPkgPriceWGST,
     this.gridColumnPKG4,
     this.gridColumnPKG5,
     this.gridColumn30,
     this.gcFreePkg,
     this.gridColumnPKG6,
     this.gridColumnPKG7,
     this.gridColumnPKG8,
     this.gridColumnPKG9,
     this.gridColumn1,
     this.gridColumn2,
     this.gridColumn3,
     this.gridColumn4,
     this.gridColumn5,
     this.gridColumn6,
     this.gridColumn7,
     this.gridColumn8,
     this.gridColumn28,
     this.gridColumn31});
     this.gridViewMd_Package.GridControl = this.gridControlMd_Package;
     this.gridViewMd_Package.Name = "gridViewMd_Package";
     this.gridViewMd_Package.OptionsCustomization.AllowFilter = false;
     this.gridViewMd_Package.OptionsCustomization.AllowSort = false;
     this.gridViewMd_Package.OptionsView.ColumnAutoWidth = false;
     this.gridViewMd_Package.OptionsView.ShowGroupPanel = false;
     this.gridViewMd_Package.FocusedRowChanged += new DevExpress.XtraGrid.Views.Base.FocusedRowChangedEventHandler(this.gridViewMd_Package_FocusedRowChanged);
     this.gridViewMd_Package.LostFocus += new System.EventHandler(this.gridViewMd_Package_LostFocus);
     //
     // gridColumnPKG1
     //
     this.gridColumnPKG1.Caption = "Package Code";
     this.gridColumnPKG1.FieldName = "strPackageCode";
     this.gridColumnPKG1.Name = "gridColumnPKG1";
     this.gridColumnPKG1.Visible = true;
     this.gridColumnPKG1.VisibleIndex = 0;
     this.gridColumnPKG1.Width = 84;
     //
     // gridColumnPKG2
     //
     this.gridColumnPKG2.Caption = "Description";
     this.gridColumnPKG2.FieldName = "strDescription";
     this.gridColumnPKG2.Name = "gridColumnPKG2";
     this.gridColumnPKG2.Visible = true;
     this.gridColumnPKG2.VisibleIndex = 1;
     this.gridColumnPKG2.Width = 147;
     //
     // gridColumnPKG3
     //
     this.gridColumnPKG3.Caption = "Price";
     this.gridColumnPKG3.DisplayFormat.FormatString = "d2";
     this.gridColumnPKG3.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumnPKG3.FieldName = "mListPrice";
     this.gridColumnPKG3.Name = "gridColumnPKG3";
     this.gridColumnPKG3.Visible = true;
     this.gridColumnPKG3.VisibleIndex = 3;
     this.gridColumnPKG3.Width = 61;
     //
     // gcPkgPriceWGST
     //
     this.gcPkgPriceWGST.Caption = "Price w GST";
     this.gcPkgPriceWGST.DisplayFormat.FormatString = "d2";
     this.gcPkgPriceWGST.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gcPkgPriceWGST.FieldName = "mListPriceWGST";
     this.gcPkgPriceWGST.Name = "gcPkgPriceWGST";
     this.gcPkgPriceWGST.Visible = true;
     this.gcPkgPriceWGST.VisibleIndex = 4;
     this.gcPkgPriceWGST.Width = 61;
     //
     // gridColumnPKG4
     //
     this.gridColumnPKG4.Caption = "Max Session";
     this.gridColumnPKG4.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumnPKG4.FieldName = "nMaxSession";
     this.gridColumnPKG4.Name = "gridColumnPKG4";
     this.gridColumnPKG4.Visible = true;
     this.gridColumnPKG4.VisibleIndex = 5;
     this.gridColumnPKG4.Width = 71;
     //
     // gridColumnPKG5
     //
     this.gridColumnPKG5.Caption = "Duration";
     this.gridColumnPKG5.FieldName = "nPackageDuration";
     this.gridColumnPKG5.Name = "gridColumnPKG5";
     this.gridColumnPKG5.Visible = true;
     this.gridColumnPKG5.VisibleIndex = 6;
     this.gridColumnPKG5.Width = 53;
     //
     // gridColumn30
     //
     this.gridColumn30.Caption = "Duration Unit";
     this.gridColumn30.ColumnEdit = this.chk_DurationUnit;
     this.gridColumn30.FieldName = "strDurationUnit";
     this.gridColumn30.Name = "gridColumn30";
     this.gridColumn30.Visible = true;
     this.gridColumn30.VisibleIndex = 7;
     //
     // chk_DurationUnit
     //
     this.chk_DurationUnit.AutoHeight = false;
     this.chk_DurationUnit.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.chk_DurationUnit.Items.AddRange(new object[] {
     "MONTH",
     "WEEK",
     "DAY"});
     this.chk_DurationUnit.Name = "chk_DurationUnit";
     //
     // gcFreePkg
     //
     this.gcFreePkg.Caption = "Free Package";
     this.gcFreePkg.FieldName = "strFreePkgCode";
     this.gcFreePkg.Name = "gcFreePkg";
     this.gcFreePkg.Visible = true;
     this.gcFreePkg.VisibleIndex = 8;
     //
     // gridColumnPKG6
     //
     this.gridColumnPKG6.Caption = "Price per session ";
     this.gridColumnPKG6.DisplayFormat.FormatString = "d2";
     this.gridColumnPKG6.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumnPKG6.FieldName = "mBaseUnitPrice";
     this.gridColumnPKG6.Name = "gridColumnPKG6";
     this.gridColumnPKG6.Visible = true;
     this.gridColumnPKG6.VisibleIndex = 9;
     this.gridColumnPKG6.Width = 95;
     //
     // gridColumnPKG7
     //
     this.gridColumnPKG7.Caption = "Eff. Start Date";
     this.gridColumnPKG7.ColumnEdit = this.StartDate;
     this.gridColumnPKG7.FieldName = "dtValidStart";
     this.gridColumnPKG7.Name = "gridColumnPKG7";
     this.gridColumnPKG7.Visible = true;
     this.gridColumnPKG7.VisibleIndex = 10;
     this.gridColumnPKG7.Width = 89;
     //
     // StartDate
     //
     this.StartDate.AutoHeight = false;
     this.StartDate.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.StartDate.Name = "StartDate";
     this.StartDate.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     //
     // gridColumnPKG8
     //
     this.gridColumnPKG8.Caption = "Eff. End Date";
     this.gridColumnPKG8.ColumnEdit = this.EndDate;
     this.gridColumnPKG8.FieldName = "dtValidEnd";
     this.gridColumnPKG8.Name = "gridColumnPKG8";
     this.gridColumnPKG8.Visible = true;
     this.gridColumnPKG8.VisibleIndex = 11;
     //
     // EndDate
     //
     this.EndDate.AutoHeight = false;
     this.EndDate.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.EndDate.Name = "EndDate";
     this.EndDate.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     //
     // gridColumnPKG9
     //
     this.gridColumnPKG9.Caption = "Status";
     this.gridColumnPKG9.FieldName = "nStatus";
     this.gridColumnPKG9.Name = "gridColumnPKG9";
     this.gridColumnPKG9.Visible = true;
     this.gridColumnPKG9.VisibleIndex = 20;
     //
     // gridColumn1
     //
     this.gridColumn1.Caption = "Receipt Desc";
     this.gridColumn1.FieldName = "strReceiptDesc";
     this.gridColumn1.Name = "gridColumn1";
     this.gridColumn1.Visible = true;
     this.gridColumn1.VisibleIndex = 2;
     this.gridColumn1.Width = 119;
     //
     // gridColumn2
     //
     this.gridColumn2.Caption = "Peak";
     this.gridColumn2.ColumnEdit = this.chk_Peak;
     this.gridColumn2.FieldName = "fPeak";
     this.gridColumn2.Name = "gridColumn2";
     this.gridColumn2.Visible = true;
     this.gridColumn2.VisibleIndex = 12;
     this.gridColumn2.Width = 39;
     //
     // chk_Peak
     //
     this.chk_Peak.AutoHeight = false;
     this.chk_Peak.Name = "chk_Peak";
     //
     // gridColumn3
     //
     this.gridColumn3.Caption = "Student Package";
     this.gridColumn3.ColumnEdit = this.chk_StudentPackage;
     this.gridColumn3.FieldName = "fStudentPackage";
     this.gridColumn3.Name = "gridColumn3";
     this.gridColumn3.Visible = true;
     this.gridColumn3.VisibleIndex = 13;
     this.gridColumn3.Width = 97;
     //
     // chk_StudentPackage
     //
     this.chk_StudentPackage.AutoHeight = false;
     this.chk_StudentPackage.Name = "chk_StudentPackage";
     //
     // gridColumn4
     //
     this.gridColumn4.Caption = "Category";
     this.gridColumn4.ColumnEdit = this.lk_Category;
     this.gridColumn4.FieldName = "nCategoryID";
     this.gridColumn4.Name = "gridColumn4";
     this.gridColumn4.OptionsColumn.AllowEdit = false;
     this.gridColumn4.Visible = true;
     this.gridColumn4.VisibleIndex = 14;
     //
     // lk_Category
     //
     this.lk_Category.AutoHeight = false;
     this.lk_Category.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lk_Category.Name = "lk_Category";
     //
     // gridColumn5
     //
     this.gridColumn5.Caption = "Valid Months";
     this.gridColumn5.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn5.FieldName = "nValidMonths";
     this.gridColumn5.Name = "gridColumn5";
     this.gridColumn5.Visible = true;
     this.gridColumn5.VisibleIndex = 15;
     //
     // gridColumn6
     //
     this.gridColumn6.Caption = "Warranty Months";
     this.gridColumn6.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn6.FieldName = "nWarrantyMonths";
     this.gridColumn6.Name = "gridColumn6";
     this.gridColumn6.Visible = true;
     this.gridColumn6.VisibleIndex = 16;
     this.gridColumn6.Width = 97;
     //
     // gridColumn7
     //
     this.gridColumn7.Caption = "GIRO";
     this.gridColumn7.ColumnEdit = this.chk_GIRO;
     this.gridColumn7.FieldName = "fGIRO";
     this.gridColumn7.Name = "gridColumn7";
     this.gridColumn7.Visible = true;
     this.gridColumn7.VisibleIndex = 17;
     this.gridColumn7.Width = 49;
     //
     // chk_GIRO
     //
     this.chk_GIRO.AutoHeight = false;
     this.chk_GIRO.Name = "chk_GIRO";
     //
     // gridColumn8
     //
     this.gridColumn8.Caption = "Upgrade Group";
     this.gridColumn8.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn8.FieldName = "fNoRestrictionUpgrade";
     this.gridColumn8.Name = "gridColumn8";
     this.gridColumn8.Visible = true;
     this.gridColumn8.VisibleIndex = 18;
     this.gridColumn8.Width = 108;
     //
     // gridColumn28
     //
     this.gridColumn28.Caption = "POS";
     this.gridColumn28.ColumnEdit = this.chk_Sell;
     this.gridColumn28.FieldName = "fSell";
     this.gridColumn28.Name = "gridColumn28";
     this.gridColumn28.Visible = true;
     this.gridColumn28.VisibleIndex = 19;
     //
     // chk_Sell
     //
     this.chk_Sell.AutoHeight = false;
     this.chk_Sell.Name = "chk_Sell";
     //
     // gridColumn31
     //
     this.gridColumn31.Caption = "Is Entries?";
     this.gridColumn31.FieldName = "fEntries";
     this.gridColumn31.Name = "gridColumn31";
     this.gridColumn31.Visible = true;
     this.gridColumn31.VisibleIndex = 21;
     //
     // chk_Peak_1
     //
     this.chk_Peak_1.AutoHeight = false;
     this.chk_Peak_1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.chk_Peak_1.Name = "chk_Peak_1";
     //
     // chk_StuPackage
     //
     this.chk_StuPackage.AutoHeight = false;
     this.chk_StuPackage.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.chk_StuPackage.Name = "chk_StuPackage";
     //
     // repositoryItemCheckEdit1
     //
     this.repositoryItemCheckEdit1.AutoHeight = false;
     this.repositoryItemCheckEdit1.Name = "repositoryItemCheckEdit1";
     //
     // chk_RestUpgrade
     //
     this.chk_RestUpgrade.AutoHeight = false;
     this.chk_RestUpgrade.Name = "chk_RestUpgrade";
     //
     // grpPackageGroup
     //
     this.grpPackageGroup.Controls.Add(this.btnPacGroup_Add);
     this.grpPackageGroup.Controls.Add(this.btnPacGroup_Del);
     this.grpPackageGroup.Controls.Add(this.groupControl4);
     this.grpPackageGroup.Location = new System.Drawing.Point(0, 48);
     this.grpPackageGroup.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.grpPackageGroup.LookAndFeel.UseDefaultLookAndFeel = false;
     this.grpPackageGroup.Name = "grpPackageGroup";
     this.grpPackageGroup.Size = new System.Drawing.Size(960, 232);
     this.grpPackageGroup.TabIndex = 119;
     this.grpPackageGroup.Text = "Package Group";
     //
     // btnPacGroup_Add
     //
     this.btnPacGroup_Add.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnPacGroup_Add.Appearance.Options.UseFont = true;
     this.btnPacGroup_Add.Appearance.Options.UseTextOptions = true;
     this.btnPacGroup_Add.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.btnPacGroup_Add.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.btnPacGroup_Add.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.btnPacGroup_Add.ImageIndex = 0;
     this.btnPacGroup_Add.ImageList = this.imageList1;
     this.btnPacGroup_Add.ImeMode = System.Windows.Forms.ImeMode.On;
     this.btnPacGroup_Add.Location = new System.Drawing.Point(8, 24);
     this.btnPacGroup_Add.Name = "btnPacGroup_Add";
     this.btnPacGroup_Add.Size = new System.Drawing.Size(38, 16);
     this.btnPacGroup_Add.TabIndex = 134;
     this.btnPacGroup_Add.Click += new System.EventHandler(this.btnPacGroup_Add_Click);
     //
     // btnPacGroup_Del
     //
     this.btnPacGroup_Del.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnPacGroup_Del.Appearance.Options.UseFont = true;
     this.btnPacGroup_Del.Appearance.Options.UseTextOptions = true;
     this.btnPacGroup_Del.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.btnPacGroup_Del.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.btnPacGroup_Del.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.btnPacGroup_Del.ImageIndex = 1;
     this.btnPacGroup_Del.ImageList = this.imageList1;
     this.btnPacGroup_Del.Location = new System.Drawing.Point(48, 24);
     this.btnPacGroup_Del.Name = "btnPacGroup_Del";
     this.btnPacGroup_Del.Size = new System.Drawing.Size(38, 16);
     this.btnPacGroup_Del.TabIndex = 133;
     this.btnPacGroup_Del.Click += new System.EventHandler(this.btnPacGroup_Del_Click);
     //
     // groupControl4
     //
     this.groupControl4.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.groupControl4.Controls.Add(this.gridControlMd_PackageGroup);
     this.groupControl4.Location = new System.Drawing.Point(0, 40);
     this.groupControl4.Name = "groupControl4";
     this.groupControl4.Size = new System.Drawing.Size(944, 184);
     this.groupControl4.TabIndex = 2;
     //
     // gridControlMd_PackageGroup
     //
     this.gridControlMd_PackageGroup.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridControlMd_PackageGroup.Location = new System.Drawing.Point(0, 0);
     this.gridControlMd_PackageGroup.LookAndFeel.UseDefaultLookAndFeel = false;
     this.gridControlMd_PackageGroup.MainView = this.gridViewMd_PackageGroup;
     this.gridControlMd_PackageGroup.Name = "gridControlMd_PackageGroup";
     this.gridControlMd_PackageGroup.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.lk_pkGroupCatID});
     this.gridControlMd_PackageGroup.Size = new System.Drawing.Size(944, 184);
     this.gridControlMd_PackageGroup.TabIndex = 2;
     this.gridControlMd_PackageGroup.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewMd_PackageGroup});
     //
     // gridViewMd_PackageGroup
     //
     this.gridViewMd_PackageGroup.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumnPG1,
     this.gridColumnPG2,
     this.gridColumnPG3,
     this.gcPkgComboPriceWGST,
     this.gridColumnPG4,
     this.gridColumnPG5,
     this.gridColumnPG6});
     this.gridViewMd_PackageGroup.GridControl = this.gridControlMd_PackageGroup;
     this.gridViewMd_PackageGroup.Name = "gridViewMd_PackageGroup";
     this.gridViewMd_PackageGroup.OptionsCustomization.AllowFilter = false;
     this.gridViewMd_PackageGroup.OptionsCustomization.AllowSort = false;
     this.gridViewMd_PackageGroup.OptionsView.ShowGroupPanel = false;
     this.gridViewMd_PackageGroup.FocusedRowChanged += new DevExpress.XtraGrid.Views.Base.FocusedRowChangedEventHandler(this.gridViewMd_PackageGroup_FocusedRowChanged);
     this.gridViewMd_PackageGroup.LostFocus += new System.EventHandler(this.gridViewMd_PackageGroup_LostFocus);
     //
     // gridColumnPG1
     //
     this.gridColumnPG1.Caption = "Package Group Code";
     this.gridColumnPG1.FieldName = "strPackageGroupCode";
     this.gridColumnPG1.Name = "gridColumnPG1";
     this.gridColumnPG1.Visible = true;
     this.gridColumnPG1.VisibleIndex = 0;
     //
     // gridColumnPG2
     //
     this.gridColumnPG2.Caption = "Description";
     this.gridColumnPG2.FieldName = "strDescription";
     this.gridColumnPG2.Name = "gridColumnPG2";
     this.gridColumnPG2.Visible = true;
     this.gridColumnPG2.VisibleIndex = 1;
     //
     // gridColumnPG3
     //
     this.gridColumnPG3.Caption = "Price";
     this.gridColumnPG3.DisplayFormat.FormatString = "d2";
     this.gridColumnPG3.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumnPG3.FieldName = "mListPrice";
     this.gridColumnPG3.Name = "gridColumnPG3";
     this.gridColumnPG3.Visible = true;
     this.gridColumnPG3.VisibleIndex = 2;
     //
     // gcPkgComboPriceWGST
     //
     this.gcPkgComboPriceWGST.Caption = "Price w GST";
     this.gcPkgComboPriceWGST.DisplayFormat.FormatString = "d2";
     this.gcPkgComboPriceWGST.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gcPkgComboPriceWGST.FieldName = "mListPriceWGST";
     this.gcPkgComboPriceWGST.Name = "gcPkgComboPriceWGST";
     this.gcPkgComboPriceWGST.Visible = true;
     this.gcPkgComboPriceWGST.VisibleIndex = 3;
     //
     // gridColumnPG4
     //
     this.gridColumnPG4.Caption = "Package Category";
     this.gridColumnPG4.ColumnEdit = this.lk_pkGroupCatID;
     this.gridColumnPG4.FieldName = "nCategoryID";
     this.gridColumnPG4.Name = "gridColumnPG4";
     this.gridColumnPG4.Visible = true;
     this.gridColumnPG4.VisibleIndex = 4;
     //
     // lk_pkGroupCatID
     //
     this.lk_pkGroupCatID.AutoHeight = false;
     this.lk_pkGroupCatID.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lk_pkGroupCatID.Name = "lk_pkGroupCatID";
     //
     // gridColumnPG5
     //
     this.gridColumnPG5.Caption = "Eff.Start Date";
     this.gridColumnPG5.FieldName = "dtValidStart";
     this.gridColumnPG5.Name = "gridColumnPG5";
     this.gridColumnPG5.Visible = true;
     this.gridColumnPG5.VisibleIndex = 5;
     //
     // gridColumnPG6
     //
     this.gridColumnPG6.Caption = "Eff.End Date";
     this.gridColumnPG6.FieldName = "dtValidEnd";
     this.gridColumnPG6.Name = "gridColumnPG6";
     this.gridColumnPG6.Visible = true;
     this.gridColumnPG6.VisibleIndex = 6;
     //
     // grpCreditPackage
     //
     this.grpCreditPackage.Controls.Add(this.btnCreditPackage_Add);
     this.grpCreditPackage.Controls.Add(this.btnCreditPackage_Del);
     this.grpCreditPackage.Controls.Add(this.groupControl5);
     this.grpCreditPackage.Location = new System.Drawing.Point(0, 48);
     this.grpCreditPackage.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.grpCreditPackage.LookAndFeel.UseDefaultLookAndFeel = false;
     this.grpCreditPackage.Name = "grpCreditPackage";
     this.grpCreditPackage.Size = new System.Drawing.Size(960, 232);
     this.grpCreditPackage.TabIndex = 121;
     this.grpCreditPackage.Text = "Credit Package";
     //
     // btnCreditPackage_Add
     //
     this.btnCreditPackage_Add.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnCreditPackage_Add.Appearance.Options.UseFont = true;
     this.btnCreditPackage_Add.Appearance.Options.UseTextOptions = true;
     this.btnCreditPackage_Add.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.btnCreditPackage_Add.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.btnCreditPackage_Add.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.btnCreditPackage_Add.ImageIndex = 0;
     this.btnCreditPackage_Add.ImageList = this.imageList1;
     this.btnCreditPackage_Add.ImeMode = System.Windows.Forms.ImeMode.On;
     this.btnCreditPackage_Add.Location = new System.Drawing.Point(8, 24);
     this.btnCreditPackage_Add.Name = "btnCreditPackage_Add";
     this.btnCreditPackage_Add.Size = new System.Drawing.Size(38, 16);
     this.btnCreditPackage_Add.TabIndex = 136;
     this.btnCreditPackage_Add.Click += new System.EventHandler(this.btnCreditPackage_Add_Click);
     //
     // btnCreditPackage_Del
     //
     this.btnCreditPackage_Del.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnCreditPackage_Del.Appearance.Options.UseFont = true;
     this.btnCreditPackage_Del.Appearance.Options.UseTextOptions = true;
     this.btnCreditPackage_Del.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.btnCreditPackage_Del.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.btnCreditPackage_Del.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.btnCreditPackage_Del.ImageIndex = 1;
     this.btnCreditPackage_Del.ImageList = this.imageList1;
     this.btnCreditPackage_Del.Location = new System.Drawing.Point(48, 24);
     this.btnCreditPackage_Del.Name = "btnCreditPackage_Del";
     this.btnCreditPackage_Del.Size = new System.Drawing.Size(38, 16);
     this.btnCreditPackage_Del.TabIndex = 135;
     this.btnCreditPackage_Del.Click += new System.EventHandler(this.btnCreditPackage_Del_Click);
     //
     // groupControl5
     //
     this.groupControl5.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.groupControl5.Controls.Add(this.gridControlMd_CreditPackage);
     this.groupControl5.Location = new System.Drawing.Point(0, 40);
     this.groupControl5.Name = "groupControl5";
     this.groupControl5.Size = new System.Drawing.Size(952, 192);
     this.groupControl5.TabIndex = 2;
     this.groupControl5.Text = "groupControl5";
     //
     // gridControlMd_CreditPackage
     //
     this.gridControlMd_CreditPackage.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridControlMd_CreditPackage.Location = new System.Drawing.Point(0, 0);
     this.gridControlMd_CreditPackage.LookAndFeel.UseDefaultLookAndFeel = false;
     this.gridControlMd_CreditPackage.MainView = this.gridViewMd_CreditPackage;
     this.gridControlMd_CreditPackage.Name = "gridControlMd_CreditPackage";
     this.gridControlMd_CreditPackage.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.lk_CreditCategoryID,
     this.EffCCStartDate,
     this.EffCCEndDate});
     this.gridControlMd_CreditPackage.Size = new System.Drawing.Size(952, 192);
     this.gridControlMd_CreditPackage.TabIndex = 2;
     this.gridControlMd_CreditPackage.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewMd_CreditPackage});
     //
     // gridViewMd_CreditPackage
     //
     this.gridViewMd_CreditPackage.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumnCP1,
     this.gridColumnCP2,
     this.gridColumn24,
     this.gridColumnCP3,
     this.gcPriceWGST,
     this.gridColumnCP4,
     this.gridColumnCP5,
     this.gridColumnCP6,
     this.gridColumn29,
     this.gridColumnCP7,
     this.gridColumnCP8,
     this.gcFreeCredit,
     this.gridColumnCP9});
     this.gridViewMd_CreditPackage.GridControl = this.gridControlMd_CreditPackage;
     this.gridViewMd_CreditPackage.HorzScrollVisibility = DevExpress.XtraGrid.Views.Base.ScrollVisibility.Always;
     this.gridViewMd_CreditPackage.Name = "gridViewMd_CreditPackage";
     this.gridViewMd_CreditPackage.OptionsCustomization.AllowFilter = false;
     this.gridViewMd_CreditPackage.OptionsCustomization.AllowSort = false;
     this.gridViewMd_CreditPackage.OptionsView.ColumnAutoWidth = false;
     this.gridViewMd_CreditPackage.OptionsView.ShowGroupPanel = false;
     this.gridViewMd_CreditPackage.FocusedRowChanged += new DevExpress.XtraGrid.Views.Base.FocusedRowChangedEventHandler(this.gridViewMd_CreditPackage_FocusedRowChanged);
     this.gridViewMd_CreditPackage.LostFocus += new System.EventHandler(this.gridViewMd_CreditPackage_LostFocus);
     //
     // gridColumnCP1
     //
     this.gridColumnCP1.Caption = "Credit Package Code";
     this.gridColumnCP1.FieldName = "strCreditPackageCode";
     this.gridColumnCP1.Name = "gridColumnCP1";
     this.gridColumnCP1.Visible = true;
     this.gridColumnCP1.VisibleIndex = 0;
     this.gridColumnCP1.Width = 111;
     //
     // gridColumnCP2
     //
     this.gridColumnCP2.Caption = "Description";
     this.gridColumnCP2.FieldName = "strDescription";
     this.gridColumnCP2.Name = "gridColumnCP2";
     this.gridColumnCP2.Visible = true;
     this.gridColumnCP2.VisibleIndex = 1;
     this.gridColumnCP2.Width = 200;
     //
     // gridColumn24
     //
     this.gridColumn24.Caption = "Receipt Description";
     this.gridColumn24.FieldName = "strReceiptDesc";
     this.gridColumn24.Name = "gridColumn24";
     this.gridColumn24.Visible = true;
     this.gridColumn24.VisibleIndex = 10;
     this.gridColumn24.Width = 262;
     //
     // gridColumnCP3
     //
     this.gridColumnCP3.Caption = "Price";
     this.gridColumnCP3.DisplayFormat.FormatString = "d2";
     this.gridColumnCP3.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumnCP3.FieldName = "mListPrice";
     this.gridColumnCP3.Name = "gridColumnCP3";
     this.gridColumnCP3.Visible = true;
     this.gridColumnCP3.VisibleIndex = 2;
     //
     // gcPriceWGST
     //
     this.gcPriceWGST.Caption = "Price w GST";
     this.gcPriceWGST.DisplayFormat.FormatString = "d2";
     this.gcPriceWGST.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gcPriceWGST.FieldName = "mListPriceWGST";
     this.gcPriceWGST.Name = "gcPriceWGST";
     this.gcPriceWGST.Visible = true;
     this.gcPriceWGST.VisibleIndex = 3;
     //
     // gridColumnCP4
     //
     this.gridColumnCP4.Caption = "Eff.Start Date";
     this.gridColumnCP4.ColumnEdit = this.EffCCStartDate;
     this.gridColumnCP4.FieldName = "dtValidStart";
     this.gridColumnCP4.Name = "gridColumnCP4";
     this.gridColumnCP4.Visible = true;
     this.gridColumnCP4.VisibleIndex = 4;
     this.gridColumnCP4.Width = 98;
     //
     // EffCCStartDate
     //
     this.EffCCStartDate.AutoHeight = false;
     this.EffCCStartDate.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.EffCCStartDate.Name = "EffCCStartDate";
     this.EffCCStartDate.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     //
     // gridColumnCP5
     //
     this.gridColumnCP5.Caption = "Eff.End Date";
     this.gridColumnCP5.ColumnEdit = this.EffCCEndDate;
     this.gridColumnCP5.FieldName = "dtValidEnd";
     this.gridColumnCP5.Name = "gridColumnCP5";
     this.gridColumnCP5.Visible = true;
     this.gridColumnCP5.VisibleIndex = 5;
     this.gridColumnCP5.Width = 91;
     //
     // EffCCEndDate
     //
     this.EffCCEndDate.AutoHeight = false;
     this.EffCCEndDate.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.EffCCEndDate.Name = "EffCCEndDate";
     this.EffCCEndDate.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     //
     // gridColumnCP6
     //
     this.gridColumnCP6.Caption = "Category";
     this.gridColumnCP6.ColumnEdit = this.lk_CreditCategoryID;
     this.gridColumnCP6.FieldName = "nCategoryID";
     this.gridColumnCP6.Name = "gridColumnCP6";
     this.gridColumnCP6.OptionsColumn.AllowEdit = false;
     this.gridColumnCP6.Visible = true;
     this.gridColumnCP6.VisibleIndex = 6;
     this.gridColumnCP6.Width = 97;
     //
     // lk_CreditCategoryID
     //
     this.lk_CreditCategoryID.AutoHeight = false;
     this.lk_CreditCategoryID.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lk_CreditCategoryID.Name = "lk_CreditCategoryID";
     //
     // gridColumn29
     //
     this.gridColumn29.Caption = "Upgrade Group";
     this.gridColumn29.FieldName = "fNoRestrictionUpgrade";
     this.gridColumn29.Name = "gridColumn29";
     this.gridColumn29.Visible = true;
     this.gridColumn29.VisibleIndex = 8;
     this.gridColumn29.Width = 65;
     //
     // gridColumnCP7
     //
     this.gridColumnCP7.Caption = "Valid Months";
     this.gridColumnCP7.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumnCP7.FieldName = "nValidMonths";
     this.gridColumnCP7.Name = "gridColumnCP7";
     this.gridColumnCP7.Visible = true;
     this.gridColumnCP7.VisibleIndex = 7;
     //
     // gridColumnCP8
     //
     this.gridColumnCP8.Caption = "Credit Amount";
     this.gridColumnCP8.DisplayFormat.FormatString = "d2";
     this.gridColumnCP8.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumnCP8.FieldName = "mCreditAmount";
     this.gridColumnCP8.Name = "gridColumnCP8";
     this.gridColumnCP8.Visible = true;
     this.gridColumnCP8.VisibleIndex = 9;
     this.gridColumnCP8.Width = 80;
     //
     // gcFreeCredit
     //
     this.gcFreeCredit.Caption = "Free Credit";
     this.gcFreeCredit.DisplayFormat.FormatString = "d2";
     this.gcFreeCredit.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gcFreeCredit.FieldName = "mFreeCredit";
     this.gcFreeCredit.Name = "gcFreeCredit";
     this.gcFreeCredit.Visible = true;
     this.gcFreeCredit.VisibleIndex = 11;
     this.gcFreeCredit.Width = 80;
     //
     // gridColumnCP9
     //
     this.gridColumnCP9.Caption = "Credit discount";
     this.gridColumnCP9.DisplayFormat.FormatString = "d2";
     this.gridColumnCP9.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumnCP9.FieldName = "dCreditDiscount";
     this.gridColumnCP9.Name = "gridColumnCP9";
     this.gridColumnCP9.Visible = true;
     this.gridColumnCP9.VisibleIndex = 12;
     this.gridColumnCP9.Width = 80;
     //
     // grpPackageClass
     //
     this.grpPackageClass.Controls.Add(this.btn_PGC_Del);
     this.grpPackageClass.Controls.Add(this.btn_PGCAll_Del);
     this.grpPackageClass.Controls.Add(this.btn_PGCAll_Add);
     this.grpPackageClass.Controls.Add(this.btn_PGC_Add);
     this.grpPackageClass.Controls.Add(this.gridPackageClass2);
     this.grpPackageClass.Controls.Add(this.label2);
     this.grpPackageClass.Controls.Add(this.gridPackageClass);
     this.grpPackageClass.Controls.Add(this.btn_PGB_Del);
     this.grpPackageClass.Controls.Add(this.btn_PGBAll_Del);
     this.grpPackageClass.Controls.Add(this.btn_PGBAll_Add);
     this.grpPackageClass.Controls.Add(this.btn_PGB_Add);
     this.grpPackageClass.Controls.Add(this.btn_PGUB_Del);
     this.grpPackageClass.Controls.Add(this.btn_PGUBAll_Del);
     this.grpPackageClass.Controls.Add(this.btn_PGUBAll_Add);
     this.grpPackageClass.Controls.Add(this.btn_PGUB_Add);
     this.grpPackageClass.Controls.Add(this.gridPcGroupBranch2);
     this.grpPackageClass.Controls.Add(this.gridPcGroupUseBranch2);
     this.grpPackageClass.Controls.Add(this.label4);
     this.grpPackageClass.Controls.Add(this.label5);
     this.grpPackageClass.Controls.Add(this.gridPcGroupBranch);
     this.grpPackageClass.Controls.Add(this.gridPcGroupUseBranch);
     this.grpPackageClass.Controls.Add(this.label119);
     this.grpPackageClass.Controls.Add(this.label120);
     this.grpPackageClass.Location = new System.Drawing.Point(8, 288);
     this.grpPackageClass.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.grpPackageClass.LookAndFeel.UseDefaultLookAndFeel = false;
     this.grpPackageClass.Name = "grpPackageClass";
     this.grpPackageClass.Size = new System.Drawing.Size(968, 424);
     this.grpPackageClass.TabIndex = 94;
     this.grpPackageClass.Text = "EMPLOYEE PACKAGE SETUP .....";
     this.grpPackageClass.AlwaysScrollActiveControlIntoView = true;
     //
     // btn_PGC_Del
     //
     this.btn_PGC_Del.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btn_PGC_Del.Location = new System.Drawing.Point(496, 232);
     this.btn_PGC_Del.Name = "btn_PGC_Del";
     this.btn_PGC_Del.Size = new System.Drawing.Size(30, 20);
     this.btn_PGC_Del.TabIndex = 151;
     this.btn_PGC_Del.Text = "<";
     this.btn_PGC_Del.Click += new System.EventHandler(this.btn_PGC_Del_Click);
     //
     // btn_PGCAll_Del
     //
     this.btn_PGCAll_Del.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btn_PGCAll_Del.Location = new System.Drawing.Point(496, 208);
     this.btn_PGCAll_Del.Name = "btn_PGCAll_Del";
     this.btn_PGCAll_Del.Size = new System.Drawing.Size(30, 20);
     this.btn_PGCAll_Del.TabIndex = 150;
     this.btn_PGCAll_Del.Text = "<<";
     this.btn_PGCAll_Del.Click += new System.EventHandler(this.btn_PGCAll_Del_Click);
     //
     // btn_PGCAll_Add
     //
     this.btn_PGCAll_Add.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btn_PGCAll_Add.Location = new System.Drawing.Point(496, 184);
     this.btn_PGCAll_Add.Name = "btn_PGCAll_Add";
     this.btn_PGCAll_Add.Size = new System.Drawing.Size(30, 20);
     this.btn_PGCAll_Add.TabIndex = 149;
     this.btn_PGCAll_Add.Text = ">>";
     this.btn_PGCAll_Add.Click += new System.EventHandler(this.btn_PGCAll_Add_Click);
     //
     // btn_PGC_Add
     //
     this.btn_PGC_Add.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btn_PGC_Add.Location = new System.Drawing.Point(496, 160);
     this.btn_PGC_Add.Name = "btn_PGC_Add";
     this.btn_PGC_Add.Size = new System.Drawing.Size(30, 20);
     this.btn_PGC_Add.TabIndex = 148;
     this.btn_PGC_Add.Text = ">";
     this.btn_PGC_Add.Click += new System.EventHandler(this.btn_PGC_Add_Click);
     //
     // gridPackageClass2
     //
     this.gridPackageClass2.Location = new System.Drawing.Point(536, 160);
     this.gridPackageClass2.MainView = this.gvPackageClass2;
     this.gridPackageClass2.Name = "gridPackageClass2";
     this.gridPackageClass2.Size = new System.Drawing.Size(424, 128);
     this.gridPackageClass2.TabIndex = 152;
     this.gridPackageClass2.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gvPackageClass2});
     //
     // gvPackageClass2
     //
     this.gvPackageClass2.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn13,
     this.gridColumn14,
     this.gridColumn21});
     this.gvPackageClass2.GridControl = this.gridPackageClass2;
     this.gvPackageClass2.Name = "gvPackageClass2";
     this.gvPackageClass2.OptionsBehavior.AllowIncrementalSearch = true;
     this.gvPackageClass2.OptionsBehavior.Editable = false;
     this.gvPackageClass2.OptionsCustomization.AllowFilter = false;
     this.gvPackageClass2.OptionsSelection.MultiSelect = true;
     this.gvPackageClass2.OptionsView.ShowGroupPanel = false;
     this.gvPackageClass2.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.gridColumn13, DevExpress.Data.ColumnSortOrder.Ascending)});
     //
     // gridColumn13
     //
     this.gridColumn13.Caption = "Class Code";
     this.gridColumn13.FieldName = "strClassCode";
     this.gridColumn13.Name = "gridColumn13";
     this.gridColumn13.Visible = true;
     this.gridColumn13.VisibleIndex = 0;
     this.gridColumn13.Width = 104;
     //
     // gridColumn14
     //
     this.gridColumn14.Caption = "Description";
     this.gridColumn14.FieldName = "strDescription";
     this.gridColumn14.Name = "gridColumn14";
     this.gridColumn14.Visible = true;
     this.gridColumn14.VisibleIndex = 1;
     this.gridColumn14.Width = 282;
     //
     // gridColumn21
     //
     this.gridColumn21.FieldName = "strPackageCode";
     this.gridColumn21.Name = "gridColumn21";
     //
     // label2
     //
     this.label2.Location = new System.Drawing.Point(8, 160);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(56, 34);
     this.label2.TabIndex = 153;
     this.label2.Text = "Package Class";
     //
     // gridPackageClass
     //
     this.gridPackageClass.Location = new System.Drawing.Point(64, 160);
     this.gridPackageClass.MainView = this.gvPackageClass;
     this.gridPackageClass.Name = "gridPackageClass";
     this.gridPackageClass.Size = new System.Drawing.Size(424, 128);
     this.gridPackageClass.TabIndex = 147;
     this.gridPackageClass.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gvPackageClass});
     //
     // gvPackageClass
     //
     this.gvPackageClass.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn15,
     this.gridColumn16});
     this.gvPackageClass.GridControl = this.gridPackageClass;
     this.gvPackageClass.Name = "gvPackageClass";
     this.gvPackageClass.OptionsBehavior.AllowIncrementalSearch = true;
     this.gvPackageClass.OptionsBehavior.Editable = false;
     this.gvPackageClass.OptionsCustomization.AllowFilter = false;
     this.gvPackageClass.OptionsSelection.MultiSelect = true;
     this.gvPackageClass.OptionsView.ShowGroupPanel = false;
     this.gvPackageClass.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.gridColumn15, DevExpress.Data.ColumnSortOrder.Ascending)});
     //
     // gridColumn15
     //
     this.gridColumn15.Caption = "Class Code";
     this.gridColumn15.FieldName = "strClassCode";
     this.gridColumn15.Name = "gridColumn15";
     this.gridColumn15.Visible = true;
     this.gridColumn15.VisibleIndex = 0;
     this.gridColumn15.Width = 107;
     //
     // gridColumn16
     //
     this.gridColumn16.Caption = "Description";
     this.gridColumn16.FieldName = "strDescription";
     this.gridColumn16.Name = "gridColumn16";
     this.gridColumn16.Visible = true;
     this.gridColumn16.VisibleIndex = 1;
     this.gridColumn16.Width = 279;
     //
     // btn_PGB_Del
     //
     this.btn_PGB_Del.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btn_PGB_Del.Location = new System.Drawing.Point(496, 96);
     this.btn_PGB_Del.Name = "btn_PGB_Del";
     this.btn_PGB_Del.Size = new System.Drawing.Size(30, 20);
     this.btn_PGB_Del.TabIndex = 144;
     this.btn_PGB_Del.Text = "<";
     this.btn_PGB_Del.Click += new System.EventHandler(this.btn_PGB_Del_Click);
     //
     // btn_PGBAll_Del
     //
     this.btn_PGBAll_Del.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btn_PGBAll_Del.Location = new System.Drawing.Point(496, 72);
     this.btn_PGBAll_Del.Name = "btn_PGBAll_Del";
     this.btn_PGBAll_Del.Size = new System.Drawing.Size(30, 20);
     this.btn_PGBAll_Del.TabIndex = 143;
     this.btn_PGBAll_Del.Text = "<<";
     this.btn_PGBAll_Del.Click += new System.EventHandler(this.btn_PGBAll_Del_Click);
     //
     // btn_PGBAll_Add
     //
     this.btn_PGBAll_Add.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btn_PGBAll_Add.Location = new System.Drawing.Point(496, 48);
     this.btn_PGBAll_Add.Name = "btn_PGBAll_Add";
     this.btn_PGBAll_Add.Size = new System.Drawing.Size(30, 20);
     this.btn_PGBAll_Add.TabIndex = 142;
     this.btn_PGBAll_Add.Text = ">>";
     this.btn_PGBAll_Add.Click += new System.EventHandler(this.btn_PGBAll_Add_Click);
     //
     // btn_PGB_Add
     //
     this.btn_PGB_Add.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btn_PGB_Add.Location = new System.Drawing.Point(496, 24);
     this.btn_PGB_Add.Name = "btn_PGB_Add";
     this.btn_PGB_Add.Size = new System.Drawing.Size(30, 20);
     this.btn_PGB_Add.TabIndex = 141;
     this.btn_PGB_Add.Text = ">";
     this.btn_PGB_Add.Click += new System.EventHandler(this.btn_PGB_Add_Click);
     //
     // btn_PGUB_Del
     //
     this.btn_PGUB_Del.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btn_PGUB_Del.Location = new System.Drawing.Point(496, 362);
     this.btn_PGUB_Del.Name = "btn_PGUB_Del";
     this.btn_PGUB_Del.Size = new System.Drawing.Size(30, 20);
     this.btn_PGUB_Del.TabIndex = 144;
     this.btn_PGUB_Del.Text = "<";
     this.btn_PGUB_Del.Click += new System.EventHandler(this.btn_PGUB_Del_Click);
     //
     // btn_PGUBAll_Del
     //
     this.btn_PGUBAll_Del.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btn_PGUBAll_Del.Location = new System.Drawing.Point(496, 338);
     this.btn_PGUBAll_Del.Name = "btn_PGUBAll_Del";
     this.btn_PGUBAll_Del.Size = new System.Drawing.Size(30, 20);
     this.btn_PGUBAll_Del.TabIndex = 143;
     this.btn_PGUBAll_Del.Text = "<<";
     this.btn_PGUBAll_Del.Click += new System.EventHandler(this.btn_PGUBAll_Del_Click);
     //
     // btn_PGBAll_Add
     //
     this.btn_PGUBAll_Add.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btn_PGUBAll_Add.Location = new System.Drawing.Point(496, 314);
     this.btn_PGUBAll_Add.Name = "btn_PGUBAll_Add";
     this.btn_PGUBAll_Add.Size = new System.Drawing.Size(30, 20);
     this.btn_PGUBAll_Add.TabIndex = 142;
     this.btn_PGUBAll_Add.Text = ">>";
     this.btn_PGUBAll_Add.Click += new System.EventHandler(this.btn_PGUBAll_Add_Click);
     //
     // btn_PUGB_Add
     //
     this.btn_PGUB_Add.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btn_PGUB_Add.Location = new System.Drawing.Point(496, 290);
     this.btn_PGUB_Add.Name = "btn_PGUB_Add";
     this.btn_PGUB_Add.Size = new System.Drawing.Size(30, 20);
     this.btn_PGUB_Add.TabIndex = 141;
     this.btn_PGUB_Add.Text = ">";
     this.btn_PGUB_Add.Click += new System.EventHandler(this.btn_PGUB_Add_Click);
     //
     // gridPcGroupBranch2
     //
     this.gridPcGroupBranch2.Location = new System.Drawing.Point(536, 24);
     this.gridPcGroupBranch2.MainView = this.gvPcGroupBranch2;
     this.gridPcGroupBranch2.Name = "gridPcGroupBranch2";
     this.gridPcGroupBranch2.Size = new System.Drawing.Size(424, 128);
     this.gridPcGroupBranch2.TabIndex = 145;
     this.gridPcGroupBranch2.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gvPcGroupBranch2});
     //
     // gvPcGroupBranch2
     //
     this.gvPcGroupBranch2.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn17,
     this.gridColumn18,
     this.gridColumn22});
     this.gvPcGroupBranch2.GridControl = this.gridPcGroupBranch2;
     this.gvPcGroupBranch2.Name = "gvPcGroupBranch2";
     this.gvPcGroupBranch2.OptionsBehavior.AllowIncrementalSearch = true;
     this.gvPcGroupBranch2.OptionsBehavior.Editable = false;
     this.gvPcGroupBranch2.OptionsCustomization.AllowFilter = false;
     this.gvPcGroupBranch2.OptionsSelection.MultiSelect = true;
     this.gvPcGroupBranch2.OptionsView.ShowGroupPanel = false;
     this.gvPcGroupBranch2.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.gridColumn17, DevExpress.Data.ColumnSortOrder.Ascending)});
     //
     // gridColumn17
     //
     this.gridColumn17.Caption = "Branch";
     this.gridColumn17.FieldName = "strBranchCode";
     this.gridColumn17.Name = "gridColumn17";
     this.gridColumn17.Visible = true;
     this.gridColumn17.VisibleIndex = 0;
     this.gridColumn17.Width = 104;
     //
     // gridColumn18
     //
     this.gridColumn18.Caption = "Branch Name";
     this.gridColumn18.FieldName = "strBranchName";
     this.gridColumn18.Name = "gridColumn18";
     this.gridColumn18.Visible = true;
     this.gridColumn18.VisibleIndex = 1;
     this.gridColumn18.Width = 282;
     //
     // gridColumn22
     //
     this.gridColumn22.Caption = "strPackageCode";
     this.gridColumn22.FieldName = "strPackageCode";
     this.gridColumn22.Name = "gridColumn22";
     //
     // gridColumn50
     //
     this.gridColumn50.Caption = "Branch";
     this.gridColumn50.FieldName = "strBranchCode";
     this.gridColumn50.Name = "gridColumn50";
     this.gridColumn50.Visible = true;
     this.gridColumn50.VisibleIndex = 0;
     this.gridColumn50.Width = 104;
     //
     // gridColumn51
     //
     this.gridColumn51.Caption = "Branch Name";
     this.gridColumn51.FieldName = "strBranchName";
     this.gridColumn51.Name = "gridColumn51";
     this.gridColumn51.Visible = true;
     this.gridColumn51.VisibleIndex = 1;
     this.gridColumn51.Width = 282;
     //
     // gridColumn52
     //
     this.gridColumn52.Caption = "strPackageCode";
     this.gridColumn52.FieldName = "strPackageCode";
     this.gridColumn52.Name = "gridColumn52";
     //
     // label4
     //
     this.label4.Location = new System.Drawing.Point(8, 24);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(56, 54);
     this.label4.TabIndex = 146;
     this.label4.Text = "Package Sell Branch";
     //
     // gridPcGroupBranch
     //
     this.gridPcGroupBranch.Location = new System.Drawing.Point(64, 24);
     this.gridPcGroupBranch.MainView = this.gvPcGroupBranch;
     this.gridPcGroupBranch.Name = "gridPcGroupBranch";
     this.gridPcGroupBranch.Size = new System.Drawing.Size(424, 128);
     this.gridPcGroupBranch.TabIndex = 140;
     this.gridPcGroupBranch.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gvPcGroupBranch});
     //
     // gvPcGroupBranch
     //
     this.gvPcGroupBranch.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn19,
     this.gridColumn20});
     this.gvPcGroupBranch.GridControl = this.gridPcGroupBranch;
     this.gvPcGroupBranch.Name = "gvPcGroupBranch";
     this.gvPcGroupBranch.OptionsBehavior.AllowIncrementalSearch = true;
     this.gvPcGroupBranch.OptionsBehavior.Editable = false;
     this.gvPcGroupBranch.OptionsCustomization.AllowFilter = false;
     this.gvPcGroupBranch.OptionsSelection.MultiSelect = true;
     this.gvPcGroupBranch.OptionsView.ShowGroupPanel = false;
     this.gvPcGroupBranch.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.gridColumn19, DevExpress.Data.ColumnSortOrder.Ascending)});
     //
     // gridColumn19
     //
     this.gridColumn19.Caption = "Branch";
     this.gridColumn19.FieldName = "strBranchCode";
     this.gridColumn19.Name = "gridColumn19";
     this.gridColumn19.Visible = true;
     this.gridColumn19.VisibleIndex = 0;
     this.gridColumn19.Width = 107;
     //
     // gridColumn20
     //
     this.gridColumn20.Caption = "Branch Name";
     this.gridColumn20.FieldName = "strBranchName";
     this.gridColumn20.Name = "gridColumn20";
     this.gridColumn20.Visible = true;
     this.gridColumn20.VisibleIndex = 1;
     this.gridColumn20.Width = 279;
     //
     // gridColumn53
     //
     this.gridColumn53.Caption = "Branch";
     this.gridColumn53.FieldName = "strBranchCode";
     this.gridColumn53.Name = "gridColumn53";
     this.gridColumn53.Visible = true;
     this.gridColumn53.VisibleIndex = 0;
     this.gridColumn53.Width = 107;
     //
     // gridColumn54
     //
     this.gridColumn54.Caption = "Branch Name";
     this.gridColumn54.FieldName = "strBranchName";
     this.gridColumn54.Name = "gridColumn54";
     this.gridColumn54.Visible = true;
     this.gridColumn54.VisibleIndex = 1;
     this.gridColumn54.Width = 279;
     //
     // label119
     //
     this.label119.BackColor = System.Drawing.Color.Transparent;
     this.label119.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label119.Location = new System.Drawing.Point(560, 24);
     this.label119.Name = "label119";
     this.label119.Size = new System.Drawing.Size(56, 16);
     this.label119.TabIndex = 139;
     this.label119.Text = "Services";
     this.label119.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // label120
     //
     this.label120.BackColor = System.Drawing.Color.Transparent;
     this.label120.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label120.Location = new System.Drawing.Point(288, 24);
     this.label120.Name = "label120";
     this.label120.Size = new System.Drawing.Size(56, 16);
     this.label120.TabIndex = 138;
     this.label120.Text = "Class";
     this.label120.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // gridPcGroupUseBranch2
     //
     this.gridPcGroupUseBranch2.Location = new System.Drawing.Point(536, 290);
     this.gridPcGroupUseBranch2.MainView = this.gvPcGroupUseBranch2;
     this.gridPcGroupUseBranch2.Name = "gridPcGroupBranch2";
     this.gridPcGroupUseBranch2.Size = new System.Drawing.Size(424, 128);
     this.gridPcGroupUseBranch2.TabIndex = 145;
     this.gridPcGroupUseBranch2.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gvPcGroupUseBranch2});
     //
     // gvPcGroupUseBranch2
     //
     this.gvPcGroupUseBranch2.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn50,
     this.gridColumn51,
     this.gridColumn52});
     this.gvPcGroupUseBranch2.GridControl = this.gridPcGroupUseBranch2;
     this.gvPcGroupUseBranch2.Name = "gvPcGroupUseBranch2";
     this.gvPcGroupUseBranch2.OptionsBehavior.AllowIncrementalSearch = true;
     this.gvPcGroupUseBranch2.OptionsBehavior.Editable = false;
     this.gvPcGroupUseBranch2.OptionsCustomization.AllowFilter = false;
     this.gvPcGroupUseBranch2.OptionsSelection.MultiSelect = true;
     this.gvPcGroupUseBranch2.OptionsView.ShowGroupPanel = false;
     this.gvPcGroupUseBranch2.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.gridColumn17, DevExpress.Data.ColumnSortOrder.Ascending)});
     //
     // label5
     //
     this.label5.Location = new System.Drawing.Point(8, 290);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(56, 54);
     this.label5.TabIndex = 146;
     this.label5.Text = "Package Use Branch";
     //
     // gridPcGroupUseBranch
     //
     this.gridPcGroupUseBranch.Location = new System.Drawing.Point(64, 290);
     this.gridPcGroupUseBranch.MainView = this.gvPcGroupUseBranch;
     this.gridPcGroupUseBranch.Name = "gridPcGroupBranch";
     this.gridPcGroupUseBranch.Size = new System.Drawing.Size(424, 128);
     this.gridPcGroupUseBranch.TabIndex = 140;
     this.gridPcGroupUseBranch.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gvPcGroupUseBranch});
     //
     // gvPcGroupUseBranch
     //
     this.gvPcGroupUseBranch.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn53,
     this.gridColumn54});
     this.gvPcGroupUseBranch.GridControl = this.gridPcGroupUseBranch;
     this.gvPcGroupUseBranch.Name = "gvPcGroupBranch";
     this.gvPcGroupUseBranch.OptionsBehavior.AllowIncrementalSearch = true;
     this.gvPcGroupUseBranch.OptionsBehavior.Editable = false;
     this.gvPcGroupUseBranch.OptionsCustomization.AllowFilter = false;
     this.gvPcGroupUseBranch.OptionsSelection.MultiSelect = true;
     this.gvPcGroupUseBranch.OptionsView.ShowGroupPanel = false;
     this.gvPcGroupUseBranch.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.gridColumn19, DevExpress.Data.ColumnSortOrder.Ascending)});
     //
     // grpPackageService
     //
     this.grpPackageService.Controls.Add(this.btn_PSAll_Del);
     this.grpPackageService.Controls.Add(this.btn_PS_Del);
     this.grpPackageService.Controls.Add(this.btn_PSAdd_Add);
     this.grpPackageService.Controls.Add(this.btn_PS_Add);
     this.grpPackageService.Controls.Add(this.gridPackageService2);
     this.grpPackageService.Controls.Add(this.label1);
     this.grpPackageService.Controls.Add(this.gridPackageService);
     this.grpPackageService.Controls.Add(this.btn_PB_Del);
     this.grpPackageService.Controls.Add(this.btn_PBAll_Del);
     this.grpPackageService.Controls.Add(this.btn_PBAll_Add);
     this.grpPackageService.Controls.Add(this.btn_PB_Add);
     this.grpPackageService.Controls.Add(this.btn_PUB_Del);
     this.grpPackageService.Controls.Add(this.btn_PUBAll_Del);
     this.grpPackageService.Controls.Add(this.btn_PUBAll_Add);
     this.grpPackageService.Controls.Add(this.btn_PUB_Add);
     this.grpPackageService.Controls.Add(this.gridPackageBranch2);
     this.grpPackageService.Controls.Add(this.gridPackageUseBranch2);
     this.grpPackageService.Controls.Add(this.label3);
     this.grpPackageService.Controls.Add(this.label7);
     this.grpPackageService.Controls.Add(this.gridPackageBranch);
     this.grpPackageService.Controls.Add(this.gridPackageUseBranch);
     this.grpPackageService.Location = new System.Drawing.Point(8, 288);
     this.grpPackageService.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.grpPackageService.LookAndFeel.UseDefaultLookAndFeel = false;
     this.grpPackageService.Name = "grpPackageService";
     this.grpPackageService.Size = new System.Drawing.Size(960, 424);
     this.grpPackageService.TabIndex = 99;
     this.grpPackageService.Text = "EMPLOYEE PACKAGE SETUP .....";
     //
     // btn_PSAll_Del
     //
     this.btn_PSAll_Del.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btn_PSAll_Del.Location = new System.Drawing.Point(496, 232);
     this.btn_PSAll_Del.Name = "btn_PSAll_Del";
     this.btn_PSAll_Del.Size = new System.Drawing.Size(30, 20);
     this.btn_PSAll_Del.TabIndex = 28;
     this.btn_PSAll_Del.Text = "<";
     this.btn_PSAll_Del.Click += new System.EventHandler(this.btn_PSAll_Del_Click);
     //
     // btn_PS_Del
     //
     this.btn_PS_Del.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btn_PS_Del.Location = new System.Drawing.Point(496, 208);
     this.btn_PS_Del.Name = "btn_PS_Del";
     this.btn_PS_Del.Size = new System.Drawing.Size(30, 20);
     this.btn_PS_Del.TabIndex = 27;
     this.btn_PS_Del.Text = "<<";
     this.btn_PS_Del.Click += new System.EventHandler(this.btn_PS_Del_Click);
     //
     // btn_PSAdd_Add
     //
     this.btn_PSAdd_Add.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btn_PSAdd_Add.Location = new System.Drawing.Point(496, 184);
     this.btn_PSAdd_Add.Name = "btn_PSAdd_Add";
     this.btn_PSAdd_Add.Size = new System.Drawing.Size(30, 20);
     this.btn_PSAdd_Add.TabIndex = 26;
     this.btn_PSAdd_Add.Text = ">>";
     this.btn_PSAdd_Add.Click += new System.EventHandler(this.btn_PSAdd_Add_Click);
     //
     // btn_PS_Add
     //
     this.btn_PS_Add.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btn_PS_Add.Location = new System.Drawing.Point(496, 160);
     this.btn_PS_Add.Name = "btn_PS_Add";
     this.btn_PS_Add.Size = new System.Drawing.Size(30, 20);
     this.btn_PS_Add.TabIndex = 25;
     this.btn_PS_Add.Text = ">";
     this.btn_PS_Add.Click += new System.EventHandler(this.btn_PS_Add_Click);
     //
     // gridPackageService2
     //
     this.gridPackageService2.Location = new System.Drawing.Point(536, 160);
     this.gridPackageService2.MainView = this.gvPackageService2;
     this.gridPackageService2.Name = "gridPackageService2";
     this.gridPackageService2.Size = new System.Drawing.Size(424, 128);
     this.gridPackageService2.TabIndex = 29;
     this.gridPackageService2.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gvPackageService2});
     //
     // gvPackageService2
     //
     this.gvPackageService2.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn9,
     this.gridColumn10,
     this.gridColumn23});
     this.gvPackageService2.GridControl = this.gridPackageService2;
     this.gvPackageService2.Name = "gvPackageService2";
     this.gvPackageService2.OptionsBehavior.AllowIncrementalSearch = true;
     this.gvPackageService2.OptionsBehavior.Editable = false;
     this.gvPackageService2.OptionsCustomization.AllowFilter = false;
     this.gvPackageService2.OptionsSelection.MultiSelect = true;
     this.gvPackageService2.OptionsView.ShowGroupPanel = false;
     this.gvPackageService2.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.gridColumn9, DevExpress.Data.ColumnSortOrder.Ascending)});
     //
     // gridColumn9
     //
     this.gridColumn9.Caption = "Service Code";
     this.gridColumn9.FieldName = "strServiceCode";
     this.gridColumn9.Name = "gridColumn9";
     this.gridColumn9.Visible = true;
     this.gridColumn9.VisibleIndex = 0;
     this.gridColumn9.Width = 104;
     //
     // gridColumn10
     //
     this.gridColumn10.Caption = "Description";
     this.gridColumn10.FieldName = "strDescription";
     this.gridColumn10.Name = "gridColumn10";
     this.gridColumn10.Visible = true;
     this.gridColumn10.VisibleIndex = 1;
     this.gridColumn10.Width = 282;
     //
     // gridColumn23
     //
     this.gridColumn23.FieldName = "strPackageCode";
     this.gridColumn23.Name = "gridColumn23";
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(8, 168);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(56, 34);
     this.label1.TabIndex = 30;
     this.label1.Text = "Package Service";
     //
     // gridPackageService
     //
     this.gridPackageService.Location = new System.Drawing.Point(64, 160);
     this.gridPackageService.MainView = this.gvPackageService;
     this.gridPackageService.Name = "gridPackageService";
     this.gridPackageService.Size = new System.Drawing.Size(424, 128);
     this.gridPackageService.TabIndex = 24;
     this.gridPackageService.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gvPackageService});
     //
     // gvPackageService
     //
     this.gvPackageService.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn11,
     this.gridColumn12});
     this.gvPackageService.GridControl = this.gridPackageService;
     this.gvPackageService.Name = "gvPackageService";
     this.gvPackageService.OptionsBehavior.AllowIncrementalSearch = true;
     this.gvPackageService.OptionsBehavior.Editable = false;
     this.gvPackageService.OptionsCustomization.AllowFilter = false;
     this.gvPackageService.OptionsSelection.MultiSelect = true;
     this.gvPackageService.OptionsView.ShowGroupPanel = false;
     this.gvPackageService.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.gridColumn11, DevExpress.Data.ColumnSortOrder.Ascending)});
     //
     // gridColumn11
     //
     this.gridColumn11.Caption = "Service Code";
     this.gridColumn11.FieldName = "strServiceCode";
     this.gridColumn11.Name = "gridColumn11";
     this.gridColumn11.Visible = true;
     this.gridColumn11.VisibleIndex = 0;
     this.gridColumn11.Width = 107;
     //
     // gridColumn12
     //
     this.gridColumn12.Caption = "Description";
     this.gridColumn12.FieldName = "strDescription";
     this.gridColumn12.Name = "gridColumn12";
     this.gridColumn12.Visible = true;
     this.gridColumn12.VisibleIndex = 1;
     this.gridColumn12.Width = 279;
     //
     // btn_PB_Del
     //
     this.btn_PB_Del.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btn_PB_Del.Location = new System.Drawing.Point(496, 96);
     this.btn_PB_Del.Name = "btn_PB_Del";
     this.btn_PB_Del.Size = new System.Drawing.Size(30, 20);
     this.btn_PB_Del.TabIndex = 21;
     this.btn_PB_Del.Text = "<";
     this.btn_PB_Del.Click += new System.EventHandler(this.btn_PB_Del_Click);
     //
     // btn_PBAll_Del
     //
     this.btn_PBAll_Del.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btn_PBAll_Del.Location = new System.Drawing.Point(496, 72);
     this.btn_PBAll_Del.Name = "btn_PBAll_Del";
     this.btn_PBAll_Del.Size = new System.Drawing.Size(30, 20);
     this.btn_PBAll_Del.TabIndex = 20;
     this.btn_PBAll_Del.Text = "<<";
     this.btn_PBAll_Del.Click += new System.EventHandler(this.btn_PBAll_Del_Click);
     //
     // btn_PBAll_Add
     //
     this.btn_PBAll_Add.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btn_PBAll_Add.Location = new System.Drawing.Point(496, 48);
     this.btn_PBAll_Add.Name = "btn_PBAll_Add";
     this.btn_PBAll_Add.Size = new System.Drawing.Size(30, 20);
     this.btn_PBAll_Add.TabIndex = 19;
     this.btn_PBAll_Add.Text = ">>";
     this.btn_PBAll_Add.Click += new System.EventHandler(this.btn_PBAll_Add_Click);
     //
     // btn_PB_Add
     //
     this.btn_PB_Add.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btn_PB_Add.Location = new System.Drawing.Point(496, 24);
     this.btn_PB_Add.Name = "btn_PB_Add";
     this.btn_PB_Add.Size = new System.Drawing.Size(30, 20);
     this.btn_PB_Add.TabIndex = 18;
     this.btn_PB_Add.Text = ">";
     this.btn_PB_Add.Click += new System.EventHandler(this.btn_PB_Add_Click);
     //
     // btn_PUB_Del
     //
     this.btn_PUB_Del.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btn_PUB_Del.Location = new System.Drawing.Point(496, 362);
     this.btn_PUB_Del.Name = "btn_PUB_Del";
     this.btn_PUB_Del.Size = new System.Drawing.Size(30, 20);
     this.btn_PUB_Del.TabIndex = 21;
     this.btn_PUB_Del.Text = "<";
     this.btn_PUB_Del.Click += new System.EventHandler(this.btn_PUB_Del_Click);
     //
     // btn_PUBAll_Del
     //
     this.btn_PUBAll_Del.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btn_PUBAll_Del.Location = new System.Drawing.Point(496, 338);
     this.btn_PUBAll_Del.Name = "btn_PUBAll_Del";
     this.btn_PUBAll_Del.Size = new System.Drawing.Size(30, 20);
     this.btn_PUBAll_Del.TabIndex = 20;
     this.btn_PUBAll_Del.Text = "<<";
     this.btn_PUBAll_Del.Click += new System.EventHandler(this.btn_PUBAll_Del_Click);
     //
     // btn_PUBAll_Add
     //
     this.btn_PUBAll_Add.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btn_PUBAll_Add.Location = new System.Drawing.Point(496, 314);
     this.btn_PUBAll_Add.Name = "btn_PUBAll_Add";
     this.btn_PUBAll_Add.Size = new System.Drawing.Size(30, 20);
     this.btn_PUBAll_Add.TabIndex = 19;
     this.btn_PUBAll_Add.Text = ">>";
     this.btn_PUBAll_Add.Click += new System.EventHandler(this.btn_PUBAll_Add_Click);
     //
     // btn_PUB_Add
     //
     this.btn_PUB_Add.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btn_PUB_Add.Location = new System.Drawing.Point(496, 290);
     this.btn_PUB_Add.Name = "btn_PUB_Add";
     this.btn_PUB_Add.Size = new System.Drawing.Size(30, 20);
     this.btn_PUB_Add.TabIndex = 18;
     this.btn_PUB_Add.Text = ">";
     this.btn_PUB_Add.Click += new System.EventHandler(this.btn_PUB_Add_Click);
     //
     // gridPackageBranch2
     //
     this.gridPackageBranch2.Location = new System.Drawing.Point(536, 24);
     this.gridPackageBranch2.MainView = this.gvPSBranch2;
     this.gridPackageBranch2.Name = "gridPackageBranch2";
     this.gridPackageBranch2.Size = new System.Drawing.Size(424, 128);
     this.gridPackageBranch2.TabIndex = 22;
     this.gridPackageBranch2.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gvPSBranch2});
     //
     // gridPackageUseBranch2
     //
     this.gridPackageUseBranch2.Location = new System.Drawing.Point(536, 290);
     this.gridPackageUseBranch2.MainView = this.gvPSUseBranch2;
     this.gridPackageUseBranch2.Name = "gridPackageUseBranch2";
     this.gridPackageUseBranch2.Size = new System.Drawing.Size(424, 128);
     this.gridPackageUseBranch2.TabIndex = 22;
     this.gridPackageUseBranch2.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gvPSUseBranch2});
     //
     // gvPSBranch2
     //
     this.gvPSBranch2.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colBranchCode2,
     this.colBranchName2});
     this.gvPSBranch2.GridControl = this.gridPackageBranch2;
     this.gvPSBranch2.Name = "gvPSBranch2";
     this.gvPSBranch2.OptionsBehavior.AllowIncrementalSearch = true;
     this.gvPSBranch2.OptionsBehavior.Editable = false;
     this.gvPSBranch2.OptionsCustomization.AllowFilter = false;
     this.gvPSBranch2.OptionsSelection.MultiSelect = true;
     this.gvPSBranch2.OptionsView.ShowGroupPanel = false;
     this.gvPSBranch2.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.colBranchCode2, DevExpress.Data.ColumnSortOrder.Ascending)});
     //
     // colBranchCode2
     //
     this.colBranchCode2.Caption = "Branch";
     this.colBranchCode2.FieldName = "strBranchCode";
     this.colBranchCode2.Name = "colBranchCode2";
     this.colBranchCode2.Visible = true;
     this.colBranchCode2.VisibleIndex = 0;
     this.colBranchCode2.Width = 104;
     //
     // colBranchName2
     //
     this.colBranchName2.Caption = "Branch Name";
     this.colBranchName2.FieldName = "strBranchName";
     this.colBranchName2.Name = "colBranchName2";
     this.colBranchName2.Visible = true;
     this.colBranchName2.VisibleIndex = 1;
     this.colBranchName2.Width = 282;
     //
     // label3
     //
     this.label3.Location = new System.Drawing.Point(8, 24);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(56, 54);
     this.label3.TabIndex = 23;
     this.label3.Text = "Package Sell Branch";
     //
     // gvPSUseBranch2
     //
     this.gvPSUseBranch2.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colUseBranchCode2,
     this.colUseBranchName2});
     this.gvPSUseBranch2.GridControl = this.gridPackageUseBranch2;
     this.gvPSUseBranch2.Name = "gvPSUseBranch2";
     this.gvPSUseBranch2.OptionsBehavior.AllowIncrementalSearch = true;
     this.gvPSUseBranch2.OptionsBehavior.Editable = false;
     this.gvPSUseBranch2.OptionsCustomization.AllowFilter = false;
     this.gvPSUseBranch2.OptionsSelection.MultiSelect = true;
     this.gvPSUseBranch2.OptionsView.ShowGroupPanel = false;
     this.gvPSUseBranch2.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.colUseBranchCode2, DevExpress.Data.ColumnSortOrder.Ascending)});
     //
     // colUseBranchCode2
     //
     this.colUseBranchCode2.Caption = "Branch";
     this.colUseBranchCode2.FieldName = "strBranchCode";
     this.colUseBranchCode2.Name = "colUseBranchCode2";
     this.colUseBranchCode2.Visible = true;
     this.colUseBranchCode2.VisibleIndex = 0;
     this.colUseBranchCode2.Width = 104;
     //
     // colUseBranchName2
     //
     this.colUseBranchName2.Caption = "Branch Name";
     this.colUseBranchName2.FieldName = "strBranchName";
     this.colUseBranchName2.Name = "colUseBranchName2";
     this.colUseBranchName2.Visible = true;
     this.colUseBranchName2.VisibleIndex = 1;
     this.colUseBranchName2.Width = 282;
     //
     // label7
     //
     this.label7.Location = new System.Drawing.Point(8, 290);
     this.label7.Name = "label7";
     this.label7.Size = new System.Drawing.Size(56, 54);
     this.label7.TabIndex = 23;
     this.label7.Text = "Package Use Branch";
     //
     // gridPackageBranch
     //
     this.gridPackageBranch.Location = new System.Drawing.Point(64, 24);
     this.gridPackageBranch.MainView = this.gvPSBranch;
     this.gridPackageBranch.Name = "gridPackageBranch";
     this.gridPackageBranch.Size = new System.Drawing.Size(424, 128);
     this.gridPackageBranch.TabIndex = 17;
     this.gridPackageBranch.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gvPSBranch});
     //
     // gvPSBranch
     //
     this.gvPSBranch.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colBranchCode,
     this.colBranchName});
     this.gvPSBranch.GridControl = this.gridPackageBranch;
     this.gvPSBranch.Name = "gvPSBranch";
     this.gvPSBranch.OptionsBehavior.AllowIncrementalSearch = true;
     this.gvPSBranch.OptionsBehavior.Editable = false;
     this.gvPSBranch.OptionsCustomization.AllowFilter = false;
     this.gvPSBranch.OptionsSelection.MultiSelect = true;
     this.gvPSBranch.OptionsView.ShowGroupPanel = false;
     this.gvPSBranch.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.colBranchCode, DevExpress.Data.ColumnSortOrder.Ascending)});
     //
     // colBranchCode
     //
     this.colBranchCode.Caption = "Branch";
     this.colBranchCode.FieldName = "strBranchCode";
     this.colBranchCode.Name = "colBranchCode";
     this.colBranchCode.Visible = true;
     this.colBranchCode.VisibleIndex = 0;
     this.colBranchCode.Width = 107;
     //
     // colBranchName
     //
     this.colBranchName.Caption = "Branch Name";
     this.colBranchName.FieldName = "strBranchName";
     this.colBranchName.Name = "colBranchName";
     this.colBranchName.Visible = true;
     this.colBranchName.VisibleIndex = 1;
     this.colBranchName.Width = 279;
     //
     // gridPackageUseBranch
     //
     this.gridPackageUseBranch.Location = new System.Drawing.Point(64, 290);
     this.gridPackageUseBranch.MainView = this.gvPSUseBranch;
     this.gridPackageUseBranch.Name = "gridPackageUseBranch";
     this.gridPackageUseBranch.Size = new System.Drawing.Size(424, 128);
     this.gridPackageUseBranch.TabIndex = 17;
     this.gridPackageUseBranch.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gvPSUseBranch});
     //
     // gvPSUseBranch
     //
     this.gvPSUseBranch.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colUseBranchCode,
     this.colUseBranchName});
     this.gvPSUseBranch.GridControl = this.gridPackageUseBranch;
     this.gvPSUseBranch.Name = "gvPSUseBranch";
     this.gvPSUseBranch.OptionsBehavior.AllowIncrementalSearch = true;
     this.gvPSUseBranch.OptionsBehavior.Editable = false;
     this.gvPSUseBranch.OptionsCustomization.AllowFilter = false;
     this.gvPSUseBranch.OptionsSelection.MultiSelect = true;
     this.gvPSUseBranch.OptionsView.ShowGroupPanel = false;
     this.gvPSUseBranch.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.colUseBranchCode, DevExpress.Data.ColumnSortOrder.Ascending)});
     //
     // colUseBranchCode
     //
     this.colUseBranchCode.Caption = "Branch";
     this.colUseBranchCode.FieldName = "strBranchCode";
     this.colUseBranchCode.Name = "colUseBranchCode";
     this.colUseBranchCode.Visible = true;
     this.colUseBranchCode.VisibleIndex = 0;
     this.colUseBranchCode.Width = 107;
     //
     // colUseBranchName
     //
     this.colUseBranchName.Caption = "Branch Name";
     this.colUseBranchName.FieldName = "strBranchName";
     this.colUseBranchName.Name = "colUseBranchName";
     this.colUseBranchName.Visible = true;
     this.colUseBranchName.VisibleIndex = 1;
     this.colUseBranchName.Width = 279;
     //
     // PackageGroup
     //
     this.PackageGroup.Controls.Add(this.btn_PacGroup_Add);
     this.PackageGroup.Controls.Add(this.btn_PacGroup_Del);
     this.PackageGroup.Controls.Add(this.groupControl2);
     this.PackageGroup.Controls.Add(this.splitter2);
     this.PackageGroup.ImeMode = System.Windows.Forms.ImeMode.On;
     this.PackageGroup.Location = new System.Drawing.Point(8, 288);
     this.PackageGroup.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.PackageGroup.LookAndFeel.UseDefaultLookAndFeel = false;
     this.PackageGroup.Name = "PackageGroup";
     this.PackageGroup.Size = new System.Drawing.Size(952, 434);
     this.PackageGroup.TabIndex = 100;
     this.PackageGroup.Text = "PACKAGE GROUP ENTRIES SETUP .....";
     //
     // btn_PacGroup_Add
     //
     this.btn_PacGroup_Add.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btn_PacGroup_Add.Appearance.Options.UseFont = true;
     this.btn_PacGroup_Add.Appearance.Options.UseTextOptions = true;
     this.btn_PacGroup_Add.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.btn_PacGroup_Add.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.btn_PacGroup_Add.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.btn_PacGroup_Add.ImageIndex = 0;
     this.btn_PacGroup_Add.ImageList = this.imageList1;
     this.btn_PacGroup_Add.ImeMode = System.Windows.Forms.ImeMode.On;
     this.btn_PacGroup_Add.Location = new System.Drawing.Point(8, 24);
     this.btn_PacGroup_Add.Name = "btn_PacGroup_Add";
     this.btn_PacGroup_Add.Size = new System.Drawing.Size(32, 16);
     this.btn_PacGroup_Add.TabIndex = 134;
     this.btn_PacGroup_Add.Click += new System.EventHandler(this.btn_PacGroup_Add_Click);
     //
     // btn_PacGroup_Del
     //
     this.btn_PacGroup_Del.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btn_PacGroup_Del.Appearance.Options.UseFont = true;
     this.btn_PacGroup_Del.Appearance.Options.UseTextOptions = true;
     this.btn_PacGroup_Del.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.btn_PacGroup_Del.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.btn_PacGroup_Del.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.btn_PacGroup_Del.ImageIndex = 1;
     this.btn_PacGroup_Del.ImageList = this.imageList1;
     this.btn_PacGroup_Del.Location = new System.Drawing.Point(40, 24);
     this.btn_PacGroup_Del.Name = "btn_PacGroup_Del";
     this.btn_PacGroup_Del.Size = new System.Drawing.Size(32, 16);
     this.btn_PacGroup_Del.TabIndex = 133;
     this.btn_PacGroup_Del.Click += new System.EventHandler(this.btn_PacGroup_Del_Click);
     //
     // groupControl2
     //
     this.groupControl2.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.groupControl2.Controls.Add(this.gridControlMd_GroupEntries);
     this.groupControl2.Location = new System.Drawing.Point(0, 40);
     this.groupControl2.Name = "groupControl2";
     this.groupControl2.Size = new System.Drawing.Size(968, 248);
     this.groupControl2.TabIndex = 12;
     this.groupControl2.Text = "groupControl2";
     //
     // gridControlMd_GroupEntries
     //
     this.gridControlMd_GroupEntries.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridControlMd_GroupEntries.Location = new System.Drawing.Point(0, 0);
     this.gridControlMd_GroupEntries.LookAndFeel.UseDefaultLookAndFeel = false;
     this.gridControlMd_GroupEntries.MainView = this.gridViewMd_GroupEntries;
     this.gridControlMd_GroupEntries.Name = "gridControlMd_GroupEntries";
     this.gridControlMd_GroupEntries.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.lk_GrpPackageCode});
     this.gridControlMd_GroupEntries.Size = new System.Drawing.Size(968, 248);
     this.gridControlMd_GroupEntries.TabIndex = 12;
     this.gridControlMd_GroupEntries.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewMd_GroupEntries});
     //
     // gridViewMd_GroupEntries
     //
     this.gridViewMd_GroupEntries.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn44,
     this.gridColumn45,
     this.gridColumn46});
     this.gridViewMd_GroupEntries.GridControl = this.gridControlMd_GroupEntries;
     this.gridViewMd_GroupEntries.Name = "gridViewMd_GroupEntries";
     this.gridViewMd_GroupEntries.OptionsCustomization.AllowFilter = false;
     this.gridViewMd_GroupEntries.OptionsCustomization.AllowSort = false;
     this.gridViewMd_GroupEntries.OptionsView.ShowGroupPanel = false;
     this.gridViewMd_GroupEntries.LostFocus += new System.EventHandler(this.gridViewMd_GroupEntries_LostFocus);
     //
     // gridColumn44
     //
     this.gridColumn44.Caption = "Package Group Code";
     this.gridColumn44.FieldName = "strPackageGroupCode";
     this.gridColumn44.Name = "gridColumn44";
     //
     // gridColumn45
     //
     this.gridColumn45.Caption = "Package Code";
     this.gridColumn45.ColumnEdit = this.lk_GrpPackageCode;
     this.gridColumn45.FieldName = "strPackageCode";
     this.gridColumn45.Name = "gridColumn45";
     this.gridColumn45.Visible = true;
     this.gridColumn45.VisibleIndex = 0;
     //
     // lk_GrpPackageCode
     //
     this.lk_GrpPackageCode.AutoHeight = false;
     this.lk_GrpPackageCode.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lk_GrpPackageCode.Name = "lk_GrpPackageCode";
     //
     // gridColumn46
     //
     this.gridColumn46.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn46.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Near;
     this.gridColumn46.Caption = "Quantity";
     this.gridColumn46.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn46.FieldName = "nQuantity";
     this.gridColumn46.Name = "gridColumn46";
     this.gridColumn46.Visible = true;
     this.gridColumn46.VisibleIndex = 1;
     //
     // splitter2
     //
     this.splitter2.BackColor = System.Drawing.SystemColors.Control;
     this.splitter2.Dock = System.Windows.Forms.DockStyle.Right;
     this.splitter2.ForeColor = System.Drawing.SystemColors.ControlText;
     this.splitter2.Location = new System.Drawing.Point(948, 19);
     this.splitter2.Name = "splitter2";
     this.splitter2.Size = new System.Drawing.Size(2, 413);
     this.splitter2.TabIndex = 7;
     this.splitter2.TabStop = false;
     //
     // GroupCreditPackage
     //
     this.GroupCreditPackage.Controls.Add(this.btn_CreGroup_Add);
     this.GroupCreditPackage.Controls.Add(this.btn_CreGroup_Del);
     this.GroupCreditPackage.Controls.Add(this.groupControl3);
     this.GroupCreditPackage.Location = new System.Drawing.Point(8, 288);
     this.GroupCreditPackage.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.GroupCreditPackage.LookAndFeel.UseDefaultLookAndFeel = false;
     this.GroupCreditPackage.Name = "GroupCreditPackage";
     this.GroupCreditPackage.Size = new System.Drawing.Size(968, 300);
     this.GroupCreditPackage.TabIndex = 101;
     this.GroupCreditPackage.Text = "EMPLOYEE CREDIT PACKAGE SETUP .....";
     //
     // btn_CreGroup_Add
     //
     this.btn_CreGroup_Add.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btn_CreGroup_Add.Appearance.Options.UseFont = true;
     this.btn_CreGroup_Add.Appearance.Options.UseTextOptions = true;
     this.btn_CreGroup_Add.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.btn_CreGroup_Add.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.btn_CreGroup_Add.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.btn_CreGroup_Add.ImageIndex = 0;
     this.btn_CreGroup_Add.ImageList = this.imageList1;
     this.btn_CreGroup_Add.ImeMode = System.Windows.Forms.ImeMode.On;
     this.btn_CreGroup_Add.Location = new System.Drawing.Point(0, 24);
     this.btn_CreGroup_Add.Name = "btn_CreGroup_Add";
     this.btn_CreGroup_Add.Size = new System.Drawing.Size(32, 16);
     this.btn_CreGroup_Add.TabIndex = 136;
     this.btn_CreGroup_Add.Click += new System.EventHandler(this.btn_CreGroup_Add_Click);
     //
     // btn_CreGroup_Del
     //
     this.btn_CreGroup_Del.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btn_CreGroup_Del.Appearance.Options.UseFont = true;
     this.btn_CreGroup_Del.Appearance.Options.UseTextOptions = true;
     this.btn_CreGroup_Del.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.btn_CreGroup_Del.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.btn_CreGroup_Del.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.btn_CreGroup_Del.ImageIndex = 1;
     this.btn_CreGroup_Del.ImageList = this.imageList1;
     this.btn_CreGroup_Del.Location = new System.Drawing.Point(32, 24);
     this.btn_CreGroup_Del.Name = "btn_CreGroup_Del";
     this.btn_CreGroup_Del.Size = new System.Drawing.Size(32, 16);
     this.btn_CreGroup_Del.TabIndex = 135;
     this.btn_CreGroup_Del.Click += new System.EventHandler(this.btn_CreGroup_Del_Click);
     //
     // groupControl3
     //
     this.groupControl3.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.groupControl3.Controls.Add(this.GridCreditRestric);
     this.groupControl3.Location = new System.Drawing.Point(0, 40);
     this.groupControl3.Name = "groupControl3";
     this.groupControl3.Size = new System.Drawing.Size(944, 256);
     this.groupControl3.TabIndex = 12;
     this.groupControl3.Text = "groupControl3";
     //
     // GridCreditRestric
     //
     this.GridCreditRestric.Dock = System.Windows.Forms.DockStyle.Fill;
     gridLevelNode2.RelationName = "Level1";
     this.GridCreditRestric.LevelTree.Nodes.AddRange(new DevExpress.XtraGrid.GridLevelNode[] {
     gridLevelNode2});
     this.GridCreditRestric.Location = new System.Drawing.Point(0, 0);
     this.GridCreditRestric.LookAndFeel.UseDefaultLookAndFeel = false;
     this.GridCreditRestric.MainView = this.gridViewmd_CreditRestric;
     this.GridCreditRestric.Name = "GridCreditRestric";
     this.GridCreditRestric.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.lk_PackageCode,
     this.chk_AllowDiscount});
     this.GridCreditRestric.Size = new System.Drawing.Size(944, 256);
     this.GridCreditRestric.TabIndex = 12;
     this.GridCreditRestric.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewmd_CreditRestric});
     //
     // gridViewmd_CreditRestric
     //
     this.gridViewmd_CreditRestric.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn25,
     this.gridColumn26,
     this.gridColumn27});
     this.gridViewmd_CreditRestric.GridControl = this.GridCreditRestric;
     this.gridViewmd_CreditRestric.Name = "gridViewmd_CreditRestric";
     this.gridViewmd_CreditRestric.OptionsCustomization.AllowFilter = false;
     this.gridViewmd_CreditRestric.OptionsCustomization.AllowSort = false;
     this.gridViewmd_CreditRestric.OptionsView.ShowGroupPanel = false;
     this.gridViewmd_CreditRestric.LostFocus += new System.EventHandler(this.gridViewmd_CreditRestric_LostFocus);
     //
     // gridColumn25
     //
     this.gridColumn25.FieldName = "strCreditPackageCode";
     this.gridColumn25.Name = "gridColumn25";
     //
     // gridColumn26
     //
     this.gridColumn26.Caption = "Package Code";
     this.gridColumn26.ColumnEdit = this.lk_PackageCode;
     this.gridColumn26.FieldName = "strPackageCode";
     this.gridColumn26.Name = "gridColumn26";
     this.gridColumn26.Visible = true;
     this.gridColumn26.VisibleIndex = 0;
     //
     // lk_PackageCode
     //
     this.lk_PackageCode.AutoHeight = false;
     this.lk_PackageCode.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lk_PackageCode.Name = "lk_PackageCode";
     //
     // gridColumn27
     //
     this.gridColumn27.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn27.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Near;
     this.gridColumn27.Caption = "Allow Discount";
     this.gridColumn27.ColumnEdit = this.chk_AllowDiscount;
     this.gridColumn27.FieldName = "fAllowDiscount";
     this.gridColumn27.ImageAlignment = System.Drawing.StringAlignment.Center;
     this.gridColumn27.Name = "gridColumn27";
     this.gridColumn27.Visible = true;
     this.gridColumn27.VisibleIndex = 1;
     //
     // chk_AllowDiscount
     //
     this.chk_AllowDiscount.AutoHeight = false;
     this.chk_AllowDiscount.Name = "chk_AllowDiscount";
     //
     // grpBranch
     //
     this.grpBranch.Controls.Add(this.btnPacBranch_Del);
     this.grpBranch.Controls.Add(this.btnPacBranch_DelAll);
     this.grpBranch.Controls.Add(this.btnPacBranch_AddAll);
     this.grpBranch.Controls.Add(this.btnPacBranch_Add);
     this.grpBranch.Controls.Add(this.gridPacBranch2);
     this.grpBranch.Controls.Add(this.label6);
     this.grpBranch.Controls.Add(this.gridPacBranch);
     this.grpBranch.Location = new System.Drawing.Point(3, 290);
     this.grpBranch.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.grpBranch.LookAndFeel.UseDefaultLookAndFeel = false;
     this.grpBranch.Name = "grpBranch";
     this.grpBranch.Size = new System.Drawing.Size(960, 296);
     this.grpBranch.TabIndex = 102;
     this.grpBranch.Text = "PACKAGE SETUP .....";
     //
     // btnPacBranch_Del
     //
     this.btnPacBranch_Del.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnPacBranch_Del.Location = new System.Drawing.Point(496, 96);
     this.btnPacBranch_Del.Name = "btnPacBranch_Del";
     this.btnPacBranch_Del.Size = new System.Drawing.Size(30, 20);
     this.btnPacBranch_Del.TabIndex = 21;
     this.btnPacBranch_Del.Text = "<";
     this.btnPacBranch_Del.Click += new System.EventHandler(this.btnPacBranch_Del_Click);
     //
     // btnPacBranch_DelAll
     //
     this.btnPacBranch_DelAll.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnPacBranch_DelAll.Location = new System.Drawing.Point(496, 72);
     this.btnPacBranch_DelAll.Name = "btnPacBranch_DelAll";
     this.btnPacBranch_DelAll.Size = new System.Drawing.Size(30, 20);
     this.btnPacBranch_DelAll.TabIndex = 20;
     this.btnPacBranch_DelAll.Text = "<<";
     this.btnPacBranch_DelAll.Click += new System.EventHandler(this.btnPacBranch_DelAll_Click);
     //
     // btnPacBranch_AddAll
     //
     this.btnPacBranch_AddAll.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnPacBranch_AddAll.Location = new System.Drawing.Point(496, 48);
     this.btnPacBranch_AddAll.Name = "btnPacBranch_AddAll";
     this.btnPacBranch_AddAll.Size = new System.Drawing.Size(30, 20);
     this.btnPacBranch_AddAll.TabIndex = 19;
     this.btnPacBranch_AddAll.Text = ">>";
     this.btnPacBranch_AddAll.Click += new System.EventHandler(this.btnPacBranch_AddAll_Click);
     //
     // btnPacBranch_Add
     //
     this.btnPacBranch_Add.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnPacBranch_Add.Location = new System.Drawing.Point(496, 24);
     this.btnPacBranch_Add.Name = "btnPacBranch_Add";
     this.btnPacBranch_Add.Size = new System.Drawing.Size(30, 20);
     this.btnPacBranch_Add.TabIndex = 18;
     this.btnPacBranch_Add.Text = ">";
     this.btnPacBranch_Add.Click += new System.EventHandler(this.btnPacBranch_Add_Click);
     //
     // gridPacBranch2
     //
     this.gridPacBranch2.Location = new System.Drawing.Point(536, 24);
     this.gridPacBranch2.MainView = this.gvPacBranch2;
     this.gridPacBranch2.Name = "gridPacBranch2";
     this.gridPacBranch2.Size = new System.Drawing.Size(424, 264);
     this.gridPacBranch2.TabIndex = 22;
     this.gridPacBranch2.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gvPacBranch2});
     //
     // gvPacBranch2
     //
     this.gvPacBranch2.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn33,
     this.gridColumn34});
     this.gvPacBranch2.GridControl = this.gridPacBranch2;
     this.gvPacBranch2.Name = "gvPacBranch2";
     this.gvPacBranch2.OptionsBehavior.AllowIncrementalSearch = true;
     this.gvPacBranch2.OptionsBehavior.Editable = false;
     this.gvPacBranch2.OptionsCustomization.AllowFilter = false;
     this.gvPacBranch2.OptionsSelection.MultiSelect = true;
     this.gvPacBranch2.OptionsView.ShowGroupPanel = false;
     this.gvPacBranch2.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.gridColumn33, DevExpress.Data.ColumnSortOrder.Ascending)});
     //
     // gridColumn33
     //
     this.gridColumn33.Caption = "Branch";
     this.gridColumn33.FieldName = "strBranchCode";
     this.gridColumn33.Name = "gridColumn33";
     this.gridColumn33.Visible = true;
     this.gridColumn33.VisibleIndex = 0;
     this.gridColumn33.Width = 104;
     //
     // gridColumn34
     //
     this.gridColumn34.Caption = "Branch Name";
     this.gridColumn34.FieldName = "strBranchName";
     this.gridColumn34.Name = "gridColumn34";
     this.gridColumn34.Visible = true;
     this.gridColumn34.VisibleIndex = 1;
     this.gridColumn34.Width = 282;
     //
     // label6
     //
     this.label6.Location = new System.Drawing.Point(8, 24);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(56, 34);
     this.label6.TabIndex = 23;
     this.label6.Text = "Package Branch";
     //
     // gridPacBranch
     //
     this.gridPacBranch.Location = new System.Drawing.Point(64, 24);
     this.gridPacBranch.MainView = this.gvPacBranch;
     this.gridPacBranch.Name = "gridPacBranch";
     this.gridPacBranch.Size = new System.Drawing.Size(424, 264);
     this.gridPacBranch.TabIndex = 17;
     this.gridPacBranch.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gvPacBranch});
     //
     // gvPacBranch
     //
     this.gvPacBranch.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn35,
     this.gridColumn36});
     this.gvPacBranch.GridControl = this.gridPacBranch;
     this.gvPacBranch.Name = "gvPacBranch";
     this.gvPacBranch.OptionsBehavior.AllowIncrementalSearch = true;
     this.gvPacBranch.OptionsBehavior.Editable = false;
     this.gvPacBranch.OptionsCustomization.AllowFilter = false;
     this.gvPacBranch.OptionsSelection.MultiSelect = true;
     this.gvPacBranch.OptionsView.ShowGroupPanel = false;
     this.gvPacBranch.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.gridColumn35, DevExpress.Data.ColumnSortOrder.Ascending)});
     //
     // gridColumn35
     //
     this.gridColumn35.Caption = "Branch";
     this.gridColumn35.FieldName = "strBranchCode";
     this.gridColumn35.Name = "gridColumn35";
     this.gridColumn35.Visible = true;
     this.gridColumn35.VisibleIndex = 0;
     this.gridColumn35.Width = 107;
     //
     // gridColumn36
     //
     this.gridColumn36.Caption = "Branch Name";
     this.gridColumn36.FieldName = "strBranchName";
     this.gridColumn36.Name = "gridColumn36";
     this.gridColumn36.Visible = true;
     this.gridColumn36.VisibleIndex = 1;
     this.gridColumn36.Width = 279;
     //
     // frmPackage
     //
     this.BackColor = System.Drawing.Color.White;
     this.AutoScroll = true;
     this.ClientSize = new System.Drawing.Size(982, 600);
     this.Controls.Add(this.grpPackageService);
     this.Controls.Add(this.grpMDPackageTop);
     this.Controls.Add(this.grpPackageClass);
     this.Controls.Add(this.GroupCreditPackage);
     this.Controls.Add(this.grpBranch);
     this.Controls.Add(this.PackageGroup);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
     this.Name = "frmPackage";
     this.Text = "frmPackage";
     this.Load += new System.EventHandler(this.frmPackage_Load);
     ((System.ComponentModel.ISupportInitialize)(this.grpMDPackageTop)).EndInit();
     this.grpMDPackageTop.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ddlPackageCategory.Properties)).EndInit();
     this.Searchpanel.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.txtSearch.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.grpPackage)).EndInit();
     this.grpPackage.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMd_Package)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMd_Package)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_DurationUnit)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.StartDate.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.StartDate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.EndDate.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.EndDate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_Peak)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_StudentPackage)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_Category)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_GIRO)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_Sell)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_Peak_1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_StuPackage)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_RestUpgrade)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.grpPackageGroup)).EndInit();
     this.grpPackageGroup.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl4)).EndInit();
     this.groupControl4.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMd_PackageGroup)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMd_PackageGroup)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_pkGroupCatID)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.grpCreditPackage)).EndInit();
     this.grpCreditPackage.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl5)).EndInit();
     this.groupControl5.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMd_CreditPackage)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMd_CreditPackage)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.EffCCStartDate.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.EffCCStartDate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.EffCCEndDate.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.EffCCEndDate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_CreditCategoryID)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.grpPackageClass)).EndInit();
     this.grpPackageClass.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridPackageClass2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvPackageClass2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridPackageClass)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvPackageClass)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridPcGroupBranch2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvPcGroupBranch2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridPcGroupBranch)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvPcGroupBranch)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridPcGroupUseBranch2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvPcGroupUseBranch2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridPcGroupUseBranch)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvPcGroupUseBranch)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.grpPackageService)).EndInit();
     this.grpPackageService.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridPackageService2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvPackageService2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridPackageService)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvPackageService)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridPackageBranch2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvPSBranch2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridPackageBranch)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvPSBranch)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridPackageUseBranch2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvPSUseBranch2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridPackageUseBranch)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvPSUseBranch)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.PackageGroup)).EndInit();
     this.PackageGroup.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).EndInit();
     this.groupControl2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMd_GroupEntries)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMd_GroupEntries)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_GrpPackageCode)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.GroupCreditPackage)).EndInit();
     this.GroupCreditPackage.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl3)).EndInit();
     this.groupControl3.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.GridCreditRestric)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewmd_CreditRestric)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_PackageCode)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_AllowDiscount)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.grpBranch)).EndInit();
     this.grpBranch.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridPacBranch2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvPacBranch2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridPacBranch)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvPacBranch)).EndInit();
     this.ResumeLayout(false);
 }
Beispiel #49
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.xtraTabControl1 = new DevExpress.XtraTab.XtraTabControl();
     this.xtraTabPage1 = new DevExpress.XtraTab.XtraTabPage();
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.cbBranch = new DevExpress.XtraEditors.ImageComboBoxEdit();
     this.lblBranch = new System.Windows.Forms.Label();
     this.gridControlRoster = new DevExpress.XtraGrid.GridControl();
     this.gridViewRoster = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn14 = 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.btnDelete = new DevExpress.XtraEditors.SimpleButton();
     this.btnUpdate = new DevExpress.XtraEditors.SimpleButton();
     this.label1 = new System.Windows.Forms.Label();
     this.lblStartTime = new System.Windows.Forms.Label();
     this.dtEndTime = new DevExpress.XtraEditors.TimeEdit();
     this.dtStartTime = new DevExpress.XtraEditors.TimeEdit();
     this.btnCancel = new DevExpress.XtraEditors.SimpleButton();
     this.btnSave = new DevExpress.XtraEditors.SimpleButton();
     this.xtraTabPage2 = new DevExpress.XtraTab.XtraTabPage();
     this.groupControl1 = new DevExpress.XtraEditors.GroupControl();
     this.label2 = new System.Windows.Forms.Label();
     this.ddlStatus = new DevExpress.XtraEditors.ImageComboBoxEdit();
     this.btnReject = new DevExpress.XtraEditors.SimpleButton();
     this.btnApprove = new DevExpress.XtraEditors.SimpleButton();
     this.gridLeaveDetails = new DevExpress.XtraGrid.GridControl();
     this.gridViewLeaveDetails = new DevExpress.XtraGrid.Views.Grid.GridView();
     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.gridColumn13 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn12 = new DevExpress.XtraGrid.Columns.GridColumn();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).BeginInit();
     this.xtraTabControl1.SuspendLayout();
     this.xtraTabPage1.SuspendLayout();
     this.groupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cbBranch.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlRoster)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewRoster)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtEndTime.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtStartTime.Properties)).BeginInit();
     this.xtraTabPage2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ddlStatus.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridLeaveDetails)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewLeaveDetails)).BeginInit();
     this.SuspendLayout();
     //
     // xtraTabControl1
     //
     this.xtraTabControl1.AppearancePage.Header.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.xtraTabControl1.AppearancePage.Header.Options.UseFont = true;
     this.xtraTabControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     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(632, 350);
     this.xtraTabControl1.TabIndex = 32;
     this.xtraTabControl1.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
                                                                                     this.xtraTabPage1,
                                                                                     this.xtraTabPage2});
     this.xtraTabControl1.Text = "xtraTabControl1";
     //
     // xtraTabPage1
     //
     this.xtraTabPage1.Controls.Add(this.groupBox1);
     this.xtraTabPage1.Name = "xtraTabPage1";
     this.xtraTabPage1.Size = new System.Drawing.Size(626, 321);
     this.xtraTabPage1.Text = "Roster Details";
     //
     // groupBox1
     //
     this.groupBox1.BackColor = System.Drawing.SystemColors.Control;
     this.groupBox1.Controls.Add(this.cbBranch);
     this.groupBox1.Controls.Add(this.lblBranch);
     this.groupBox1.Controls.Add(this.gridControlRoster);
     this.groupBox1.Controls.Add(this.btnDelete);
     this.groupBox1.Controls.Add(this.btnUpdate);
     this.groupBox1.Controls.Add(this.label1);
     this.groupBox1.Controls.Add(this.lblStartTime);
     this.groupBox1.Controls.Add(this.dtEndTime);
     this.groupBox1.Controls.Add(this.dtStartTime);
     this.groupBox1.Controls.Add(this.btnCancel);
     this.groupBox1.Controls.Add(this.btnSave);
     this.groupBox1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.groupBox1.Location = new System.Drawing.Point(0, 0);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Size = new System.Drawing.Size(626, 321);
     this.groupBox1.TabIndex = 31;
     this.groupBox1.TabStop = false;
     //
     // cbBranch
     //
     this.cbBranch.Location = new System.Drawing.Point(160, 240);
     this.cbBranch.Name = "cbBranch";
     //
     // cbBranch.Properties
     //
     this.cbBranch.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Style3D;
     this.cbBranch.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                      new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cbBranch.Size = new System.Drawing.Size(160, 22);
     this.cbBranch.TabIndex = 181;
     //
     // lblBranch
     //
     this.lblBranch.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.lblBranch.Location = new System.Drawing.Point(64, 240);
     this.lblBranch.Name = "lblBranch";
     this.lblBranch.Size = new System.Drawing.Size(56, 16);
     this.lblBranch.TabIndex = 180;
     this.lblBranch.Text = "Branch";
     //
     // gridControlRoster
     //
     this.gridControlRoster.Dock = System.Windows.Forms.DockStyle.Top;
     //
     // gridControlRoster.EmbeddedNavigator
     //
     this.gridControlRoster.EmbeddedNavigator.Name = "";
     this.gridControlRoster.Location = new System.Drawing.Point(3, 16);
     this.gridControlRoster.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.gridControlRoster.LookAndFeel.UseDefaultLookAndFeel = false;
     this.gridControlRoster.MainView = this.gridViewRoster;
     this.gridControlRoster.Name = "gridControlRoster";
     this.gridControlRoster.Size = new System.Drawing.Size(620, 176);
     this.gridControlRoster.TabIndex = 179;
     this.gridControlRoster.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
                                                                                                      this.gridViewRoster});
     //
     // gridViewRoster
     //
     this.gridViewRoster.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
                                                                                           this.gridColumn1,
                                                                                           this.gridColumn14,
                                                                                           this.gridColumn2,
                                                                                           this.gridColumn3,
                                                                                           this.gridColumn4});
     this.gridViewRoster.GridControl = this.gridControlRoster;
     this.gridViewRoster.Name = "gridViewRoster";
     this.gridViewRoster.OptionsBehavior.Editable = false;
     this.gridViewRoster.OptionsCustomization.AllowFilter = false;
     this.gridViewRoster.OptionsCustomization.AllowSort = false;
     this.gridViewRoster.OptionsView.ShowGroupPanel = false;
     //
     // gridColumn1
     //
     this.gridColumn1.Caption = "Roster ID";
     this.gridColumn1.FieldName = "nRosterID";
     this.gridColumn1.Name = "gridColumn1";
     //
     // gridColumn14
     //
     this.gridColumn14.Caption = "Branch";
     this.gridColumn14.FieldName = "strBranchCode";
     this.gridColumn14.Name = "gridColumn14";
     this.gridColumn14.Visible = true;
     this.gridColumn14.VisibleIndex = 0;
     //
     // gridColumn2
     //
     this.gridColumn2.Caption = "Date";
     this.gridColumn2.DisplayFormat.FormatString = "dd-MM-yyyy";
     this.gridColumn2.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Custom;
     this.gridColumn2.FieldName = "dtDate";
     this.gridColumn2.Name = "gridColumn2";
     this.gridColumn2.Width = 183;
     //
     // gridColumn3
     //
     this.gridColumn3.Caption = "Start Time";
     this.gridColumn3.DisplayFormat.FormatString = "hh:mm tt";
     this.gridColumn3.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Custom;
     this.gridColumn3.FieldName = "dtStartTime";
     this.gridColumn3.Name = "gridColumn3";
     this.gridColumn3.Visible = true;
     this.gridColumn3.VisibleIndex = 1;
     this.gridColumn3.Width = 276;
     //
     // gridColumn4
     //
     this.gridColumn4.Caption = "End Time";
     this.gridColumn4.DisplayFormat.FormatString = "hh:mm tt";
     this.gridColumn4.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Custom;
     this.gridColumn4.FieldName = "dtEndTime";
     this.gridColumn4.Name = "gridColumn4";
     this.gridColumn4.Visible = true;
     this.gridColumn4.VisibleIndex = 2;
     this.gridColumn4.Width = 320;
     //
     // btnDelete
     //
     this.btnDelete.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.btnDelete.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.btnDelete.Appearance.Options.UseBackColor = true;
     this.btnDelete.Appearance.Options.UseFont = true;
     this.btnDelete.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnDelete.Location = new System.Drawing.Point(448, 280);
     this.btnDelete.Name = "btnDelete";
     this.btnDelete.Size = new System.Drawing.Size(80, 24);
     this.btnDelete.TabIndex = 178;
     this.btnDelete.Text = "Delete";
     this.btnDelete.Click += new System.EventHandler(this.btnDelete_Click);
     //
     // btnUpdate
     //
     this.btnUpdate.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.btnUpdate.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.btnUpdate.Appearance.Options.UseBackColor = true;
     this.btnUpdate.Appearance.Options.UseFont = true;
     this.btnUpdate.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnUpdate.Location = new System.Drawing.Point(360, 280);
     this.btnUpdate.Name = "btnUpdate";
     this.btnUpdate.Size = new System.Drawing.Size(80, 24);
     this.btnUpdate.TabIndex = 177;
     this.btnUpdate.Text = "Update";
     this.btnUpdate.Click += new System.EventHandler(this.btnUpdate_Click);
     //
     // label1
     //
     this.label1.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label1.Location = new System.Drawing.Point(296, 208);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(80, 16);
     this.label1.TabIndex = 176;
     this.label1.Text = "End Time";
     //
     // lblStartTime
     //
     this.lblStartTime.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.lblStartTime.Location = new System.Drawing.Point(64, 208);
     this.lblStartTime.Name = "lblStartTime";
     this.lblStartTime.Size = new System.Drawing.Size(80, 16);
     this.lblStartTime.TabIndex = 175;
     this.lblStartTime.Text = "Start Time";
     //
     // dtEndTime
     //
     this.dtEndTime.EditValue = null;
     this.dtEndTime.Location = new System.Drawing.Point(376, 208);
     this.dtEndTime.Name = "dtEndTime";
     //
     // dtEndTime.Properties
     //
     this.dtEndTime.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Style3D;
     this.dtEndTime.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                       new DevExpress.XtraEditors.Controls.EditorButton()});
     this.dtEndTime.Properties.DisplayFormat.FormatString = "hh:mm tt";
     this.dtEndTime.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Custom;
     this.dtEndTime.Properties.EditFormat.FormatString = "hh:mm tt";
     this.dtEndTime.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.Custom;
     this.dtEndTime.Properties.Mask.EditMask = "hh:mm tt";
     this.dtEndTime.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.DateTimeAdvancingCaret;
     this.dtEndTime.Size = new System.Drawing.Size(96, 22);
     this.dtEndTime.TabIndex = 174;
     //
     // dtStartTime
     //
     this.dtStartTime.EditValue = null;
     this.dtStartTime.Location = new System.Drawing.Point(160, 208);
     this.dtStartTime.Name = "dtStartTime";
     //
     // dtStartTime.Properties
     //
     this.dtStartTime.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Style3D;
     this.dtStartTime.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                         new DevExpress.XtraEditors.Controls.EditorButton()});
     this.dtStartTime.Properties.DisplayFormat.FormatString = "hh:mm tt";
     this.dtStartTime.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Custom;
     this.dtStartTime.Properties.EditFormat.FormatString = "hh:mm tt";
     this.dtStartTime.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.Custom;
     this.dtStartTime.Properties.Mask.EditMask = "hh:mm tt";
     this.dtStartTime.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.DateTimeAdvancingCaret;
     this.dtStartTime.Size = new System.Drawing.Size(104, 22);
     this.dtStartTime.TabIndex = 173;
     //
     // btnCancel
     //
     this.btnCancel.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.btnCancel.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.btnCancel.Appearance.Options.UseBackColor = true;
     this.btnCancel.Appearance.Options.UseFont = true;
     this.btnCancel.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnCancel.Location = new System.Drawing.Point(536, 280);
     this.btnCancel.Name = "btnCancel";
     this.btnCancel.TabIndex = 172;
     this.btnCancel.Text = "Cancel";
     this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
     //
     // btnSave
     //
     this.btnSave.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.btnSave.Appearance.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.btnSave.Appearance.Options.UseBackColor = true;
     this.btnSave.Appearance.Options.UseFont = true;
     this.btnSave.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnSave.Location = new System.Drawing.Point(192, 280);
     this.btnSave.Name = "btnSave";
     this.btnSave.Size = new System.Drawing.Size(80, 24);
     this.btnSave.TabIndex = 171;
     this.btnSave.Text = "Save New";
     this.btnSave.Visible = false;
     this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
     //
     // xtraTabPage2
     //
     this.xtraTabPage2.Controls.Add(this.groupControl1);
     this.xtraTabPage2.Name = "xtraTabPage2";
     this.xtraTabPage2.Size = new System.Drawing.Size(626, 321);
     this.xtraTabPage2.Text = "Leave Details";
     //
     // groupControl1
     //
     this.groupControl1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.groupControl1.Controls.Add(this.label2);
     this.groupControl1.Controls.Add(this.ddlStatus);
     this.groupControl1.Controls.Add(this.btnReject);
     this.groupControl1.Controls.Add(this.btnApprove);
     this.groupControl1.Controls.Add(this.gridLeaveDetails);
     this.groupControl1.Location = new System.Drawing.Point(8, 8);
     this.groupControl1.Name = "groupControl1";
     this.groupControl1.Size = new System.Drawing.Size(616, 304);
     this.groupControl1.TabIndex = 0;
     //
     // label2
     //
     this.label2.BackColor = System.Drawing.Color.Transparent;
     this.label2.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label2.Location = new System.Drawing.Point(16, 16);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(56, 23);
     this.label2.TabIndex = 186;
     this.label2.Text = "Status";
     //
     // ddlStatus
     //
     this.ddlStatus.Location = new System.Drawing.Point(88, 16);
     this.ddlStatus.Name = "ddlStatus";
     //
     // ddlStatus.Properties
     //
     this.ddlStatus.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Style3D;
     this.ddlStatus.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                       new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.ddlStatus.Properties.Items.AddRange(new object[] {
                                                               new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Pending", 0, -1),
                                                               new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Approved", 1, -1),
                                                               new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Rejected", 2, -1)});
     this.ddlStatus.Properties.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.ddlStatus.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.ddlStatus.Size = new System.Drawing.Size(104, 22);
     this.ddlStatus.TabIndex = 185;
     this.ddlStatus.SelectedIndexChanged += new System.EventHandler(this.ddlStatus_SelectedIndexChanged);
     //
     // btnReject
     //
     this.btnReject.Appearance.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.btnReject.Appearance.Options.UseFont = true;
     this.btnReject.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnReject.Location = new System.Drawing.Point(472, 16);
     this.btnReject.Name = "btnReject";
     this.btnReject.Size = new System.Drawing.Size(80, 24);
     this.btnReject.TabIndex = 184;
     this.btnReject.Text = "Reject";
     this.btnReject.Visible = false;
     this.btnReject.Click += new System.EventHandler(this.btnReject_Click);
     //
     // btnApprove
     //
     this.btnApprove.Appearance.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.btnApprove.Appearance.Options.UseFont = true;
     this.btnApprove.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnApprove.Location = new System.Drawing.Point(384, 16);
     this.btnApprove.Name = "btnApprove";
     this.btnApprove.Size = new System.Drawing.Size(80, 24);
     this.btnApprove.TabIndex = 183;
     this.btnApprove.Text = "Approve";
     this.btnApprove.Visible = false;
     this.btnApprove.Click += new System.EventHandler(this.btnApprove_Click);
     //
     // gridLeaveDetails
     //
     this.gridLeaveDetails.Dock = System.Windows.Forms.DockStyle.Bottom;
     //
     // gridLeaveDetails.EmbeddedNavigator
     //
     this.gridLeaveDetails.EmbeddedNavigator.Name = "";
     this.gridLeaveDetails.Location = new System.Drawing.Point(0, 48);
     this.gridLeaveDetails.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.gridLeaveDetails.LookAndFeel.UseDefaultLookAndFeel = false;
     this.gridLeaveDetails.MainView = this.gridViewLeaveDetails;
     this.gridLeaveDetails.Name = "gridLeaveDetails";
     this.gridLeaveDetails.Size = new System.Drawing.Size(616, 256);
     this.gridLeaveDetails.TabIndex = 180;
     this.gridLeaveDetails.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
                                                                                                     this.gridViewLeaveDetails});
     //
     // gridViewLeaveDetails
     //
     this.gridViewLeaveDetails.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
                                                                                                 this.gridColumn5,
                                                                                                 this.gridColumn6,
                                                                                                 this.gridColumn7,
                                                                                                 this.gridColumn8,
                                                                                                 this.gridColumn9,
                                                                                                 this.gridColumn10,
                                                                                                 this.gridColumn11,
                                                                                                 this.gridColumn13,
                                                                                                 this.gridColumn12});
     this.gridViewLeaveDetails.GridControl = this.gridLeaveDetails;
     this.gridViewLeaveDetails.Name = "gridViewLeaveDetails";
     this.gridViewLeaveDetails.OptionsBehavior.Editable = false;
     this.gridViewLeaveDetails.OptionsCustomization.AllowFilter = false;
     this.gridViewLeaveDetails.OptionsCustomization.AllowSort = false;
     this.gridViewLeaveDetails.OptionsView.ShowGroupPanel = false;
     //
     // gridColumn5
     //
     this.gridColumn5.Caption = "Roster ID";
     this.gridColumn5.FieldName = "nLeaveID";
     this.gridColumn5.Name = "gridColumn5";
     //
     // gridColumn6
     //
     this.gridColumn6.Caption = "Start Time";
     this.gridColumn6.DisplayFormat.FormatString = "hh:mm tt";
     this.gridColumn6.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Custom;
     this.gridColumn6.FieldName = "dtStartTime";
     this.gridColumn6.Name = "gridColumn6";
     this.gridColumn6.Visible = true;
     this.gridColumn6.VisibleIndex = 0;
     //
     // gridColumn7
     //
     this.gridColumn7.Caption = "End Time";
     this.gridColumn7.DisplayFormat.FormatString = "hh:mm tt";
     this.gridColumn7.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Custom;
     this.gridColumn7.FieldName = "dtEndTime";
     this.gridColumn7.Name = "gridColumn7";
     this.gridColumn7.Visible = true;
     this.gridColumn7.VisibleIndex = 1;
     //
     // gridColumn8
     //
     this.gridColumn8.Caption = "Duration";
     this.gridColumn8.FieldName = "Duration";
     this.gridColumn8.Name = "gridColumn8";
     this.gridColumn8.Visible = true;
     this.gridColumn8.VisibleIndex = 2;
     //
     // gridColumn9
     //
     this.gridColumn9.Caption = "Time Off";
     this.gridColumn9.FieldName = "fTimeOff";
     this.gridColumn9.Name = "gridColumn9";
     this.gridColumn9.Visible = true;
     this.gridColumn9.VisibleIndex = 3;
     //
     // gridColumn10
     //
     this.gridColumn10.Caption = "Leave Status";
     this.gridColumn10.FieldName = "LeaveStatus";
     this.gridColumn10.Name = "gridColumn10";
     this.gridColumn10.Visible = true;
     this.gridColumn10.VisibleIndex = 4;
     //
     // gridColumn11
     //
     this.gridColumn11.Caption = "Reason";
     this.gridColumn11.FieldName = "strRemarks";
     this.gridColumn11.Name = "gridColumn11";
     this.gridColumn11.Visible = true;
     this.gridColumn11.VisibleIndex = 5;
     //
     // gridColumn13
     //
     this.gridColumn13.Caption = "gridColumn13";
     this.gridColumn13.FieldName = "nStatusID";
     this.gridColumn13.Name = "gridColumn13";
     //
     // gridColumn12
     //
     this.gridColumn12.Caption = "Approving Manager";
     this.gridColumn12.FieldName = "ApprovedManager";
     this.gridColumn12.Name = "gridColumn12";
     this.gridColumn12.Visible = true;
     this.gridColumn12.VisibleIndex = 6;
     //
     // frmRoster
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize = new System.Drawing.Size(632, 350);
     this.Controls.Add(this.xtraTabControl1);
     this.Name = "frmRoster";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text = "Roster Details";
     this.Load += new System.EventHandler(this.frmRoster_Load);
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).EndInit();
     this.xtraTabControl1.ResumeLayout(false);
     this.xtraTabPage1.ResumeLayout(false);
     this.groupBox1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.cbBranch.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlRoster)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewRoster)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtEndTime.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtStartTime.Properties)).EndInit();
     this.xtraTabPage2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ddlStatus.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridLeaveDetails)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewLeaveDetails)).EndInit();
     this.ResumeLayout(false);
 }
Beispiel #50
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.groupControl2 = new DevExpress.XtraEditors.GroupControl();
     this.prevToMonth = new DevExpress.XtraEditors.ImageComboBoxEdit();
     this.prevFromMonth = new DevExpress.XtraEditors.ImageComboBoxEdit();
     this.btnPrevGo = new DevExpress.XtraEditors.SimpleButton();
     this.label5 = new System.Windows.Forms.Label();
     this.label4 = new System.Windows.Forms.Label();
     this.prevToYear = new DevExpress.XtraEditors.ImageComboBoxEdit();
     this.prevFromYear = new DevExpress.XtraEditors.ImageComboBoxEdit();
     this.groupControl1 = new DevExpress.XtraEditors.GroupControl();
     this.btn_Convert = new DevExpress.XtraEditors.SimpleButton();
     this.btn_Cancel = new DevExpress.XtraEditors.SimpleButton();
     this.gridLeaveDetails = new DevExpress.XtraGrid.GridControl();
     this.gridViewLeaveDetails = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn5 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn4 = 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.unPaid = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn9 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.chk_TimeOff = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.gridColumn10 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn11 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn13 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn12 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.appliedDate = new DevExpress.XtraGrid.Columns.GridColumn();
     this.btnReject = new DevExpress.XtraEditors.SimpleButton();
     this.btnApprove = new DevExpress.XtraEditors.SimpleButton();
     this.btnViewAll = new DevExpress.XtraEditors.SimpleButton();
     this.cmbBranch = new DevExpress.XtraEditors.ImageComboBoxEdit();
     this.label25 = new System.Windows.Forms.Label();
     this.label2 = new System.Windows.Forms.Label();
     this.ddlStatus = new DevExpress.XtraEditors.ImageComboBoxEdit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).BeginInit();
     this.groupControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.prevToMonth.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.prevFromMonth.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.prevToYear.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.prevFromYear.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridLeaveDetails)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewLeaveDetails)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_TimeOff)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbBranch.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ddlStatus.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // groupControl2
     //
     this.groupControl2.Controls.Add(this.prevToMonth);
     this.groupControl2.Controls.Add(this.prevFromMonth);
     this.groupControl2.Controls.Add(this.btnPrevGo);
     this.groupControl2.Controls.Add(this.label5);
     this.groupControl2.Controls.Add(this.label4);
     this.groupControl2.Controls.Add(this.prevToYear);
     this.groupControl2.Controls.Add(this.prevFromYear);
     this.groupControl2.Location = new System.Drawing.Point(16, 32);
     this.groupControl2.LookAndFeel.UseDefaultLookAndFeel = false;
     this.groupControl2.LookAndFeel.UseWindowsXPTheme = false;
     this.groupControl2.Name = "groupControl2";
     this.groupControl2.Size = new System.Drawing.Size(560, 48);
     this.groupControl2.TabIndex = 191;
     //
     // prevToMonth
     //
     this.prevToMonth.Location = new System.Drawing.Point(272, 16);
     this.prevToMonth.Name = "prevToMonth";
     //
     // prevToMonth.Properties
     //
     this.prevToMonth.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.prevToMonth.Properties.Items.AddRange(new object[] {
                                                                 new DevExpress.XtraEditors.Controls.ImageComboBoxItem("January", 1, -1),
                                                                 new DevExpress.XtraEditors.Controls.ImageComboBoxItem("February", 2, -1),
                                                                 new DevExpress.XtraEditors.Controls.ImageComboBoxItem("March", 3, -1),
                                                                 new DevExpress.XtraEditors.Controls.ImageComboBoxItem("April", 4, -1),
                                                                 new DevExpress.XtraEditors.Controls.ImageComboBoxItem("May", 5, -1),
                                                                 new DevExpress.XtraEditors.Controls.ImageComboBoxItem("June", 6, -1),
                                                                 new DevExpress.XtraEditors.Controls.ImageComboBoxItem("July", 7, -1),
                                                                 new DevExpress.XtraEditors.Controls.ImageComboBoxItem("August", 8, -1),
                                                                 new DevExpress.XtraEditors.Controls.ImageComboBoxItem("September", 9, -1),
                                                                 new DevExpress.XtraEditors.Controls.ImageComboBoxItem("October", 10, -1),
                                                                 new DevExpress.XtraEditors.Controls.ImageComboBoxItem("November", 11, -1),
                                                                 new DevExpress.XtraEditors.Controls.ImageComboBoxItem("December", 12, -1)});
     this.prevToMonth.Size = new System.Drawing.Size(72, 20);
     this.prevToMonth.TabIndex = 56;
     //
     // prevFromMonth
     //
     this.prevFromMonth.Location = new System.Drawing.Point(64, 16);
     this.prevFromMonth.Name = "prevFromMonth";
     //
     // prevFromMonth.Properties
     //
     this.prevFromMonth.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                           new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.prevFromMonth.Properties.Items.AddRange(new object[] {
                                                                   new DevExpress.XtraEditors.Controls.ImageComboBoxItem("January", 1, -1),
                                                                   new DevExpress.XtraEditors.Controls.ImageComboBoxItem("February", 2, -1),
                                                                   new DevExpress.XtraEditors.Controls.ImageComboBoxItem("March", 3, -1),
                                                                   new DevExpress.XtraEditors.Controls.ImageComboBoxItem("April", 4, -1),
                                                                   new DevExpress.XtraEditors.Controls.ImageComboBoxItem("May", 5, -1),
                                                                   new DevExpress.XtraEditors.Controls.ImageComboBoxItem("June", 6, -1),
                                                                   new DevExpress.XtraEditors.Controls.ImageComboBoxItem("July", 7, -1),
                                                                   new DevExpress.XtraEditors.Controls.ImageComboBoxItem("August", 8, -1),
                                                                   new DevExpress.XtraEditors.Controls.ImageComboBoxItem("September", 9, -1),
                                                                   new DevExpress.XtraEditors.Controls.ImageComboBoxItem("October", 10, -1),
                                                                   new DevExpress.XtraEditors.Controls.ImageComboBoxItem("November", 11, -1),
                                                                   new DevExpress.XtraEditors.Controls.ImageComboBoxItem("December", 12, -1)});
     this.prevFromMonth.Size = new System.Drawing.Size(72, 20);
     this.prevFromMonth.TabIndex = 55;
     //
     // btnPrevGo
     //
     this.btnPrevGo.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.btnPrevGo.Appearance.Options.UseFont = true;
     this.btnPrevGo.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnPrevGo.Location = new System.Drawing.Point(448, 16);
     this.btnPrevGo.Name = "btnPrevGo";
     this.btnPrevGo.Size = new System.Drawing.Size(72, 20);
     this.btnPrevGo.TabIndex = 54;
     this.btnPrevGo.Text = "Go";
     this.btnPrevGo.Click += new System.EventHandler(this.btnPrevGo_Click);
     //
     // label5
     //
     this.label5.BackColor = System.Drawing.Color.Transparent;
     this.label5.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label5.Location = new System.Drawing.Point(240, 16);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(24, 16);
     this.label5.TabIndex = 53;
     this.label5.Text = "To";
     //
     // label4
     //
     this.label4.BackColor = System.Drawing.Color.Transparent;
     this.label4.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label4.Location = new System.Drawing.Point(16, 16);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(48, 16);
     this.label4.TabIndex = 52;
     this.label4.Text = "From";
     //
     // prevToYear
     //
     this.prevToYear.EditValue = "cbGIROStatus";
     this.prevToYear.Location = new System.Drawing.Point(352, 16);
     this.prevToYear.Name = "prevToYear";
     //
     // prevToYear.Properties
     //
     this.prevToYear.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                        new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.prevToYear.Properties.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.prevToYear.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.prevToYear.Size = new System.Drawing.Size(80, 20);
     this.prevToYear.TabIndex = 51;
     //
     // prevFromYear
     //
     this.prevFromYear.EditValue = "cbGIROStatus";
     this.prevFromYear.Location = new System.Drawing.Point(144, 16);
     this.prevFromYear.Name = "prevFromYear";
     //
     // prevFromYear.Properties
     //
     this.prevFromYear.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                          new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.prevFromYear.Properties.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.prevFromYear.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.prevFromYear.Size = new System.Drawing.Size(72, 20);
     this.prevFromYear.TabIndex = 50;
     //
     // groupControl1
     //
     this.groupControl1.Appearance.BackColor = System.Drawing.SystemColors.Control;
     this.groupControl1.Appearance.Options.UseBackColor = true;
     this.groupControl1.Controls.Add(this.btn_Convert);
     this.groupControl1.Controls.Add(this.btn_Cancel);
     this.groupControl1.Controls.Add(this.gridLeaveDetails);
     this.groupControl1.Controls.Add(this.btnReject);
     this.groupControl1.Controls.Add(this.btnApprove);
     this.groupControl1.Controls.Add(this.btnViewAll);
     this.groupControl1.Controls.Add(this.cmbBranch);
     this.groupControl1.Controls.Add(this.label25);
     this.groupControl1.Controls.Add(this.label2);
     this.groupControl1.Controls.Add(this.ddlStatus);
     this.groupControl1.Controls.Add(this.groupControl2);
     this.groupControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.groupControl1.Location = new System.Drawing.Point(0, 0);
     this.groupControl1.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.groupControl1.LookAndFeel.UseDefaultLookAndFeel = false;
     this.groupControl1.Name = "groupControl1";
     this.groupControl1.Size = new System.Drawing.Size(992, 568);
     this.groupControl1.TabIndex = 198;
     this.groupControl1.Text = "Leave Details";
     this.groupControl1.Paint += new System.Windows.Forms.PaintEventHandler(this.groupControl1_Paint);
     //
     // btn_Convert
     //
     this.btn_Convert.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.btn_Convert.Appearance.Options.UseFont = true;
     this.btn_Convert.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btn_Convert.Location = new System.Drawing.Point(784, 88);
     this.btn_Convert.Name = "btn_Convert";
     this.btn_Convert.Size = new System.Drawing.Size(72, 20);
     this.btn_Convert.TabIndex = 207;
     this.btn_Convert.Text = "Convert";
     this.btn_Convert.Click += new System.EventHandler(this.btn_Convert_Click);
     //
     // btn_Cancel
     //
     this.btn_Cancel.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.btn_Cancel.Appearance.Options.UseFont = true;
     this.btn_Cancel.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btn_Cancel.Location = new System.Drawing.Point(704, 88);
     this.btn_Cancel.Name = "btn_Cancel";
     this.btn_Cancel.Size = new System.Drawing.Size(72, 20);
     this.btn_Cancel.TabIndex = 206;
     this.btn_Cancel.Text = "Cancel";
     this.btn_Cancel.Click += new System.EventHandler(this.btn_Cancel_Click);
     //
     // gridLeaveDetails
     //
     this.gridLeaveDetails.Dock = System.Windows.Forms.DockStyle.Bottom;
     //
     // gridLeaveDetails.EmbeddedNavigator
     //
     this.gridLeaveDetails.EmbeddedNavigator.Name = "";
     this.gridLeaveDetails.Location = new System.Drawing.Point(4, 116);
     this.gridLeaveDetails.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.gridLeaveDetails.LookAndFeel.UseDefaultLookAndFeel = false;
     this.gridLeaveDetails.MainView = this.gridViewLeaveDetails;
     this.gridLeaveDetails.Name = "gridLeaveDetails";
     this.gridLeaveDetails.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
                                                                                                               this.chk_TimeOff});
     this.gridLeaveDetails.Size = new System.Drawing.Size(984, 448);
     this.gridLeaveDetails.TabIndex = 205;
     this.gridLeaveDetails.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
                                                                                                     this.gridViewLeaveDetails});
     //
     // gridViewLeaveDetails
     //
     this.gridViewLeaveDetails.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
                                                                                                 this.gridColumn3,
                                                                                                 this.gridColumn1,
                                                                                                 this.gridColumn2,
                                                                                                 this.gridColumn5,
                                                                                                 this.gridColumn4,
                                                                                                 this.gridColumn6,
                                                                                                 this.gridColumn7,
                                                                                                 this.gridColumn8,
                                                                                                 this.unPaid,
                                                                                                 this.gridColumn9,
                                                                                                 this.gridColumn10,
                                                                                                 this.gridColumn11,
                                                                                                 this.gridColumn13,
                                                                                                 this.gridColumn12,
                                                                                                 this.appliedDate});
     this.gridViewLeaveDetails.GridControl = this.gridLeaveDetails;
     this.gridViewLeaveDetails.Name = "gridViewLeaveDetails";
     this.gridViewLeaveDetails.OptionsBehavior.Editable = false;
     this.gridViewLeaveDetails.OptionsCustomization.AllowFilter = false;
     this.gridViewLeaveDetails.OptionsCustomization.AllowSort = false;
     this.gridViewLeaveDetails.OptionsView.ColumnAutoWidth = false;
     this.gridViewLeaveDetails.OptionsView.ShowGroupPanel = false;
     this.gridViewLeaveDetails.RowStyle += new DevExpress.XtraGrid.Views.Grid.RowStyleEventHandler(this.gridViewLeaveDetails_RowStyle);
     //
     // gridColumn3
     //
     this.gridColumn3.Caption = "Date";
     this.gridColumn3.DisplayFormat.FormatString = "dd/MM/yyyy";
     this.gridColumn3.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Custom;
     this.gridColumn3.FieldName = "dtStartTime";
     this.gridColumn3.Name = "gridColumn3";
     this.gridColumn3.Visible = true;
     this.gridColumn3.VisibleIndex = 0;
     this.gridColumn3.Width = 69;
     //
     // gridColumn1
     //
     this.gridColumn1.Caption = "ID";
     this.gridColumn1.FieldName = "nEmployeeID";
     this.gridColumn1.Name = "gridColumn1";
     this.gridColumn1.Visible = true;
     this.gridColumn1.VisibleIndex = 1;
     this.gridColumn1.Width = 53;
     //
     // gridColumn2
     //
     this.gridColumn2.Caption = "Name";
     this.gridColumn2.FieldName = "strEmployeeName";
     this.gridColumn2.Name = "gridColumn2";
     this.gridColumn2.Visible = true;
     this.gridColumn2.VisibleIndex = 2;
     this.gridColumn2.Width = 173;
     //
     // gridColumn5
     //
     this.gridColumn5.Caption = "Roster ID";
     this.gridColumn5.FieldName = "nLeaveID";
     this.gridColumn5.Name = "gridColumn5";
     //
     // gridColumn4
     //
     this.gridColumn4.Caption = "Type";
     this.gridColumn4.FieldName = "LeaveType";
     this.gridColumn4.Name = "gridColumn4";
     this.gridColumn4.Visible = true;
     this.gridColumn4.VisibleIndex = 3;
     //
     // gridColumn6
     //
     this.gridColumn6.Caption = "Start Time";
     this.gridColumn6.DisplayFormat.FormatString = "hh:mm:ss tt";
     this.gridColumn6.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Custom;
     this.gridColumn6.FieldName = "dtStartTime";
     this.gridColumn6.Name = "gridColumn6";
     this.gridColumn6.Visible = true;
     this.gridColumn6.VisibleIndex = 4;
     this.gridColumn6.Width = 88;
     //
     // gridColumn7
     //
     this.gridColumn7.Caption = "End Time";
     this.gridColumn7.DisplayFormat.FormatString = "hh:mm:ss tt";
     this.gridColumn7.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Custom;
     this.gridColumn7.FieldName = "dtEndTime";
     this.gridColumn7.Name = "gridColumn7";
     this.gridColumn7.Visible = true;
     this.gridColumn7.VisibleIndex = 5;
     this.gridColumn7.Width = 87;
     //
     // gridColumn8
     //
     this.gridColumn8.Caption = "Duration";
     this.gridColumn8.FieldName = "Duration";
     this.gridColumn8.Name = "gridColumn8";
     this.gridColumn8.Visible = true;
     this.gridColumn8.VisibleIndex = 6;
     this.gridColumn8.Width = 78;
     //
     // unPaid
     //
     this.unPaid.Caption = "UnPaid";
     this.unPaid.FieldName = "unPaid";
     this.unPaid.Name = "unPaid";
     this.unPaid.Visible = true;
     this.unPaid.VisibleIndex = 7;
     //
     // gridColumn9
     //
     this.gridColumn9.Caption = "Time Off";
     this.gridColumn9.ColumnEdit = this.chk_TimeOff;
     this.gridColumn9.FieldName = "fTimeOff";
     this.gridColumn9.Name = "gridColumn9";
     this.gridColumn9.Visible = true;
     this.gridColumn9.VisibleIndex = 8;
     this.gridColumn9.Width = 60;
     //
     // chk_TimeOff
     //
     this.chk_TimeOff.AutoHeight = false;
     this.chk_TimeOff.Name = "chk_TimeOff";
     //
     // gridColumn10
     //
     this.gridColumn10.Caption = "Status";
     this.gridColumn10.FieldName = "LeaveStatus";
     this.gridColumn10.Name = "gridColumn10";
     this.gridColumn10.Visible = true;
     this.gridColumn10.VisibleIndex = 9;
     this.gridColumn10.Width = 85;
     //
     // gridColumn11
     //
     this.gridColumn11.Caption = "Reason";
     this.gridColumn11.FieldName = "strRemarks";
     this.gridColumn11.Name = "gridColumn11";
     this.gridColumn11.Visible = true;
     this.gridColumn11.VisibleIndex = 10;
     this.gridColumn11.Width = 137;
     //
     // gridColumn13
     //
     this.gridColumn13.Caption = "gridColumn13";
     this.gridColumn13.FieldName = "nStatusID";
     this.gridColumn13.Name = "gridColumn13";
     //
     // gridColumn12
     //
     this.gridColumn12.Caption = "Approving Manager";
     this.gridColumn12.FieldName = "ApprovedManager";
     this.gridColumn12.Name = "gridColumn12";
     this.gridColumn12.Visible = true;
     this.gridColumn12.VisibleIndex = 11;
     this.gridColumn12.Width = 125;
     //
     // appliedDate
     //
     this.appliedDate.Caption = "Date Request";
     this.appliedDate.DisplayFormat.FormatString = "dd/MM/yyyy";
     this.appliedDate.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.appliedDate.FieldName = "dtDate";
     this.appliedDate.Name = "appliedDate";
     this.appliedDate.Visible = true;
     this.appliedDate.VisibleIndex = 12;
     //
     // btnReject
     //
     this.btnReject.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.btnReject.Appearance.Options.UseFont = true;
     this.btnReject.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnReject.Location = new System.Drawing.Point(624, 88);
     this.btnReject.Name = "btnReject";
     this.btnReject.Size = new System.Drawing.Size(72, 20);
     this.btnReject.TabIndex = 204;
     this.btnReject.Text = "Reject";
     this.btnReject.Click += new System.EventHandler(this.btnReject_Click);
     //
     // btnApprove
     //
     this.btnApprove.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.btnApprove.Appearance.Options.UseFont = true;
     this.btnApprove.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnApprove.Location = new System.Drawing.Point(544, 88);
     this.btnApprove.Name = "btnApprove";
     this.btnApprove.Size = new System.Drawing.Size(72, 20);
     this.btnApprove.TabIndex = 203;
     this.btnApprove.Text = "Approve";
     this.btnApprove.Click += new System.EventHandler(this.btnApprove_Click);
     //
     // btnViewAll
     //
     this.btnViewAll.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.btnViewAll.Appearance.Options.UseFont = true;
     this.btnViewAll.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnViewAll.Location = new System.Drawing.Point(464, 88);
     this.btnViewAll.Name = "btnViewAll";
     this.btnViewAll.Size = new System.Drawing.Size(72, 20);
     this.btnViewAll.TabIndex = 202;
     this.btnViewAll.Text = "View All";
     this.btnViewAll.Click += new System.EventHandler(this.btnViewAll_Click);
     //
     // cmbBranch
     //
     this.cmbBranch.Location = new System.Drawing.Point(288, 88);
     this.cmbBranch.Name = "cmbBranch";
     //
     // cmbBranch.Properties
     //
     this.cmbBranch.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                       new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cmbBranch.Size = new System.Drawing.Size(120, 20);
     this.cmbBranch.TabIndex = 201;
     this.cmbBranch.SelectedValueChanged += new System.EventHandler(this.cmbBranch_SelectedValueChanged);
     //
     // label25
     //
     this.label25.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label25.ForeColor = System.Drawing.Color.Black;
     this.label25.Location = new System.Drawing.Point(224, 88);
     this.label25.Name = "label25";
     this.label25.Size = new System.Drawing.Size(56, 16);
     this.label25.TabIndex = 200;
     this.label25.Text = "Branch";
     //
     // label2
     //
     this.label2.BackColor = System.Drawing.Color.Transparent;
     this.label2.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label2.Location = new System.Drawing.Point(24, 88);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(48, 23);
     this.label2.TabIndex = 199;
     this.label2.Text = "Status";
     //
     // ddlStatus
     //
     this.ddlStatus.EditValue = 0;
     this.ddlStatus.Location = new System.Drawing.Point(80, 88);
     this.ddlStatus.Name = "ddlStatus";
     //
     // ddlStatus.Properties
     //
     this.ddlStatus.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                       new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.ddlStatus.Properties.Items.AddRange(new object[] {
                                                               new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Pending", 0, -1),
                                                               new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Approved", 1, -1),
                                                               new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Rejected", 2, -1)});
     this.ddlStatus.Properties.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.ddlStatus.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.ddlStatus.Size = new System.Drawing.Size(112, 20);
     this.ddlStatus.TabIndex = 198;
     this.ddlStatus.SelectedIndexChanged += new System.EventHandler(this.ddlStatus_SelectedIndexChanged_1);
     this.ddlStatus.SelectedValueChanged += new System.EventHandler(this.ddlStatus_SelectedIndexChanged);
     //
     // frmLeave
     //
     this.AutoScale = false;
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.BackColor = System.Drawing.SystemColors.Control;
     this.ClientSize = new System.Drawing.Size(992, 568);
     this.Controls.Add(this.groupControl1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
     this.Name = "frmLeave";
     this.Text = "Leave detail";
     this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
     this.Load += new System.EventHandler(this.frmLeave_Load);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).EndInit();
     this.groupControl2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.prevToMonth.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.prevFromMonth.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.prevToYear.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.prevFromYear.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridLeaveDetails)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewLeaveDetails)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_TimeOff)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbBranch.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ddlStatus.Properties)).EndInit();
     this.ResumeLayout(false);
 }
Beispiel #51
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.gridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.label12 = new System.Windows.Forms.Label();
     this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.ToYear = new DevExpress.XtraEditors.ImageComboBoxEdit();
     this.ToMonth = new DevExpress.XtraEditors.ImageComboBoxEdit();
     this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn4 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn5 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn6 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn7 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn8 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn9 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gdLeaveReport = new DevExpress.XtraGrid.GridControl();
     this.btnReset = new DevExpress.XtraEditors.SimpleButton();
     this.label11 = new System.Windows.Forms.Label();
     this.Year = new DevExpress.XtraEditors.ImageComboBoxEdit();
     this.dMonth = new DevExpress.XtraEditors.ImageComboBoxEdit();
     this.label2 = new System.Windows.Forms.Label();
     this.label1 = new System.Windows.Forms.Label();
     this.cmbStatus = new DevExpress.XtraEditors.ImageComboBoxEdit();
     this.cmbLeaveStatus = new DevExpress.XtraEditors.ImageComboBoxEdit();
     this.cmbLeaveType = new DevExpress.XtraEditors.ImageComboBoxEdit();
     this.label10 = new System.Windows.Forms.Label();
     this.label9 = new System.Windows.Forms.Label();
     this.label8 = new System.Windows.Forms.Label();
     this.label7 = new System.Windows.Forms.Label();
     this.sbtnReset = new DevExpress.XtraEditors.SimpleButton();
     this.lkEmployee = new DevExpress.XtraEditors.LookUpEdit();
     this.lkBranch = new DevExpress.XtraEditors.LookUpEdit();
     this.label6 = new System.Windows.Forms.Label();
     this.label5 = new System.Windows.Forms.Label();
     ((System.ComponentModel.ISupportInitialize)(this.ToYear.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ToMonth.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gdLeaveReport)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Year.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dMonth.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbStatus.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbLeaveStatus.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbLeaveType.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkEmployee.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkBranch.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // gridColumn2
     //
     this.gridColumn2.Caption = "ID";
     this.gridColumn2.FieldName = "nEmployeeID";
     this.gridColumn2.Name = "gridColumn2";
     this.gridColumn2.Visible = true;
     this.gridColumn2.VisibleIndex = 1;
     this.gridColumn2.Width = 51;
     //
     // gridColumn3
     //
     this.gridColumn3.Caption = "Name";
     this.gridColumn3.FieldName = "strEmployeeName";
     this.gridColumn3.Name = "gridColumn3";
     this.gridColumn3.Visible = true;
     this.gridColumn3.VisibleIndex = 2;
     this.gridColumn3.Width = 130;
     //
     // label12
     //
     this.label12.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label12.Location = new System.Drawing.Point(408, 0);
     this.label12.Name = "label12";
     this.label12.Size = new System.Drawing.Size(40, 16);
     this.label12.TabIndex = 233;
     this.label12.Text = "Year";
     //
     // gridColumn1
     //
     this.gridColumn1.Caption = "Branch";
     this.gridColumn1.FieldName = "strBranchCode";
     this.gridColumn1.Name = "gridColumn1";
     this.gridColumn1.Visible = true;
     this.gridColumn1.VisibleIndex = 0;
     this.gridColumn1.Width = 80;
     //
     // ToYear
     //
     this.ToYear.Location = new System.Drawing.Point(448, 0);
     this.ToYear.Name = "ToYear";
     //
     // ToYear.Properties
     //
     this.ToYear.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                    new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.ToYear.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.ToYear.Size = new System.Drawing.Size(56, 22);
     this.ToYear.TabIndex = 236;
     //
     // ToMonth
     //
     this.ToMonth.EditValue = 1;
     this.ToMonth.Location = new System.Drawing.Point(336, 0);
     this.ToMonth.Name = "ToMonth";
     //
     // ToMonth.Properties
     //
     this.ToMonth.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.ToMonth.Properties.Items.AddRange(new object[] {
                                                             new DevExpress.XtraEditors.Controls.ImageComboBoxItem("January", 1, -1),
                                                             new DevExpress.XtraEditors.Controls.ImageComboBoxItem("February", 2, -1),
                                                             new DevExpress.XtraEditors.Controls.ImageComboBoxItem("March", 3, -1),
                                                             new DevExpress.XtraEditors.Controls.ImageComboBoxItem("April", 4, -1),
                                                             new DevExpress.XtraEditors.Controls.ImageComboBoxItem("May", 5, -1),
                                                             new DevExpress.XtraEditors.Controls.ImageComboBoxItem("June", 6, -1),
                                                             new DevExpress.XtraEditors.Controls.ImageComboBoxItem("July", 7, -1),
                                                             new DevExpress.XtraEditors.Controls.ImageComboBoxItem("August", 8, -1),
                                                             new DevExpress.XtraEditors.Controls.ImageComboBoxItem("September", 9, -1),
                                                             new DevExpress.XtraEditors.Controls.ImageComboBoxItem("October", 10, -1),
                                                             new DevExpress.XtraEditors.Controls.ImageComboBoxItem("November", 11, -1),
                                                             new DevExpress.XtraEditors.Controls.ImageComboBoxItem("December", 12, -1)});
     this.ToMonth.Size = new System.Drawing.Size(72, 22);
     this.ToMonth.TabIndex = 235;
     //
     // 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.gridColumn8,
                                                                                      this.gridColumn9});
     this.gridView1.GridControl = this.gdLeaveReport;
     this.gridView1.Name = "gridView1";
     this.gridView1.OptionsBehavior.Editable = false;
     this.gridView1.OptionsCustomization.AllowColumnMoving = false;
     this.gridView1.OptionsCustomization.AllowFilter = false;
     this.gridView1.OptionsCustomization.AllowSort = false;
     this.gridView1.OptionsView.ShowGroupPanel = false;
     //
     // gridColumn4
     //
     this.gridColumn4.Caption = "Year";
     this.gridColumn4.FieldName = "dYear";
     this.gridColumn4.Name = "gridColumn4";
     this.gridColumn4.Visible = true;
     this.gridColumn4.VisibleIndex = 3;
     this.gridColumn4.Width = 78;
     //
     // gridColumn5
     //
     this.gridColumn5.Caption = "Month";
     this.gridColumn5.FieldName = "MonDesc";
     this.gridColumn5.Name = "gridColumn5";
     this.gridColumn5.Visible = true;
     this.gridColumn5.VisibleIndex = 4;
     this.gridColumn5.Width = 120;
     //
     // gridColumn6
     //
     this.gridColumn6.Caption = "Leave Type";
     this.gridColumn6.FieldName = "strDescription";
     this.gridColumn6.Name = "gridColumn6";
     this.gridColumn6.Visible = true;
     this.gridColumn6.VisibleIndex = 5;
     this.gridColumn6.Width = 150;
     //
     // gridColumn7
     //
     this.gridColumn7.Caption = "Status 1";
     this.gridColumn7.FieldName = "PAID";
     this.gridColumn7.Name = "gridColumn7";
     this.gridColumn7.Visible = true;
     this.gridColumn7.VisibleIndex = 6;
     this.gridColumn7.Width = 110;
     //
     // gridColumn8
     //
     this.gridColumn8.Caption = "Status 2";
     this.gridColumn8.FieldName = "Status";
     this.gridColumn8.Name = "gridColumn8";
     this.gridColumn8.Visible = true;
     this.gridColumn8.VisibleIndex = 7;
     this.gridColumn8.Width = 110;
     //
     // gridColumn9
     //
     this.gridColumn9.Caption = "Total";
     this.gridColumn9.FieldName = "LeaveQty";
     this.gridColumn9.Name = "gridColumn9";
     this.gridColumn9.Visible = true;
     this.gridColumn9.VisibleIndex = 8;
     this.gridColumn9.Width = 130;
     //
     // gdLeaveReport
     //
     this.gdLeaveReport.Dock = System.Windows.Forms.DockStyle.Bottom;
     //
     // gdLeaveReport.EmbeddedNavigator
     //
     this.gdLeaveReport.EmbeddedNavigator.Name = "";
     this.gdLeaveReport.Location = new System.Drawing.Point(0, 53);
     this.gdLeaveReport.MainView = this.gridView1;
     this.gdLeaveReport.Name = "gdLeaveReport";
     this.gdLeaveReport.Size = new System.Drawing.Size(960, 408);
     this.gdLeaveReport.TabIndex = 216;
     this.gdLeaveReport.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
                                                                                                  this.gridView1});
     //
     // btnReset
     //
     this.btnReset.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.btnReset.Appearance.Options.UseFont = true;
     this.btnReset.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnReset.Location = new System.Drawing.Point(568, 24);
     this.btnReset.LookAndFeel.UseDefaultLookAndFeel = false;
     this.btnReset.Name = "btnReset";
     this.btnReset.Size = new System.Drawing.Size(72, 16);
     this.btnReset.TabIndex = 237;
     this.btnReset.Text = "Reset";
     this.btnReset.Click += new System.EventHandler(this.btnReset_Click);
     //
     // label11
     //
     this.label11.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label11.Location = new System.Drawing.Point(288, 0);
     this.label11.Name = "label11";
     this.label11.Size = new System.Drawing.Size(48, 16);
     this.label11.TabIndex = 234;
     this.label11.Text = "Month";
     //
     // Year
     //
     this.Year.Location = new System.Drawing.Point(160, 0);
     this.Year.Name = "Year";
     //
     // Year.Properties
     //
     this.Year.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                  new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.Year.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.Year.Size = new System.Drawing.Size(56, 22);
     this.Year.TabIndex = 232;
     //
     // dMonth
     //
     this.dMonth.EditValue = 1;
     this.dMonth.Location = new System.Drawing.Point(56, 0);
     this.dMonth.Name = "dMonth";
     //
     // dMonth.Properties
     //
     this.dMonth.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                    new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.dMonth.Properties.Items.AddRange(new object[] {
                                                            new DevExpress.XtraEditors.Controls.ImageComboBoxItem("January", 1, -1),
                                                            new DevExpress.XtraEditors.Controls.ImageComboBoxItem("February", 2, -1),
                                                            new DevExpress.XtraEditors.Controls.ImageComboBoxItem("March", 3, -1),
                                                            new DevExpress.XtraEditors.Controls.ImageComboBoxItem("April", 4, -1),
                                                            new DevExpress.XtraEditors.Controls.ImageComboBoxItem("May", 5, -1),
                                                            new DevExpress.XtraEditors.Controls.ImageComboBoxItem("June", 6, -1),
                                                            new DevExpress.XtraEditors.Controls.ImageComboBoxItem("July", 7, -1),
                                                            new DevExpress.XtraEditors.Controls.ImageComboBoxItem("August", 8, -1),
                                                            new DevExpress.XtraEditors.Controls.ImageComboBoxItem("September", 9, -1),
                                                            new DevExpress.XtraEditors.Controls.ImageComboBoxItem("October", 10, -1),
                                                            new DevExpress.XtraEditors.Controls.ImageComboBoxItem("November", 11, -1),
                                                            new DevExpress.XtraEditors.Controls.ImageComboBoxItem("December", 12, -1)});
     this.dMonth.Size = new System.Drawing.Size(64, 22);
     this.dMonth.TabIndex = 231;
     //
     // label2
     //
     this.label2.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label2.Location = new System.Drawing.Point(8, 0);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(48, 16);
     this.label2.TabIndex = 230;
     this.label2.Text = "Month";
     //
     // label1
     //
     this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label1.Location = new System.Drawing.Point(120, 0);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(40, 16);
     this.label1.TabIndex = 229;
     this.label1.Text = "Year";
     //
     // cmbStatus
     //
     this.cmbStatus.EditValue = 0;
     this.cmbStatus.Location = new System.Drawing.Point(440, 24);
     this.cmbStatus.Name = "cmbStatus";
     //
     // cmbStatus.Properties
     //
     this.cmbStatus.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                       new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cmbStatus.Properties.Items.AddRange(new object[] {
                                                               new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Pending Approval", 0, -1),
                                                               new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Approved", 1, -1),
                                                               new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Rejected", 2, -1),
                                                               new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Cancelled", 3, -1)});
     this.cmbStatus.Size = new System.Drawing.Size(120, 22);
     this.cmbStatus.TabIndex = 228;
     this.cmbStatus.EditValueChanged += new System.EventHandler(this.cmbStatus_SelectedValueChanged);
     //
     // cmbLeaveStatus
     //
     this.cmbLeaveStatus.EditValue = 0;
     this.cmbLeaveStatus.Location = new System.Drawing.Point(304, 24);
     this.cmbLeaveStatus.Name = "cmbLeaveStatus";
     //
     // cmbLeaveStatus.Properties
     //
     this.cmbLeaveStatus.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cmbLeaveStatus.Properties.Items.AddRange(new object[] {
                                                                    new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Paid", 0, -1),
                                                                    new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Unpaid", 1, -1)});
     this.cmbLeaveStatus.Size = new System.Drawing.Size(72, 22);
     this.cmbLeaveStatus.TabIndex = 227;
     this.cmbLeaveStatus.EditValueChanged += new System.EventHandler(this.cmbLeaveStatus_SelectedValueChanged);
     //
     // cmbLeaveType
     //
     this.cmbLeaveType.Location = new System.Drawing.Point(96, 24);
     this.cmbLeaveType.Name = "cmbLeaveType";
     //
     // cmbLeaveType.Properties
     //
     this.cmbLeaveType.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                          new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cmbLeaveType.Size = new System.Drawing.Size(112, 22);
     this.cmbLeaveType.TabIndex = 226;
     this.cmbLeaveType.EditValueChanged += new System.EventHandler(this.cmbLeaveType_SelectedValueChanged);
     //
     // label10
     //
     this.label10.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label10.Location = new System.Drawing.Point(240, 0);
     this.label10.Name = "label10";
     this.label10.Size = new System.Drawing.Size(24, 16);
     this.label10.TabIndex = 225;
     this.label10.Text = "To";
     //
     // label9
     //
     this.label9.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label9.Location = new System.Drawing.Point(384, 24);
     this.label9.Name = "label9";
     this.label9.Size = new System.Drawing.Size(56, 16);
     this.label9.TabIndex = 224;
     this.label9.Text = "Status";
     //
     // label8
     //
     this.label8.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label8.Location = new System.Drawing.Point(208, 24);
     this.label8.Name = "label8";
     this.label8.Size = new System.Drawing.Size(88, 16);
     this.label8.TabIndex = 223;
     this.label8.Text = "Leave Status";
     //
     // label7
     //
     this.label7.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label7.Location = new System.Drawing.Point(8, 24);
     this.label7.Name = "label7";
     this.label7.Size = new System.Drawing.Size(88, 16);
     this.label7.TabIndex = 222;
     this.label7.Text = "Leave Type";
     //
     // sbtnReset
     //
     this.sbtnReset.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.sbtnReset.Appearance.Options.UseFont = true;
     this.sbtnReset.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.sbtnReset.Location = new System.Drawing.Point(832, 0);
     this.sbtnReset.LookAndFeel.UseDefaultLookAndFeel = false;
     this.sbtnReset.Name = "sbtnReset";
     this.sbtnReset.Size = new System.Drawing.Size(56, 16);
     this.sbtnReset.TabIndex = 221;
     this.sbtnReset.Text = "Enquiry";
     this.sbtnReset.Click += new System.EventHandler(this.sbtnReset_Click);
     //
     // lkEmployee
     //
     this.lkEmployee.Location = new System.Drawing.Point(728, 0);
     this.lkEmployee.Name = "lkEmployee";
     //
     // lkEmployee.Properties
     //
     this.lkEmployee.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                        new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lkEmployee.Size = new System.Drawing.Size(104, 22);
     this.lkEmployee.TabIndex = 220;
     //
     // lkBranch
     //
     this.lkBranch.Location = new System.Drawing.Point(576, 0);
     this.lkBranch.Name = "lkBranch";
     //
     // lkBranch.Properties
     //
     this.lkBranch.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                      new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lkBranch.Size = new System.Drawing.Size(80, 22);
     this.lkBranch.TabIndex = 219;
     //
     // label6
     //
     this.label6.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label6.Location = new System.Drawing.Point(656, 0);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(72, 23);
     this.label6.TabIndex = 218;
     this.label6.Text = "Employee";
     //
     // label5
     //
     this.label5.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label5.Location = new System.Drawing.Point(520, 0);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(56, 23);
     this.label5.TabIndex = 217;
     this.label5.Text = "Branch";
     //
     // RPStaffTimeOff
     //
     this.Appearance.BackColor = System.Drawing.SystemColors.Control;
     this.Appearance.Options.UseBackColor = true;
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 14);
     this.ClientSize = new System.Drawing.Size(960, 461);
     this.Controls.Add(this.label12);
     this.Controls.Add(this.ToYear);
     this.Controls.Add(this.ToMonth);
     this.Controls.Add(this.gdLeaveReport);
     this.Controls.Add(this.btnReset);
     this.Controls.Add(this.label11);
     this.Controls.Add(this.Year);
     this.Controls.Add(this.dMonth);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.cmbStatus);
     this.Controls.Add(this.cmbLeaveStatus);
     this.Controls.Add(this.cmbLeaveType);
     this.Controls.Add(this.label10);
     this.Controls.Add(this.label9);
     this.Controls.Add(this.label8);
     this.Controls.Add(this.label7);
     this.Controls.Add(this.sbtnReset);
     this.Controls.Add(this.lkEmployee);
     this.Controls.Add(this.lkBranch);
     this.Controls.Add(this.label6);
     this.Controls.Add(this.label5);
     this.Name = "RPStaffTimeOff";
     this.Text = "Staff Time Off";
     this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
     this.Load += new System.EventHandler(this.RPStaffTimeOff_Load);
     ((System.ComponentModel.ISupportInitialize)(this.ToYear.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ToMonth.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gdLeaveReport)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Year.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dMonth.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbStatus.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbLeaveStatus.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbLeaveType.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkEmployee.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkBranch.Properties)).EndInit();
     this.ResumeLayout(false);
 }
Beispiel #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.label1        = new System.Windows.Forms.Label();
     this.label2        = new System.Windows.Forms.Label();
     this.cmbMonth      = new System.Windows.Forms.ComboBox();
     this.cmbYear       = new System.Windows.Forms.ComboBox();
     this.cmbInstructor = new DevExpress.XtraEditors.ImageComboBoxEdit();
     this.label3        = new System.Windows.Forms.Label();
     this.cmbBranch     = new DevExpress.XtraEditors.ImageComboBoxEdit();
     this.label4        = new System.Windows.Forms.Label();
     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.gridColumn7   = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn8   = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn9   = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridView2     = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.simpleButton1 = new DevExpress.XtraEditors.SimpleButton();
     ((System.ComponentModel.ISupportInitialize)(this.cmbInstructor.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbBranch.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView2)).BeginInit();
     this.SuspendLayout();
     //
     // 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.Location  = new System.Drawing.Point(8, 16);
     this.label1.Name      = "label1";
     this.label1.Size      = new System.Drawing.Size(100, 23);
     this.label1.TabIndex  = 1;
     this.label1.Text      = "Year";
     this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // 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.Location  = new System.Drawing.Point(199, 16);
     this.label2.Name      = "label2";
     this.label2.Size      = new System.Drawing.Size(52, 23);
     this.label2.TabIndex  = 2;
     this.label2.Text      = "Month";
     this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // cmbMonth
     //
     this.cmbMonth.Items.AddRange(new object[] {
         "1",
         "2",
         "3",
         "4",
         "5",
         "6",
         "7",
         "8",
         "9",
         "10",
         "11",
         "12"
     });
     this.cmbMonth.Location              = new System.Drawing.Point(257, 18);
     this.cmbMonth.Name                  = "cmbMonth";
     this.cmbMonth.Size                  = new System.Drawing.Size(88, 21);
     this.cmbMonth.TabIndex              = 3;
     this.cmbMonth.Text                  = "1";
     this.cmbMonth.SelectedValueChanged += new System.EventHandler(this.cmbMonth_SelectedValueChanged);
     //
     // cmbYear
     //
     this.cmbYear.Items.AddRange(new object[] {
         "2000",
         "2001",
         "2002",
         "2003",
         "2004",
         "2005",
         "2006",
         "2007",
         "2008",
         "2009",
         "2010"
     });
     this.cmbYear.Location              = new System.Drawing.Point(56, 16);
     this.cmbYear.Name                  = "cmbYear";
     this.cmbYear.Size                  = new System.Drawing.Size(121, 21);
     this.cmbYear.TabIndex              = 4;
     this.cmbYear.Text                  = "2008";
     this.cmbYear.SelectedValueChanged += new System.EventHandler(this.cmbYear_SelectedValueChanged);
     //
     // cmbInstructor
     //
     this.cmbInstructor.Location = new System.Drawing.Point(458, 19);
     this.cmbInstructor.Name     = "cmbInstructor";
     this.cmbInstructor.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.cmbInstructor.Size                  = new System.Drawing.Size(160, 20);
     this.cmbInstructor.TabIndex              = 54;
     this.cmbInstructor.SelectedValueChanged += new System.EventHandler(this.cmbInstructor_SelectedValueChanged);
     //
     // label3
     //
     this.label3.Font      = new System.Drawing.Font("Microsoft Sans Serif", 8.5F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label3.Location  = new System.Drawing.Point(364, 18);
     this.label3.Name      = "label3";
     this.label3.Size      = new System.Drawing.Size(88, 18);
     this.label3.TabIndex  = 53;
     this.label3.Text      = "Instructor";
     this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // cmbBranch
     //
     this.cmbBranch.Location = new System.Drawing.Point(688, 16);
     this.cmbBranch.Name     = "cmbBranch";
     this.cmbBranch.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.cmbBranch.Size     = new System.Drawing.Size(165, 20);
     this.cmbBranch.TabIndex = 55;
     //
     // label4
     //
     this.label4.Font      = new System.Drawing.Font("Microsoft Sans Serif", 8.5F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label4.Location  = new System.Drawing.Point(624, 5);
     this.label4.Name      = "label4";
     this.label4.Size      = new System.Drawing.Size(56, 40);
     this.label4.TabIndex  = 56;
     this.label4.Text      = "Branch";
     this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // gridControl1
     //
     this.gridControl1.EmbeddedNavigator.Name     = "";
     this.gridControl1.FormsUseDefaultLookAndFeel = false;
     this.gridControl1.Location = new System.Drawing.Point(11, 45);
     this.gridControl1.MainView = this.gridView1;
     this.gridControl1.Name     = "gridControl1";
     this.gridControl1.Size     = new System.Drawing.Size(1000, 512);
     this.gridControl1.TabIndex = 57;
     this.gridControl1.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
         this.gridView1,
         this.gridView2
     });
     //
     // 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.gridColumn8,
         this.gridColumn9
     });
     this.gridView1.GridControl = this.gridControl1;
     this.gridView1.Name        = "gridView1";
     this.gridView1.OptionsBehavior.Editable = false;
     //
     // gridColumn1
     //
     this.gridColumn1.Caption      = "No.";
     this.gridColumn1.FieldName    = "No";
     this.gridColumn1.Name         = "gridColumn1";
     this.gridColumn1.Visible      = true;
     this.gridColumn1.VisibleIndex = 0;
     //
     // gridColumn2
     //
     this.gridColumn2.Caption      = "Date";
     this.gridColumn2.FieldName    = "dtdate";
     this.gridColumn2.Name         = "gridColumn2";
     this.gridColumn2.Visible      = true;
     this.gridColumn2.VisibleIndex = 1;
     //
     // gridColumn3
     //
     this.gridColumn3.Caption      = "Branch";
     this.gridColumn3.FieldName    = "strBranchCode";
     this.gridColumn3.Name         = "gridColumn3";
     this.gridColumn3.Visible      = true;
     this.gridColumn3.VisibleIndex = 2;
     //
     // gridColumn4
     //
     this.gridColumn4.Caption = "Start Time";
     this.gridColumn4.DisplayFormat.FormatString = "T";
     this.gridColumn4.DisplayFormat.FormatType   = DevExpress.Utils.FormatType.DateTime;
     this.gridColumn4.FieldName    = "dtStartTime";
     this.gridColumn4.Name         = "gridColumn4";
     this.gridColumn4.Visible      = true;
     this.gridColumn4.VisibleIndex = 3;
     //
     // gridColumn5
     //
     this.gridColumn5.Caption = "End Time";
     this.gridColumn5.DisplayFormat.FormatString = "t";
     this.gridColumn5.DisplayFormat.FormatType   = DevExpress.Utils.FormatType.DateTime;
     this.gridColumn5.FieldName    = "dtEndTime";
     this.gridColumn5.Name         = "gridColumn5";
     this.gridColumn5.Visible      = true;
     this.gridColumn5.VisibleIndex = 4;
     //
     // gridColumn6
     //
     this.gridColumn6.Caption      = "Class Code";
     this.gridColumn6.FieldName    = "strClassCode";
     this.gridColumn6.Name         = "gridColumn6";
     this.gridColumn6.Visible      = true;
     this.gridColumn6.VisibleIndex = 5;
     //
     // gridColumn7
     //
     this.gridColumn7.Caption      = "Attendees";
     this.gridColumn7.FieldName    = "Attendance";
     this.gridColumn7.Name         = "gridColumn7";
     this.gridColumn7.Visible      = true;
     this.gridColumn7.VisibleIndex = 6;
     //
     // gridColumn8
     //
     this.gridColumn8.Caption = "Login Time";
     this.gridColumn8.DisplayFormat.FormatString = "t";
     this.gridColumn8.DisplayFormat.FormatType   = DevExpress.Utils.FormatType.DateTime;
     this.gridColumn8.FieldName    = "dtInstructorLogin";
     this.gridColumn8.Name         = "gridColumn8";
     this.gridColumn8.Visible      = true;
     this.gridColumn8.VisibleIndex = 7;
     //
     // gridColumn9
     //
     this.gridColumn9.Caption      = "Fees";
     this.gridColumn9.FieldName    = "mInstructorFees";
     this.gridColumn9.Name         = "gridColumn9";
     this.gridColumn9.Visible      = true;
     this.gridColumn9.VisibleIndex = 8;
     //
     // gridView2
     //
     this.gridView2.GridControl = this.gridControl1;
     this.gridView2.Name        = "gridView2";
     //
     // simpleButton1
     //
     this.simpleButton1.Appearance.Font            = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.simpleButton1.Appearance.Options.UseFont = true;
     this.simpleButton1.Location = new System.Drawing.Point(881, 16);
     this.simpleButton1.Name     = "simpleButton1";
     this.simpleButton1.Size     = new System.Drawing.Size(75, 23);
     this.simpleButton1.TabIndex = 58;
     this.simpleButton1.Text     = "Print";
     this.simpleButton1.Click   += new System.EventHandler(this.simpleButton1_Click);
     //
     // RPInsturctorSalary
     //
     this.ClientSize = new System.Drawing.Size(968, 558);
     this.Controls.Add(this.simpleButton1);
     this.Controls.Add(this.gridControl1);
     this.Controls.Add(this.cmbBranch);
     this.Controls.Add(this.label4);
     this.Controls.Add(this.cmbInstructor);
     this.Controls.Add(this.label3);
     this.Controls.Add(this.cmbYear);
     this.Controls.Add(this.cmbMonth);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.label1);
     this.Name        = "RPInsturctorSalary";
     this.Text        = "Instructor Salary Report";
     this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
     this.Load       += new System.EventHandler(this.RPInsturctorSalary_Load);
     ((System.ComponentModel.ISupportInitialize)(this.cmbInstructor.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbBranch.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView2)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MenuManageForm));
     this.layoutControl1 = new DevExpress.XtraLayout.LayoutControl();
     this.dataLayoutControl1 = new DevExpress.XtraDataLayout.DataLayoutControl();
     this.btnAddChild = new DevExpress.XtraEditors.SimpleButton();
     this.btnAdd = new DevExpress.XtraEditors.SimpleButton();
     this.btnDel = new DevExpress.XtraEditors.SimpleButton();
     this.MenuControlComboBoxEdit = new DevExpress.XtraEditors.ImageComboBoxEdit();
     this.bindingSource1 = new System.Windows.Forms.BindingSource();
     this.btnClose = new DevExpress.XtraEditors.SimpleButton();
     this.btnSave = new DevExpress.XtraEditors.SimpleButton();
     this.MenuNoTextEdit = new DevExpress.XtraEditors.TextEdit();
     this.MenuNameTextEdit = new DevExpress.XtraEditors.TextEdit();
     this.OrderSpinEdit = new DevExpress.XtraEditors.SpinEdit();
     this.GlyphMemoEdit = new DevExpress.XtraEditors.MemoEdit();
     this.OnClickMemoEdit = new DevExpress.XtraEditors.MemoEdit();
     this.KeyTipTextEdit = new DevExpress.XtraEditors.TextEdit();
     this.PNoTextEdit = new DevExpress.XtraEditors.TextEdit();
     this.Root = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlGroup2 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.ItemForMenuNo = new DevExpress.XtraLayout.LayoutControlItem();
     this.ItemForMenuName = new DevExpress.XtraLayout.LayoutControlItem();
     this.ItemForOrder = new DevExpress.XtraLayout.LayoutControlItem();
     this.ItemForGlyph = new DevExpress.XtraLayout.LayoutControlItem();
     this.ItemForOnClick = new DevExpress.XtraLayout.LayoutControlItem();
     this.ItemForKeyTip = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem3 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem4 = new DevExpress.XtraLayout.LayoutControlItem();
     this.emptySpaceItem1 = new DevExpress.XtraLayout.EmptySpaceItem();
     this.ItemForMenuControl = new DevExpress.XtraLayout.LayoutControlItem();
     this.ItemForPNo = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem5 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem6 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem7 = new DevExpress.XtraLayout.LayoutControlItem();
     this.treeList1 = new DevExpress.XtraTreeList.TreeList();
     this.tcolMenuName = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.layoutControlGroup1 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlItem1 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem2 = new DevExpress.XtraLayout.LayoutControlItem();
     this.formLoadErrorExit1 = new FengSharp.OneCardAccess.Infrastructure.WinForm.Components.FormLoadErrorExit();
     this.treeList_ShowLine1 = new FengSharp.WinForm.Dev.Components.TreeList_ShowLine();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl1)).BeginInit();
     this.layoutControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dataLayoutControl1)).BeginInit();
     this.dataLayoutControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.MenuControlComboBoxEdit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.MenuNoTextEdit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.MenuNameTextEdit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.OrderSpinEdit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.GlyphMemoEdit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.OnClickMemoEdit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.KeyTipTextEdit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.PNoTextEdit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Root)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemForMenuNo)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemForMenuName)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemForOrder)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemForGlyph)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemForOnClick)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemForKeyTip)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemForMenuControl)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemForPNo)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem6)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem7)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.treeList1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).BeginInit();
     this.SuspendLayout();
     //
     // layoutControl1
     //
     this.layoutControl1.Controls.Add(this.dataLayoutControl1);
     this.layoutControl1.Controls.Add(this.treeList1);
     this.layoutControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.layoutControl1.Location = new System.Drawing.Point(0, 0);
     this.layoutControl1.Name = "layoutControl1";
     this.layoutControl1.OptionsCustomizationForm.DesignTimeCustomizationFormPositionAndSize = new System.Drawing.Rectangle(351, 319, 551, 543);
     this.layoutControl1.OptionsItemText.TextAlignMode = DevExpress.XtraLayout.TextAlignMode.AlignInGroups;
     this.layoutControl1.Root = this.layoutControlGroup1;
     this.layoutControl1.Size = new System.Drawing.Size(997, 496);
     this.layoutControl1.TabIndex = 0;
     this.layoutControl1.Text = "layoutControl1";
     //
     // dataLayoutControl1
     //
     this.dataLayoutControl1.Controls.Add(this.btnAddChild);
     this.dataLayoutControl1.Controls.Add(this.btnAdd);
     this.dataLayoutControl1.Controls.Add(this.btnDel);
     this.dataLayoutControl1.Controls.Add(this.MenuControlComboBoxEdit);
     this.dataLayoutControl1.Controls.Add(this.btnClose);
     this.dataLayoutControl1.Controls.Add(this.btnSave);
     this.dataLayoutControl1.Controls.Add(this.MenuNoTextEdit);
     this.dataLayoutControl1.Controls.Add(this.MenuNameTextEdit);
     this.dataLayoutControl1.Controls.Add(this.OrderSpinEdit);
     this.dataLayoutControl1.Controls.Add(this.GlyphMemoEdit);
     this.dataLayoutControl1.Controls.Add(this.OnClickMemoEdit);
     this.dataLayoutControl1.Controls.Add(this.KeyTipTextEdit);
     this.dataLayoutControl1.Controls.Add(this.PNoTextEdit);
     this.dataLayoutControl1.DataSource = this.bindingSource1;
     this.dataLayoutControl1.Location = new System.Drawing.Point(366, 6);
     this.dataLayoutControl1.Name = "dataLayoutControl1";
     this.dataLayoutControl1.OptionsCustomizationForm.DesignTimeCustomizationFormPositionAndSize = new System.Drawing.Rectangle(446, 375, 456, 528);
     this.dataLayoutControl1.OptionsItemText.TextAlignMode = DevExpress.XtraLayout.TextAlignMode.AlignInGroups;
     this.dataLayoutControl1.Root = this.Root;
     this.dataLayoutControl1.Size = new System.Drawing.Size(625, 484);
     this.dataLayoutControl1.TabIndex = 5;
     this.dataLayoutControl1.Text = "dataLayoutControl1";
     //
     // btnAddChild
     //
     this.btnAddChild.Image = ((System.Drawing.Image)(resources.GetObject("btnAddChild.Image")));
     this.btnAddChild.ImageToTextAlignment = DevExpress.XtraEditors.ImageAlignToText.LeftCenter;
     this.btnAddChild.Location = new System.Drawing.Point(201, 446);
     this.btnAddChild.Name = "btnAddChild";
     this.btnAddChild.Size = new System.Drawing.Size(100, 26);
     this.btnAddChild.StyleController = this.dataLayoutControl1;
     this.btnAddChild.TabIndex = 14;
     this.btnAddChild.Text = "新增子级";
     this.btnAddChild.Click += new System.EventHandler(this.btnAddChild_Click);
     //
     // btnAdd
     //
     this.btnAdd.Image = ((System.Drawing.Image)(resources.GetObject("btnAdd.Image")));
     this.btnAdd.ImageToTextAlignment = DevExpress.XtraEditors.ImageAlignToText.LeftCenter;
     this.btnAdd.Location = new System.Drawing.Point(97, 446);
     this.btnAdd.Name = "btnAdd";
     this.btnAdd.Size = new System.Drawing.Size(100, 26);
     this.btnAdd.StyleController = this.dataLayoutControl1;
     this.btnAdd.TabIndex = 13;
     this.btnAdd.Text = "新增同级";
     this.btnAdd.Click += new System.EventHandler(this.btnAdd_Click);
     //
     // btnDel
     //
     this.btnDel.Image = ((System.Drawing.Image)(resources.GetObject("btnDel.Image")));
     this.btnDel.ImageToTextAlignment = DevExpress.XtraEditors.ImageAlignToText.LeftCenter;
     this.btnDel.Location = new System.Drawing.Point(305, 446);
     this.btnDel.Name = "btnDel";
     this.btnDel.Size = new System.Drawing.Size(100, 26);
     this.btnDel.StyleController = this.dataLayoutControl1;
     this.btnDel.TabIndex = 14;
     this.btnDel.Text = "删除(&D)";
     this.btnDel.Click += new System.EventHandler(this.btnDel_Click);
     //
     // MenuControlComboBoxEdit
     //
     this.MenuControlComboBoxEdit.DataBindings.Add(new System.Windows.Forms.Binding("EditValue", this.bindingSource1, "MenuControl", true));
     this.MenuControlComboBoxEdit.Location = new System.Drawing.Point(87, 84);
     this.MenuControlComboBoxEdit.Name = "MenuControlComboBoxEdit";
     this.MenuControlComboBoxEdit.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.MenuControlComboBoxEdit.Properties.Items.AddRange(new DevExpress.XtraEditors.Controls.ImageComboBoxItem[] {
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("RibbonPage", "RibbonPage", -1),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("RibbonPageGroup", "RibbonPageGroup", -1),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("BarSubItem", "BarSubItem", -1),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("BarItem", "BarItem", -1)});
     this.MenuControlComboBoxEdit.Properties.NullValuePrompt = null;
     this.MenuControlComboBoxEdit.Size = new System.Drawing.Size(526, 20);
     this.MenuControlComboBoxEdit.StyleController = this.dataLayoutControl1;
     this.MenuControlComboBoxEdit.TabIndex = 9;
     //
     // bindingSource1
     //
     this.bindingSource1.DataSource = typeof(FengSharp.OneCardAccess.Domain.RBACModule.Entity.MenuEntity);
     //
     // btnClose
     //
     this.btnClose.Image = ((System.Drawing.Image)(resources.GetObject("btnClose.Image")));
     this.btnClose.ImageToTextAlignment = DevExpress.XtraEditors.ImageAlignToText.LeftCenter;
     this.btnClose.Location = new System.Drawing.Point(513, 446);
     this.btnClose.Name = "btnClose";
     this.btnClose.Size = new System.Drawing.Size(100, 26);
     this.btnClose.StyleController = this.dataLayoutControl1;
     this.btnClose.TabIndex = 13;
     this.btnClose.Text = "关闭(&C)";
     this.btnClose.Click += new System.EventHandler(this.btnClose_Click);
     //
     // btnSave
     //
     this.btnSave.Image = ((System.Drawing.Image)(resources.GetObject("btnSave.Image")));
     this.btnSave.ImageToTextAlignment = DevExpress.XtraEditors.ImageAlignToText.LeftCenter;
     this.btnSave.Location = new System.Drawing.Point(409, 446);
     this.btnSave.Name = "btnSave";
     this.btnSave.Size = new System.Drawing.Size(100, 26);
     this.btnSave.StyleController = this.dataLayoutControl1;
     this.btnSave.TabIndex = 12;
     this.btnSave.Text = "保存(&S)";
     this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
     //
     // MenuNoTextEdit
     //
     this.MenuNoTextEdit.DataBindings.Add(new System.Windows.Forms.Binding("EditValue", this.bindingSource1, "MenuNo", true));
     this.MenuNoTextEdit.Location = new System.Drawing.Point(87, 12);
     this.MenuNoTextEdit.Name = "MenuNoTextEdit";
     this.MenuNoTextEdit.Properties.NullValuePrompt = null;
     this.MenuNoTextEdit.Properties.ReadOnly = true;
     this.MenuNoTextEdit.Size = new System.Drawing.Size(526, 20);
     this.MenuNoTextEdit.StyleController = this.dataLayoutControl1;
     this.MenuNoTextEdit.TabIndex = 4;
     //
     // MenuNameTextEdit
     //
     this.MenuNameTextEdit.DataBindings.Add(new System.Windows.Forms.Binding("EditValue", this.bindingSource1, "MenuName", true));
     this.MenuNameTextEdit.Location = new System.Drawing.Point(87, 60);
     this.MenuNameTextEdit.Name = "MenuNameTextEdit";
     this.MenuNameTextEdit.Properties.NullValuePrompt = null;
     this.MenuNameTextEdit.Size = new System.Drawing.Size(526, 20);
     this.MenuNameTextEdit.StyleController = this.dataLayoutControl1;
     this.MenuNameTextEdit.TabIndex = 5;
     //
     // OrderSpinEdit
     //
     this.OrderSpinEdit.DataBindings.Add(new System.Windows.Forms.Binding("EditValue", this.bindingSource1, "Order", true));
     this.OrderSpinEdit.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.OrderSpinEdit.Location = new System.Drawing.Point(87, 108);
     this.OrderSpinEdit.Name = "OrderSpinEdit";
     this.OrderSpinEdit.Properties.Appearance.Options.UseTextOptions = true;
     this.OrderSpinEdit.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.OrderSpinEdit.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.OrderSpinEdit.Properties.EditValueChangedFiringMode = DevExpress.XtraEditors.Controls.EditValueChangedFiringMode.Default;
     this.OrderSpinEdit.Properties.Mask.EditMask = "N0";
     this.OrderSpinEdit.Properties.Mask.UseMaskAsDisplayFormat = true;
     this.OrderSpinEdit.Properties.NullValuePrompt = null;
     this.OrderSpinEdit.Size = new System.Drawing.Size(526, 20);
     this.OrderSpinEdit.StyleController = this.dataLayoutControl1;
     this.OrderSpinEdit.TabIndex = 8;
     //
     // GlyphMemoEdit
     //
     this.GlyphMemoEdit.DataBindings.Add(new System.Windows.Forms.Binding("EditValue", this.bindingSource1, "Glyph", true));
     this.GlyphMemoEdit.Location = new System.Drawing.Point(87, 132);
     this.GlyphMemoEdit.Name = "GlyphMemoEdit";
     this.GlyphMemoEdit.Properties.NullValuePrompt = null;
     this.GlyphMemoEdit.Size = new System.Drawing.Size(526, 111);
     this.GlyphMemoEdit.StyleController = this.dataLayoutControl1;
     this.GlyphMemoEdit.TabIndex = 9;
     //
     // OnClickMemoEdit
     //
     this.OnClickMemoEdit.DataBindings.Add(new System.Windows.Forms.Binding("EditValue", this.bindingSource1, "OnClick", true));
     this.OnClickMemoEdit.Location = new System.Drawing.Point(87, 247);
     this.OnClickMemoEdit.Name = "OnClickMemoEdit";
     this.OnClickMemoEdit.Properties.NullValuePrompt = null;
     this.OnClickMemoEdit.Size = new System.Drawing.Size(526, 171);
     this.OnClickMemoEdit.StyleController = this.dataLayoutControl1;
     this.OnClickMemoEdit.TabIndex = 10;
     //
     // KeyTipTextEdit
     //
     this.KeyTipTextEdit.DataBindings.Add(new System.Windows.Forms.Binding("EditValue", this.bindingSource1, "KeyTip", true));
     this.KeyTipTextEdit.Location = new System.Drawing.Point(87, 422);
     this.KeyTipTextEdit.Name = "KeyTipTextEdit";
     this.KeyTipTextEdit.Properties.NullValuePrompt = null;
     this.KeyTipTextEdit.Size = new System.Drawing.Size(526, 20);
     this.KeyTipTextEdit.StyleController = this.dataLayoutControl1;
     this.KeyTipTextEdit.TabIndex = 11;
     //
     // PNoTextEdit
     //
     this.PNoTextEdit.DataBindings.Add(new System.Windows.Forms.Binding("EditValue", this.bindingSource1, "PNo", true));
     this.PNoTextEdit.Location = new System.Drawing.Point(87, 36);
     this.PNoTextEdit.Name = "PNoTextEdit";
     this.PNoTextEdit.Properties.NullValuePrompt = null;
     this.PNoTextEdit.Properties.ReadOnly = true;
     this.PNoTextEdit.Size = new System.Drawing.Size(526, 20);
     this.PNoTextEdit.StyleController = this.dataLayoutControl1;
     this.PNoTextEdit.TabIndex = 14;
     //
     // Root
     //
     this.Root.EnableIndentsWithoutBorders = DevExpress.Utils.DefaultBoolean.True;
     this.Root.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlGroup2});
     this.Root.Location = new System.Drawing.Point(0, 0);
     this.Root.Name = "Root";
     this.Root.Padding = new DevExpress.XtraLayout.Utils.Padding(3, 3, 3, 3);
     this.Root.Size = new System.Drawing.Size(625, 484);
     this.Root.TextVisible = false;
     //
     // layoutControlGroup2
     //
     this.layoutControlGroup2.AllowDrawBackground = false;
     this.layoutControlGroup2.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.ItemForMenuNo,
     this.ItemForMenuName,
     this.ItemForOrder,
     this.ItemForGlyph,
     this.ItemForOnClick,
     this.ItemForKeyTip,
     this.layoutControlItem3,
     this.layoutControlItem4,
     this.emptySpaceItem1,
     this.ItemForMenuControl,
     this.ItemForPNo,
     this.layoutControlItem5,
     this.layoutControlItem6,
     this.layoutControlItem7});
     this.layoutControlGroup2.Location = new System.Drawing.Point(0, 0);
     this.layoutControlGroup2.Name = "autoGeneratedGroup0";
     this.layoutControlGroup2.Padding = new DevExpress.XtraLayout.Utils.Padding(3, 3, 3, 3);
     this.layoutControlGroup2.Size = new System.Drawing.Size(617, 476);
     this.layoutControlGroup2.TextVisible = false;
     //
     // ItemForMenuNo
     //
     this.ItemForMenuNo.Control = this.MenuNoTextEdit;
     this.ItemForMenuNo.Location = new System.Drawing.Point(0, 0);
     this.ItemForMenuNo.Name = "ItemForMenuNo";
     this.ItemForMenuNo.Size = new System.Drawing.Size(605, 24);
     this.ItemForMenuNo.Text = "菜单编号";
     this.ItemForMenuNo.TextSize = new System.Drawing.Size(72, 13);
     //
     // ItemForMenuName
     //
     this.ItemForMenuName.Control = this.MenuNameTextEdit;
     this.ItemForMenuName.Location = new System.Drawing.Point(0, 48);
     this.ItemForMenuName.Name = "ItemForMenuName";
     this.ItemForMenuName.Size = new System.Drawing.Size(605, 24);
     this.ItemForMenuName.Text = "菜单名称";
     this.ItemForMenuName.TextSize = new System.Drawing.Size(72, 13);
     //
     // ItemForOrder
     //
     this.ItemForOrder.Control = this.OrderSpinEdit;
     this.ItemForOrder.Location = new System.Drawing.Point(0, 96);
     this.ItemForOrder.Name = "ItemForOrder";
     this.ItemForOrder.Size = new System.Drawing.Size(605, 24);
     this.ItemForOrder.Text = "菜单序号";
     this.ItemForOrder.TextSize = new System.Drawing.Size(72, 13);
     //
     // ItemForGlyph
     //
     this.ItemForGlyph.Control = this.GlyphMemoEdit;
     this.ItemForGlyph.Location = new System.Drawing.Point(0, 120);
     this.ItemForGlyph.Name = "ItemForGlyph";
     this.ItemForGlyph.Size = new System.Drawing.Size(605, 115);
     this.ItemForGlyph.StartNewLine = true;
     this.ItemForGlyph.Text = "显示图像";
     this.ItemForGlyph.TextSize = new System.Drawing.Size(72, 13);
     //
     // ItemForOnClick
     //
     this.ItemForOnClick.Control = this.OnClickMemoEdit;
     this.ItemForOnClick.Location = new System.Drawing.Point(0, 235);
     this.ItemForOnClick.Name = "ItemForOnClick";
     this.ItemForOnClick.Size = new System.Drawing.Size(605, 175);
     this.ItemForOnClick.StartNewLine = true;
     this.ItemForOnClick.Text = "点击事件";
     this.ItemForOnClick.TextSize = new System.Drawing.Size(72, 13);
     //
     // ItemForKeyTip
     //
     this.ItemForKeyTip.Control = this.KeyTipTextEdit;
     this.ItemForKeyTip.Location = new System.Drawing.Point(0, 410);
     this.ItemForKeyTip.Name = "ItemForKeyTip";
     this.ItemForKeyTip.Size = new System.Drawing.Size(605, 24);
     this.ItemForKeyTip.Text = "提示";
     this.ItemForKeyTip.TextSize = new System.Drawing.Size(72, 13);
     //
     // layoutControlItem3
     //
     this.layoutControlItem3.Control = this.btnSave;
     this.layoutControlItem3.Location = new System.Drawing.Point(397, 434);
     this.layoutControlItem3.MaxSize = new System.Drawing.Size(104, 30);
     this.layoutControlItem3.MinSize = new System.Drawing.Size(104, 30);
     this.layoutControlItem3.Name = "layoutControlItem3";
     this.layoutControlItem3.Size = new System.Drawing.Size(104, 30);
     this.layoutControlItem3.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem3.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem3.TextVisible = false;
     //
     // layoutControlItem4
     //
     this.layoutControlItem4.Control = this.btnClose;
     this.layoutControlItem4.Location = new System.Drawing.Point(501, 434);
     this.layoutControlItem4.MaxSize = new System.Drawing.Size(104, 30);
     this.layoutControlItem4.MinSize = new System.Drawing.Size(104, 30);
     this.layoutControlItem4.Name = "layoutControlItem4";
     this.layoutControlItem4.Size = new System.Drawing.Size(104, 30);
     this.layoutControlItem4.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem4.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem4.TextVisible = false;
     //
     // emptySpaceItem1
     //
     this.emptySpaceItem1.AllowHotTrack = false;
     this.emptySpaceItem1.Location = new System.Drawing.Point(0, 434);
     this.emptySpaceItem1.Name = "emptySpaceItem1";
     this.emptySpaceItem1.Size = new System.Drawing.Size(85, 30);
     this.emptySpaceItem1.TextSize = new System.Drawing.Size(0, 0);
     //
     // ItemForMenuControl
     //
     this.ItemForMenuControl.Control = this.MenuControlComboBoxEdit;
     this.ItemForMenuControl.Location = new System.Drawing.Point(0, 72);
     this.ItemForMenuControl.Name = "ItemForMenuControl";
     this.ItemForMenuControl.Size = new System.Drawing.Size(605, 24);
     this.ItemForMenuControl.Text = "菜单编程控件";
     this.ItemForMenuControl.TextSize = new System.Drawing.Size(72, 13);
     //
     // ItemForPNo
     //
     this.ItemForPNo.Control = this.PNoTextEdit;
     this.ItemForPNo.Location = new System.Drawing.Point(0, 24);
     this.ItemForPNo.Name = "ItemForPNo";
     this.ItemForPNo.Size = new System.Drawing.Size(605, 24);
     this.ItemForPNo.Text = "上级编号";
     this.ItemForPNo.TextSize = new System.Drawing.Size(72, 13);
     //
     // layoutControlItem5
     //
     this.layoutControlItem5.Control = this.btnDel;
     this.layoutControlItem5.Location = new System.Drawing.Point(293, 434);
     this.layoutControlItem5.MaxSize = new System.Drawing.Size(104, 30);
     this.layoutControlItem5.MinSize = new System.Drawing.Size(104, 30);
     this.layoutControlItem5.Name = "layoutControlItem5";
     this.layoutControlItem5.Size = new System.Drawing.Size(104, 30);
     this.layoutControlItem5.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem5.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem5.TextVisible = false;
     //
     // layoutControlItem6
     //
     this.layoutControlItem6.Control = this.btnAdd;
     this.layoutControlItem6.Location = new System.Drawing.Point(85, 434);
     this.layoutControlItem6.MaxSize = new System.Drawing.Size(104, 30);
     this.layoutControlItem6.MinSize = new System.Drawing.Size(104, 30);
     this.layoutControlItem6.Name = "layoutControlItem6";
     this.layoutControlItem6.Size = new System.Drawing.Size(104, 30);
     this.layoutControlItem6.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem6.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem6.TextVisible = false;
     //
     // layoutControlItem7
     //
     this.layoutControlItem7.Control = this.btnAddChild;
     this.layoutControlItem7.Location = new System.Drawing.Point(189, 434);
     this.layoutControlItem7.MaxSize = new System.Drawing.Size(104, 30);
     this.layoutControlItem7.MinSize = new System.Drawing.Size(104, 30);
     this.layoutControlItem7.Name = "layoutControlItem7";
     this.layoutControlItem7.Size = new System.Drawing.Size(104, 30);
     this.layoutControlItem7.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem7.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem7.TextVisible = false;
     //
     // treeList1
     //
     this.treeList1.Appearance.EvenRow.BackColor = System.Drawing.Color.LightYellow;
     this.treeList1.Appearance.EvenRow.Options.UseBackColor = true;
     this.treeList1.Appearance.OddRow.BackColor = System.Drawing.Color.White;
     this.treeList1.Appearance.OddRow.Options.UseBackColor = true;
     this.treeList1.Columns.AddRange(new DevExpress.XtraTreeList.Columns.TreeListColumn[] {
     this.tcolMenuName});
     this.treeList1.IndicatorWidth = 40;
     this.treeList1.KeyFieldName = "MenuNo";
     this.treeList_ShowLine1.SetLineNoFormatString(this.treeList1, "{0}");
     this.treeList1.Location = new System.Drawing.Point(6, 6);
     this.treeList1.Name = "treeList1";
     this.treeList1.OptionsBehavior.Editable = false;
     this.treeList1.OptionsBehavior.ReadOnly = true;
     this.treeList1.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.treeList1.OptionsSelection.UseIndicatorForSelection = true;
     this.treeList1.OptionsView.EnableAppearanceEvenRow = true;
     this.treeList1.OptionsView.EnableAppearanceOddRow = true;
     this.treeList1.ParentFieldName = "PNo";
     this.treeList_ShowLine1.SetShowLineNo(this.treeList1, true);
     this.treeList1.Size = new System.Drawing.Size(356, 484);
     this.treeList1.TabIndex = 4;
     //
     // tcolMenuName
     //
     this.tcolMenuName.Caption = "菜单名称";
     this.tcolMenuName.FieldName = "MenuName";
     this.tcolMenuName.Name = "tcolMenuName";
     this.tcolMenuName.Visible = true;
     this.tcolMenuName.VisibleIndex = 0;
     //
     // layoutControlGroup1
     //
     this.layoutControlGroup1.EnableIndentsWithoutBorders = DevExpress.Utils.DefaultBoolean.True;
     this.layoutControlGroup1.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlItem1,
     this.layoutControlItem2});
     this.layoutControlGroup1.Location = new System.Drawing.Point(0, 0);
     this.layoutControlGroup1.Name = "Root";
     this.layoutControlGroup1.Padding = new DevExpress.XtraLayout.Utils.Padding(3, 3, 3, 3);
     this.layoutControlGroup1.Size = new System.Drawing.Size(997, 496);
     this.layoutControlGroup1.TextVisible = false;
     //
     // layoutControlItem1
     //
     this.layoutControlItem1.Control = this.treeList1;
     this.layoutControlItem1.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem1.Name = "layoutControlItem1";
     this.layoutControlItem1.Size = new System.Drawing.Size(360, 488);
     this.layoutControlItem1.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem1.TextVisible = false;
     //
     // layoutControlItem2
     //
     this.layoutControlItem2.Control = this.dataLayoutControl1;
     this.layoutControlItem2.Location = new System.Drawing.Point(360, 0);
     this.layoutControlItem2.Name = "layoutControlItem2";
     this.layoutControlItem2.Size = new System.Drawing.Size(629, 488);
     this.layoutControlItem2.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem2.TextVisible = false;
     //
     // MenuManageForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(997, 496);
     this.Controls.Add(this.layoutControl1);
     this.formLoadErrorExit1.SetEnableLoadError(this, true);
     this.Name = "MenuManageForm";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text = "菜单权限设置";
     this.Load += new System.EventHandler(this.MenuManageForm_Load);
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl1)).EndInit();
     this.layoutControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.dataLayoutControl1)).EndInit();
     this.dataLayoutControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.MenuControlComboBoxEdit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.MenuNoTextEdit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.MenuNameTextEdit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.OrderSpinEdit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.GlyphMemoEdit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.OnClickMemoEdit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.KeyTipTextEdit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.PNoTextEdit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Root)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemForMenuNo)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemForMenuName)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemForOrder)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemForGlyph)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemForOnClick)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemForKeyTip)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemForMenuControl)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemForPNo)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem6)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem7)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.treeList1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).EndInit();
     this.ResumeLayout(false);
 }
Beispiel #54
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.label1 = new System.Windows.Forms.Label();
     this.label2 = new System.Windows.Forms.Label();
     this.label3 = new System.Windows.Forms.Label();
     this.label4 = new System.Windows.Forms.Label();
     this.label5 = new System.Windows.Forms.Label();
     this.label6 = new System.Windows.Forms.Label();
     this.gcRPLateness = 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.lkEmployee = new DevExpress.XtraEditors.LookUpEdit();
     this.lkBranch = new DevExpress.XtraEditors.LookUpEdit();
     this.sbtnReset = new DevExpress.XtraEditors.SimpleButton();
     this.dMonth = new DevExpress.XtraEditors.ImageComboBoxEdit();
     this.Year = new DevExpress.XtraEditors.ImageComboBoxEdit();
     this.ToMonth = new DevExpress.XtraEditors.ImageComboBoxEdit();
     this.ToYear = new DevExpress.XtraEditors.ImageComboBoxEdit();
     this.label7 = new System.Windows.Forms.Label();
     this.btnReset = new DevExpress.XtraEditors.SimpleButton();
     ((System.ComponentModel.ISupportInitialize)(this.gcRPLateness)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkEmployee.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkBranch.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dMonth.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Year.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ToMonth.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ToYear.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // label1
     //
     this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label1.Location = new System.Drawing.Point(120, 0);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(40, 16);
     this.label1.TabIndex = 3;
     this.label1.Text = "Year";
     //
     // label2
     //
     this.label2.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label2.Location = new System.Drawing.Point(8, 0);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(48, 16);
     this.label2.TabIndex = 4;
     this.label2.Text = "Month";
     //
     // label3
     //
     this.label3.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label3.Location = new System.Drawing.Point(256, 0);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(48, 16);
     this.label3.TabIndex = 5;
     this.label3.Text = "Month";
     //
     // label4
     //
     this.label4.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label4.Location = new System.Drawing.Point(368, 0);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(40, 16);
     this.label4.TabIndex = 6;
     this.label4.Text = "Year";
     //
     // label5
     //
     this.label5.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label5.Location = new System.Drawing.Point(8, 24);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(56, 16);
     this.label5.TabIndex = 7;
     this.label5.Text = "Branch";
     //
     // label6
     //
     this.label6.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label6.Location = new System.Drawing.Point(136, 24);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(72, 16);
     this.label6.TabIndex = 8;
     this.label6.Text = "Employee";
     //
     // gcRPLateness
     //
     this.gcRPLateness.Dock = System.Windows.Forms.DockStyle.Bottom;
     //
     // gcRPLateness.EmbeddedNavigator
     //
     this.gcRPLateness.EmbeddedNavigator.Name = "";
     this.gcRPLateness.Location = new System.Drawing.Point(0, 94);
     this.gcRPLateness.MainView = this.gridView1;
     this.gcRPLateness.Name = "gcRPLateness";
     this.gcRPLateness.Size = new System.Drawing.Size(976, 368);
     this.gcRPLateness.TabIndex = 10;
     this.gcRPLateness.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
                                                                                                 this.gridView1});
     //
     // gridView1
     //
     this.gridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
                                                                                      this.gridColumn1,
                                                                                      this.gridColumn2,
                                                                                      this.gridColumn3,
                                                                                      this.gridColumn4,
                                                                                      this.gridColumn5,
                                                                                      this.gridColumn6});
     this.gridView1.GridControl = this.gcRPLateness;
     this.gridView1.Name = "gridView1";
     this.gridView1.OptionsBehavior.Editable = false;
     this.gridView1.OptionsCustomization.AllowColumnMoving = false;
     this.gridView1.OptionsCustomization.AllowFilter = false;
     this.gridView1.OptionsCustomization.AllowSort = false;
     this.gridView1.OptionsView.ShowGroupPanel = false;
     //
     // gridColumn1
     //
     this.gridColumn1.Caption = "Branch";
     this.gridColumn1.FieldName = "strBranchCode";
     this.gridColumn1.Name = "gridColumn1";
     this.gridColumn1.Visible = true;
     this.gridColumn1.VisibleIndex = 0;
     this.gridColumn1.Width = 85;
     //
     // gridColumn2
     //
     this.gridColumn2.Caption = "Staff ID";
     this.gridColumn2.FieldName = "nEmployeeID";
     this.gridColumn2.Name = "gridColumn2";
     this.gridColumn2.Visible = true;
     this.gridColumn2.VisibleIndex = 1;
     this.gridColumn2.Width = 100;
     //
     // gridColumn3
     //
     this.gridColumn3.Caption = "Name";
     this.gridColumn3.FieldName = "strEmployeeName";
     this.gridColumn3.Name = "gridColumn3";
     this.gridColumn3.Visible = true;
     this.gridColumn3.VisibleIndex = 2;
     this.gridColumn3.Width = 89;
     //
     // gridColumn4
     //
     this.gridColumn4.Caption = "Year";
     this.gridColumn4.FieldName = "dYear";
     this.gridColumn4.Name = "gridColumn4";
     this.gridColumn4.Visible = true;
     this.gridColumn4.VisibleIndex = 3;
     this.gridColumn4.Width = 107;
     //
     // gridColumn5
     //
     this.gridColumn5.Caption = "Month";
     this.gridColumn5.FieldName = "MonDesc";
     this.gridColumn5.Name = "gridColumn5";
     this.gridColumn5.Visible = true;
     this.gridColumn5.VisibleIndex = 4;
     this.gridColumn5.Width = 90;
     //
     // gridColumn6
     //
     this.gridColumn6.Caption = "Total Lateness (Minute)";
     this.gridColumn6.FieldName = "lateness";
     this.gridColumn6.Name = "gridColumn6";
     this.gridColumn6.Visible = true;
     this.gridColumn6.VisibleIndex = 5;
     this.gridColumn6.Width = 93;
     //
     // lkEmployee
     //
     this.lkEmployee.Location = new System.Drawing.Point(208, 24);
     this.lkEmployee.Name = "lkEmployee";
     //
     // lkEmployee.Properties
     //
     this.lkEmployee.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                        new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lkEmployee.Size = new System.Drawing.Size(80, 20);
     this.lkEmployee.TabIndex = 11;
     //
     // lkBranch
     //
     this.lkBranch.Location = new System.Drawing.Point(64, 24);
     this.lkBranch.Name = "lkBranch";
     //
     // lkBranch.Properties
     //
     this.lkBranch.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                      new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lkBranch.Size = new System.Drawing.Size(72, 20);
     this.lkBranch.TabIndex = 12;
     //
     // sbtnReset
     //
     this.sbtnReset.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.sbtnReset.Appearance.Options.UseFont = true;
     this.sbtnReset.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.sbtnReset.Location = new System.Drawing.Point(296, 24);
     this.sbtnReset.LookAndFeel.UseDefaultLookAndFeel = false;
     this.sbtnReset.Name = "sbtnReset";
     this.sbtnReset.Size = new System.Drawing.Size(48, 16);
     this.sbtnReset.TabIndex = 177;
     this.sbtnReset.Text = "Enquiry";
     this.sbtnReset.Click += new System.EventHandler(this.sbtnReset_Click);
     //
     // dMonth
     //
     this.dMonth.EditValue = 1;
     this.dMonth.Location = new System.Drawing.Point(56, 0);
     this.dMonth.Name = "dMonth";
     //
     // dMonth.Properties
     //
     this.dMonth.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                    new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.dMonth.Properties.Items.AddRange(new object[] {
                                                            new DevExpress.XtraEditors.Controls.ImageComboBoxItem("January", 1, -1),
                                                            new DevExpress.XtraEditors.Controls.ImageComboBoxItem("February", 2, -1),
                                                            new DevExpress.XtraEditors.Controls.ImageComboBoxItem("March", 3, -1),
                                                            new DevExpress.XtraEditors.Controls.ImageComboBoxItem("April", 4, -1),
                                                            new DevExpress.XtraEditors.Controls.ImageComboBoxItem("May", 5, -1),
                                                            new DevExpress.XtraEditors.Controls.ImageComboBoxItem("June", 6, -1),
                                                            new DevExpress.XtraEditors.Controls.ImageComboBoxItem("July", 7, -1),
                                                            new DevExpress.XtraEditors.Controls.ImageComboBoxItem("August", 8, -1),
                                                            new DevExpress.XtraEditors.Controls.ImageComboBoxItem("September", 9, -1),
                                                            new DevExpress.XtraEditors.Controls.ImageComboBoxItem("October", 10, -1),
                                                            new DevExpress.XtraEditors.Controls.ImageComboBoxItem("November", 11, -1),
                                                            new DevExpress.XtraEditors.Controls.ImageComboBoxItem("December", 12, -1)});
     this.dMonth.Size = new System.Drawing.Size(64, 20);
     this.dMonth.TabIndex = 178;
     //
     // Year
     //
     this.Year.Location = new System.Drawing.Point(160, 0);
     this.Year.Name = "Year";
     //
     // Year.Properties
     //
     this.Year.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                  new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.Year.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.Year.Size = new System.Drawing.Size(72, 22);
     this.Year.TabIndex = 179;
     //
     // ToMonth
     //
     this.ToMonth.EditValue = 1;
     this.ToMonth.Location = new System.Drawing.Point(304, 0);
     this.ToMonth.Name = "ToMonth";
     //
     // ToMonth.Properties
     //
     this.ToMonth.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.ToMonth.Properties.Items.AddRange(new object[] {
                                                             new DevExpress.XtraEditors.Controls.ImageComboBoxItem("January", 1, -1),
                                                             new DevExpress.XtraEditors.Controls.ImageComboBoxItem("February", 2, -1),
                                                             new DevExpress.XtraEditors.Controls.ImageComboBoxItem("March", 3, -1),
                                                             new DevExpress.XtraEditors.Controls.ImageComboBoxItem("April", 4, -1),
                                                             new DevExpress.XtraEditors.Controls.ImageComboBoxItem("May", 5, -1),
                                                             new DevExpress.XtraEditors.Controls.ImageComboBoxItem("June", 6, -1),
                                                             new DevExpress.XtraEditors.Controls.ImageComboBoxItem("July", 7, -1),
                                                             new DevExpress.XtraEditors.Controls.ImageComboBoxItem("August", 8, -1),
                                                             new DevExpress.XtraEditors.Controls.ImageComboBoxItem("September", 9, -1),
                                                             new DevExpress.XtraEditors.Controls.ImageComboBoxItem("October", 10, -1),
                                                             new DevExpress.XtraEditors.Controls.ImageComboBoxItem("November", 11, -1),
                                                             new DevExpress.XtraEditors.Controls.ImageComboBoxItem("December", 12, -1)});
     this.ToMonth.Size = new System.Drawing.Size(64, 20);
     this.ToMonth.TabIndex = 180;
     //
     // ToYear
     //
     this.ToYear.Location = new System.Drawing.Point(408, 0);
     this.ToYear.Name = "ToYear";
     //
     // ToYear.Properties
     //
     this.ToYear.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                    new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.ToYear.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.ToYear.Size = new System.Drawing.Size(72, 22);
     this.ToYear.TabIndex = 181;
     //
     // label7
     //
     this.label7.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label7.Location = new System.Drawing.Point(232, 0);
     this.label7.Name = "label7";
     this.label7.Size = new System.Drawing.Size(24, 16);
     this.label7.TabIndex = 182;
     this.label7.Text = "To";
     //
     // btnReset
     //
     this.btnReset.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.btnReset.Appearance.Options.UseFont = true;
     this.btnReset.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnReset.Location = new System.Drawing.Point(352, 24);
     this.btnReset.LookAndFeel.UseDefaultLookAndFeel = false;
     this.btnReset.Name = "btnReset";
     this.btnReset.Size = new System.Drawing.Size(48, 16);
     this.btnReset.TabIndex = 183;
     this.btnReset.Text = "Reset";
     this.btnReset.Click += new System.EventHandler(this.btnReset_Click);
     //
     // RPLateness
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize = new System.Drawing.Size(976, 462);
     this.Controls.Add(this.btnReset);
     this.Controls.Add(this.label7);
     this.Controls.Add(this.ToYear);
     this.Controls.Add(this.ToMonth);
     this.Controls.Add(this.Year);
     this.Controls.Add(this.dMonth);
     this.Controls.Add(this.sbtnReset);
     this.Controls.Add(this.lkBranch);
     this.Controls.Add(this.lkEmployee);
     this.Controls.Add(this.gcRPLateness);
     this.Controls.Add(this.label6);
     this.Controls.Add(this.label5);
     this.Controls.Add(this.label4);
     this.Controls.Add(this.label3);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.label1);
     this.Name = "RPLateness";
     this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide;
     this.Text = "Lateness";
     this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
     this.Load += new System.EventHandler(this.RPLateness_Load);
     ((System.ComponentModel.ISupportInitialize)(this.gcRPLateness)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkEmployee.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkBranch.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dMonth.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Year.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ToMonth.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ToYear.Properties)).EndInit();
     this.ResumeLayout(false);
 }
Beispiel #55
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(frmTimeSheetMain));
     this.groupTimeSheet = new DevExpress.XtraEditors.GroupControl();
     this.sbtnSave = new DevExpress.XtraEditors.SimpleButton();
     this.ddlMember = new DevExpress.XtraEditors.ImageComboBoxEdit();
     this.btnAdd = new DevExpress.XtraEditors.SimpleButton();
     this.imageList1 = new System.Windows.Forms.ImageList(this.components);
     this.btnDelete = new DevExpress.XtraEditors.SimpleButton();
     this.gridctrTimesheet = new DevExpress.XtraGrid.GridControl();
     this.gvTimeSheet = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colTimesheetDate = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colTimesheetRosterIn = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colTimesheetRosterOut = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colTimesheetBranchFirstTimeIn = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colTimesheetBranchLastTimeOut = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colTimesheetFirstTimeIn = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colTimesheetLastTimeOut = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colTimesheetManagerNameIn = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colTimesheetManagerNameOut = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colTimesheetLateness = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemCheckEdit2 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.colTimesheetTotalLateness = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colRemark = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Rosterid = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemTextEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.repositoryItemSpinEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemSpinEdit();
     this.groupTimeSheetDetails = new DevExpress.XtraEditors.GroupControl();
     this.gridctrTimeCard = new DevExpress.XtraGrid.GridControl();
     this.gvTimeCard = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colTimesheetDetailBranch = new DevExpress.XtraGrid.Columns.GridColumn();
     this.lkedtBranch2 = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.colTimesheetDetailDate = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colTimesheetDetailTime = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemTimeEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemTimeEdit();
     this.colTimesheetDetailRemarks = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colTimesheetDetailManager = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colTimesheetDetailEntryID = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colTimesheetDetailEmployeeID = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemLookUpEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.repositoryItemButtonEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.sbtnEnquiry = new DevExpress.XtraEditors.SimpleButton();
     this.cmbBranch = new DevExpress.XtraEditors.ImageComboBoxEdit();
     this.label1 = new System.Windows.Forms.Label();
     this.Month = new DevExpress.XtraEditors.ImageComboBoxEdit();
     this.Year = new DevExpress.XtraEditors.ImageComboBoxEdit();
     this.label158 = new System.Windows.Forms.Label();
     this.label25 = new System.Windows.Forms.Label();
     this.label5 = new System.Windows.Forms.Label();
     ((System.ComponentModel.ISupportInitialize)(this.groupTimeSheet)).BeginInit();
     this.groupTimeSheet.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ddlMember.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridctrTimesheet)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvTimeSheet)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemSpinEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupTimeSheetDetails)).BeginInit();
     this.groupTimeSheetDetails.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridctrTimeCard)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvTimeCard)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkedtBranch2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTimeEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbBranch.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Month.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Year.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // groupTimeSheet
     //
     this.groupTimeSheet.Appearance.BackColor = System.Drawing.SystemColors.Control;
     this.groupTimeSheet.Appearance.Options.UseBackColor = true;
     this.groupTimeSheet.Controls.Add(this.sbtnSave);
     this.groupTimeSheet.Controls.Add(this.ddlMember);
     this.groupTimeSheet.Controls.Add(this.btnAdd);
     this.groupTimeSheet.Controls.Add(this.btnDelete);
     this.groupTimeSheet.Controls.Add(this.gridctrTimesheet);
     this.groupTimeSheet.Controls.Add(this.groupTimeSheetDetails);
     this.groupTimeSheet.Controls.Add(this.sbtnEnquiry);
     this.groupTimeSheet.Controls.Add(this.cmbBranch);
     this.groupTimeSheet.Controls.Add(this.label1);
     this.groupTimeSheet.Controls.Add(this.Month);
     this.groupTimeSheet.Controls.Add(this.Year);
     this.groupTimeSheet.Controls.Add(this.label158);
     this.groupTimeSheet.Controls.Add(this.label25);
     this.groupTimeSheet.Controls.Add(this.label5);
     this.groupTimeSheet.Dock = System.Windows.Forms.DockStyle.Fill;
     this.groupTimeSheet.Location = new System.Drawing.Point(0, 0);
     this.groupTimeSheet.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.groupTimeSheet.LookAndFeel.UseDefaultLookAndFeel = false;
     this.groupTimeSheet.LookAndFeel.UseWindowsXPTheme = false;
     this.groupTimeSheet.Name = "groupTimeSheet";
     this.groupTimeSheet.Size = new System.Drawing.Size(920, 584);
     this.groupTimeSheet.TabIndex = 28;
     this.groupTimeSheet.Text = "Timesheet";
     //
     // sbtnSave
     //
     this.sbtnSave.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.sbtnSave.Enabled = false;
     this.sbtnSave.Location = new System.Drawing.Point(80, 320);
     this.sbtnSave.Name = "sbtnSave";
     this.sbtnSave.TabIndex = 182;
     this.sbtnSave.Text = "Save";
     this.sbtnSave.Click += new System.EventHandler(this.sbtnSave_Click);
     //
     // ddlMember
     //
     this.ddlMember.Location = new System.Drawing.Point(568, 32);
     this.ddlMember.Name = "ddlMember";
     //
     // ddlMember.Properties
     //
     this.ddlMember.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Style3D;
     this.ddlMember.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                       new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.ddlMember.Size = new System.Drawing.Size(176, 22);
     this.ddlMember.TabIndex = 181;
     //
     // btnAdd
     //
     this.btnAdd.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.btnAdd.Appearance.Options.UseFont = true;
     this.btnAdd.Appearance.Options.UseTextOptions = true;
     this.btnAdd.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.btnAdd.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.btnAdd.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.btnAdd.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.btnAdd.ImageIndex = 0;
     this.btnAdd.ImageList = this.imageList1;
     this.btnAdd.ImeMode = System.Windows.Forms.ImeMode.On;
     this.btnAdd.Location = new System.Drawing.Point(8, 320);
     this.btnAdd.LookAndFeel.UseDefaultLookAndFeel = false;
     this.btnAdd.Name = "btnAdd";
     this.btnAdd.Size = new System.Drawing.Size(30, 24);
     this.btnAdd.TabIndex = 180;
     this.btnAdd.Click += new System.EventHandler(this.btnAdd_Click);
     //
     // imageList1
     //
     this.imageList1.ColorDepth = System.Windows.Forms.ColorDepth.Depth24Bit;
     this.imageList1.ImageSize = new System.Drawing.Size(16, 16);
     this.imageList1.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
     this.imageList1.TransparentColor = System.Drawing.Color.Magenta;
     //
     // btnDelete
     //
     this.btnDelete.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.btnDelete.Appearance.Options.UseFont = true;
     this.btnDelete.Appearance.Options.UseTextOptions = true;
     this.btnDelete.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.btnDelete.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.btnDelete.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.btnDelete.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.btnDelete.ImageIndex = 1;
     this.btnDelete.ImageList = this.imageList1;
     this.btnDelete.Location = new System.Drawing.Point(40, 320);
     this.btnDelete.LookAndFeel.UseDefaultLookAndFeel = false;
     this.btnDelete.Name = "btnDelete";
     this.btnDelete.Size = new System.Drawing.Size(30, 24);
     this.btnDelete.TabIndex = 179;
     this.btnDelete.Click += new System.EventHandler(this.btnDelete_Click);
     //
     // gridctrTimesheet
     //
     this.gridctrTimesheet.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
         | System.Windows.Forms.AnchorStyles.Right)));
     //
     // gridctrTimesheet.EmbeddedNavigator
     //
     this.gridctrTimesheet.EmbeddedNavigator.Name = "";
     this.gridctrTimesheet.Location = new System.Drawing.Point(-8, 56);
     this.gridctrTimesheet.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.gridctrTimesheet.LookAndFeel.UseDefaultLookAndFeel = false;
     this.gridctrTimesheet.LookAndFeel.UseWindowsXPTheme = false;
     this.gridctrTimesheet.MainView = this.gvTimeSheet;
     this.gridctrTimesheet.Name = "gridctrTimesheet";
     this.gridctrTimesheet.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
                                                                                                               this.repositoryItemCheckEdit2,
                                                                                                               this.repositoryItemTextEdit1,
                                                                                                               this.repositoryItemSpinEdit1});
     this.gridctrTimesheet.Size = new System.Drawing.Size(920, 248);
     this.gridctrTimesheet.TabIndex = 178;
     this.gridctrTimesheet.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
                                                                                                     this.gvTimeSheet});
     //
     // gvTimeSheet
     //
     this.gvTimeSheet.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
                                                                                        this.colTimesheetDate,
                                                                                        this.colTimesheetRosterIn,
                                                                                        this.colTimesheetRosterOut,
                                                                                        this.colTimesheetBranchFirstTimeIn,
                                                                                        this.colTimesheetBranchLastTimeOut,
                                                                                        this.colTimesheetFirstTimeIn,
                                                                                        this.colTimesheetLastTimeOut,
                                                                                        this.colTimesheetManagerNameIn,
                                                                                        this.colTimesheetManagerNameOut,
                                                                                        this.colTimesheetLateness,
                                                                                        this.colTimesheetTotalLateness,
                                                                                        this.colRemark,
                                                                                        this.Rosterid});
     this.gvTimeSheet.GridControl = this.gridctrTimesheet;
     this.gvTimeSheet.GroupFooterShowMode = DevExpress.XtraGrid.Views.Grid.GroupFooterShowMode.VisibleAlways;
     this.gvTimeSheet.GroupSummary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
                                                                                          new DevExpress.XtraGrid.GridGroupSummaryItem(DevExpress.Data.SummaryItemType.Sum, "nLateness", this.colTimesheetTotalLateness, "Total")});
     this.gvTimeSheet.Name = "gvTimeSheet";
     this.gvTimeSheet.OptionsBehavior.AllowIncrementalSearch = true;
     this.gvTimeSheet.OptionsCustomization.AllowFilter = false;
     this.gvTimeSheet.OptionsView.EnableAppearanceOddRow = true;
     this.gvTimeSheet.OptionsView.ShowFooter = true;
     this.gvTimeSheet.OptionsView.ShowGroupPanel = false;
     this.gvTimeSheet.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
                                                                                                 new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.colTimesheetDate, DevExpress.Data.ColumnSortOrder.Descending)});
     this.gvTimeSheet.RowStyle += new DevExpress.XtraGrid.Views.Grid.RowStyleEventHandler(this.gridViewTimeSheet_RowStyle);
     this.gvTimeSheet.FocusedRowChanged += new DevExpress.XtraGrid.Views.Base.FocusedRowChangedEventHandler(this.gvTimeSheet_FocusedRowChanged);
     //
     // colTimesheetDate
     //
     this.colTimesheetDate.Caption = "Date";
     this.colTimesheetDate.DisplayFormat.FormatString = "dd/MM/yyyy";
     this.colTimesheetDate.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.colTimesheetDate.FieldName = "dtDate";
     this.colTimesheetDate.Name = "colTimesheetDate";
     this.colTimesheetDate.OptionsColumn.AllowEdit = false;
     this.colTimesheetDate.Visible = true;
     this.colTimesheetDate.VisibleIndex = 0;
     this.colTimesheetDate.Width = 100;
     //
     // colTimesheetRosterIn
     //
     this.colTimesheetRosterIn.Caption = "Roster In";
     this.colTimesheetRosterIn.DisplayFormat.FormatString = "hh:mm tt";
     this.colTimesheetRosterIn.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.colTimesheetRosterIn.FieldName = "Expected Start Time";
     this.colTimesheetRosterIn.Name = "colTimesheetRosterIn";
     this.colTimesheetRosterIn.OptionsColumn.AllowEdit = false;
     this.colTimesheetRosterIn.Visible = true;
     this.colTimesheetRosterIn.VisibleIndex = 1;
     this.colTimesheetRosterIn.Width = 65;
     //
     // colTimesheetRosterOut
     //
     this.colTimesheetRosterOut.Caption = "Roster Out";
     this.colTimesheetRosterOut.DisplayFormat.FormatString = "hh:mm tt";
     this.colTimesheetRosterOut.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.colTimesheetRosterOut.FieldName = "Expected End Time";
     this.colTimesheetRosterOut.Name = "colTimesheetRosterOut";
     this.colTimesheetRosterOut.OptionsColumn.AllowEdit = false;
     this.colTimesheetRosterOut.Visible = true;
     this.colTimesheetRosterOut.VisibleIndex = 2;
     this.colTimesheetRosterOut.Width = 65;
     //
     // colTimesheetBranchFirstTimeIn
     //
     this.colTimesheetBranchFirstTimeIn.Caption = "Branch of First Time In";
     this.colTimesheetBranchFirstTimeIn.FieldName = "strBranchCodeIn";
     this.colTimesheetBranchFirstTimeIn.Name = "colTimesheetBranchFirstTimeIn";
     this.colTimesheetBranchFirstTimeIn.Width = 65;
     //
     // colTimesheetBranchLastTimeOut
     //
     this.colTimesheetBranchLastTimeOut.Caption = "Branch of Last Time Out";
     this.colTimesheetBranchLastTimeOut.FieldName = "strBranchCodeOut";
     this.colTimesheetBranchLastTimeOut.Name = "colTimesheetBranchLastTimeOut";
     this.colTimesheetBranchLastTimeOut.Width = 65;
     //
     // colTimesheetFirstTimeIn
     //
     this.colTimesheetFirstTimeIn.Caption = "Time (In)";
     this.colTimesheetFirstTimeIn.DisplayFormat.FormatString = "hh:mm tt";
     this.colTimesheetFirstTimeIn.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.colTimesheetFirstTimeIn.FieldName = "First Time In";
     this.colTimesheetFirstTimeIn.Name = "colTimesheetFirstTimeIn";
     this.colTimesheetFirstTimeIn.OptionsColumn.AllowEdit = false;
     this.colTimesheetFirstTimeIn.Visible = true;
     this.colTimesheetFirstTimeIn.VisibleIndex = 3;
     this.colTimesheetFirstTimeIn.Width = 65;
     //
     // colTimesheetLastTimeOut
     //
     this.colTimesheetLastTimeOut.Caption = "Time (Out)";
     this.colTimesheetLastTimeOut.DisplayFormat.FormatString = "hh:mm tt";
     this.colTimesheetLastTimeOut.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.colTimesheetLastTimeOut.FieldName = "Last Time Out";
     this.colTimesheetLastTimeOut.Name = "colTimesheetLastTimeOut";
     this.colTimesheetLastTimeOut.OptionsColumn.AllowEdit = false;
     this.colTimesheetLastTimeOut.Visible = true;
     this.colTimesheetLastTimeOut.VisibleIndex = 4;
     this.colTimesheetLastTimeOut.Width = 65;
     //
     // colTimesheetManagerNameIn
     //
     this.colTimesheetManagerNameIn.Caption = "Edit (In)";
     this.colTimesheetManagerNameIn.FieldName = "strManagerNameIn";
     this.colTimesheetManagerNameIn.Name = "colTimesheetManagerNameIn";
     this.colTimesheetManagerNameIn.OptionsColumn.AllowEdit = false;
     this.colTimesheetManagerNameIn.Visible = true;
     this.colTimesheetManagerNameIn.VisibleIndex = 5;
     //
     // colTimesheetManagerNameOut
     //
     this.colTimesheetManagerNameOut.Caption = "Edit (Out)";
     this.colTimesheetManagerNameOut.FieldName = "strManagerNameOut";
     this.colTimesheetManagerNameOut.Name = "colTimesheetManagerNameOut";
     this.colTimesheetManagerNameOut.OptionsColumn.AllowEdit = false;
     this.colTimesheetManagerNameOut.Visible = true;
     this.colTimesheetManagerNameOut.VisibleIndex = 6;
     //
     // colTimesheetLateness
     //
     this.colTimesheetLateness.Caption = "Lateness";
     this.colTimesheetLateness.ColumnEdit = this.repositoryItemCheckEdit2;
     this.colTimesheetLateness.FieldName = "fLateness";
     this.colTimesheetLateness.Name = "colTimesheetLateness";
     this.colTimesheetLateness.Width = 59;
     //
     // repositoryItemCheckEdit2
     //
     this.repositoryItemCheckEdit2.AutoHeight = false;
     this.repositoryItemCheckEdit2.Name = "repositoryItemCheckEdit2";
     this.repositoryItemCheckEdit2.NullStyle = DevExpress.XtraEditors.Controls.StyleIndeterminate.Unchecked;
     //
     // colTimesheetTotalLateness
     //
     this.colTimesheetTotalLateness.Caption = "Total Lateness";
     this.colTimesheetTotalLateness.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Custom;
     this.colTimesheetTotalLateness.FieldName = "nLateness";
     this.colTimesheetTotalLateness.Name = "colTimesheetTotalLateness";
     this.colTimesheetTotalLateness.OptionsColumn.AllowEdit = false;
     this.colTimesheetTotalLateness.SummaryItem.SummaryType = DevExpress.Data.SummaryItemType.Sum;
     this.colTimesheetTotalLateness.Visible = true;
     this.colTimesheetTotalLateness.VisibleIndex = 7;
     this.colTimesheetTotalLateness.Width = 65;
     //
     // colRemark
     //
     this.colRemark.Caption = "Remark";
     this.colRemark.FieldName = "strRemarks";
     this.colRemark.Name = "colRemark";
     this.colRemark.Visible = true;
     this.colRemark.VisibleIndex = 8;
     this.colRemark.Width = 324;
     //
     // Rosterid
     //
     this.Rosterid.Caption = "rosterID";
     this.Rosterid.FieldName = "nRosterID";
     this.Rosterid.Name = "Rosterid";
     //
     // repositoryItemTextEdit1
     //
     this.repositoryItemTextEdit1.AutoHeight = false;
     this.repositoryItemTextEdit1.Name = "repositoryItemTextEdit1";
     //
     // repositoryItemSpinEdit1
     //
     this.repositoryItemSpinEdit1.AutoHeight = false;
     this.repositoryItemSpinEdit1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                          new DevExpress.XtraEditors.Controls.EditorButton()});
     this.repositoryItemSpinEdit1.Name = "repositoryItemSpinEdit1";
     //
     // groupTimeSheetDetails
     //
     this.groupTimeSheetDetails.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
         | System.Windows.Forms.AnchorStyles.Right)));
     this.groupTimeSheetDetails.Appearance.BackColor = System.Drawing.SystemColors.Control;
     this.groupTimeSheetDetails.Appearance.Options.UseBackColor = true;
     this.groupTimeSheetDetails.Controls.Add(this.gridctrTimeCard);
     this.groupTimeSheetDetails.Location = new System.Drawing.Point(8, 344);
     this.groupTimeSheetDetails.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.groupTimeSheetDetails.LookAndFeel.UseDefaultLookAndFeel = false;
     this.groupTimeSheetDetails.Name = "groupTimeSheetDetails";
     this.groupTimeSheetDetails.Size = new System.Drawing.Size(904, 232);
     this.groupTimeSheetDetails.TabIndex = 177;
     this.groupTimeSheetDetails.Text = "Timesheet Details";
     //
     // gridctrTimeCard
     //
     this.gridctrTimeCard.Dock = System.Windows.Forms.DockStyle.Fill;
     //
     // gridctrTimeCard.EmbeddedNavigator
     //
     this.gridctrTimeCard.EmbeddedNavigator.Buttons.Append.Visible = false;
     this.gridctrTimeCard.EmbeddedNavigator.Buttons.CancelEdit.Visible = false;
     this.gridctrTimeCard.EmbeddedNavigator.Buttons.Edit.Visible = false;
     this.gridctrTimeCard.EmbeddedNavigator.Buttons.EndEdit.Visible = false;
     this.gridctrTimeCard.EmbeddedNavigator.Buttons.Remove.Visible = false;
     this.gridctrTimeCard.EmbeddedNavigator.Name = "";
     this.gridctrTimeCard.Location = new System.Drawing.Point(4, 18);
     this.gridctrTimeCard.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.gridctrTimeCard.LookAndFeel.UseDefaultLookAndFeel = false;
     this.gridctrTimeCard.LookAndFeel.UseWindowsXPTheme = false;
     this.gridctrTimeCard.MainView = this.gvTimeCard;
     this.gridctrTimeCard.Name = "gridctrTimeCard";
     this.gridctrTimeCard.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
                                                                                                              this.repositoryItemLookUpEdit1,
                                                                                                              this.repositoryItemButtonEdit1,
                                                                                                              this.repositoryItemTimeEdit1,
                                                                                                              this.lkedtBranch2});
     this.gridctrTimeCard.Size = new System.Drawing.Size(896, 210);
     this.gridctrTimeCard.TabIndex = 2;
     this.gridctrTimeCard.UseEmbeddedNavigator = true;
     this.gridctrTimeCard.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
                                                                                                    this.gvTimeCard});
     //
     // gvTimeCard
     //
     this.gvTimeCard.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
                                                                                       this.colTimesheetDetailBranch,
                                                                                       this.colTimesheetDetailDate,
                                                                                       this.colTimesheetDetailTime,
                                                                                       this.colTimesheetDetailRemarks,
                                                                                       this.colTimesheetDetailManager,
                                                                                       this.colTimesheetDetailEntryID,
                                                                                       this.colTimesheetDetailEmployeeID});
     this.gvTimeCard.GridControl = this.gridctrTimeCard;
     this.gvTimeCard.Name = "gvTimeCard";
     this.gvTimeCard.OptionsBehavior.AllowIncrementalSearch = true;
     this.gvTimeCard.OptionsBehavior.AutoSelectAllInEditor = false;
     this.gvTimeCard.OptionsCustomization.AllowFilter = false;
     this.gvTimeCard.OptionsCustomization.AllowSort = false;
     this.gvTimeCard.OptionsView.ShowGroupPanel = false;
     this.gvTimeCard.LostFocus += new System.EventHandler(this.gvTimeCard_LostFocus);
     this.gvTimeCard.DataSourceChanged += new System.EventHandler(this.gvTimeCard_DataSourceChanged);
     //
     // colTimesheetDetailBranch
     //
     this.colTimesheetDetailBranch.Caption = "Branch";
     this.colTimesheetDetailBranch.ColumnEdit = this.lkedtBranch2;
     this.colTimesheetDetailBranch.FieldName = "strBranchCode";
     this.colTimesheetDetailBranch.Name = "colTimesheetDetailBranch";
     this.colTimesheetDetailBranch.Visible = true;
     this.colTimesheetDetailBranch.VisibleIndex = 0;
     this.colTimesheetDetailBranch.Width = 109;
     //
     // lkedtBranch2
     //
     this.lkedtBranch2.AutoHeight = false;
     this.lkedtBranch2.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                               new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lkedtBranch2.Name = "lkedtBranch2";
     //
     // colTimesheetDetailDate
     //
     this.colTimesheetDetailDate.Caption = "Date";
     this.colTimesheetDetailDate.DisplayFormat.FormatString = "dd/MM/yyyy";
     this.colTimesheetDetailDate.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.colTimesheetDetailDate.FieldName = "dtDate";
     this.colTimesheetDetailDate.Name = "colTimesheetDetailDate";
     this.colTimesheetDetailDate.Width = 149;
     //
     // colTimesheetDetailTime
     //
     this.colTimesheetDetailTime.Caption = "Time";
     this.colTimesheetDetailTime.ColumnEdit = this.repositoryItemTimeEdit1;
     this.colTimesheetDetailTime.DisplayFormat.FormatString = "hh:mm tt";
     this.colTimesheetDetailTime.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.colTimesheetDetailTime.FieldName = "dtTime";
     this.colTimesheetDetailTime.Name = "colTimesheetDetailTime";
     this.colTimesheetDetailTime.Visible = true;
     this.colTimesheetDetailTime.VisibleIndex = 1;
     this.colTimesheetDetailTime.Width = 104;
     //
     // repositoryItemTimeEdit1
     //
     this.repositoryItemTimeEdit1.AutoHeight = false;
     this.repositoryItemTimeEdit1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                          new DevExpress.XtraEditors.Controls.EditorButton()});
     this.repositoryItemTimeEdit1.EditFormat.FormatString = "hh:mm tt";
     this.repositoryItemTimeEdit1.EditFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.repositoryItemTimeEdit1.Mask.EditMask = "hh:mm tt";
     this.repositoryItemTimeEdit1.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.DateTimeAdvancingCaret;
     this.repositoryItemTimeEdit1.Name = "repositoryItemTimeEdit1";
     //
     // colTimesheetDetailRemarks
     //
     this.colTimesheetDetailRemarks.Caption = "Remarks";
     this.colTimesheetDetailRemarks.FieldName = "strRemarks";
     this.colTimesheetDetailRemarks.Name = "colTimesheetDetailRemarks";
     this.colTimesheetDetailRemarks.Visible = true;
     this.colTimesheetDetailRemarks.VisibleIndex = 2;
     this.colTimesheetDetailRemarks.Width = 456;
     //
     // colTimesheetDetailManager
     //
     this.colTimesheetDetailManager.Caption = "Manager";
     this.colTimesheetDetailManager.FieldName = "nManagerID";
     this.colTimesheetDetailManager.Name = "colTimesheetDetailManager";
     this.colTimesheetDetailManager.OptionsColumn.AllowEdit = false;
     this.colTimesheetDetailManager.Visible = true;
     this.colTimesheetDetailManager.VisibleIndex = 3;
     this.colTimesheetDetailManager.Width = 254;
     //
     // colTimesheetDetailEntryID
     //
     this.colTimesheetDetailEntryID.Caption = "Entry ID";
     this.colTimesheetDetailEntryID.FieldName = "nEntryID";
     this.colTimesheetDetailEntryID.Name = "colTimesheetDetailEntryID";
     //
     // colTimesheetDetailEmployeeID
     //
     this.colTimesheetDetailEmployeeID.Caption = "Employee ID";
     this.colTimesheetDetailEmployeeID.FieldName = "nEmployeeID";
     this.colTimesheetDetailEmployeeID.Name = "colTimesheetDetailEmployeeID";
     //
     // repositoryItemLookUpEdit1
     //
     this.repositoryItemLookUpEdit1.AutoHeight = false;
     this.repositoryItemLookUpEdit1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemLookUpEdit1.Name = "repositoryItemLookUpEdit1";
     //
     // repositoryItemButtonEdit1
     //
     this.repositoryItemButtonEdit1.AutoHeight = false;
     this.repositoryItemButtonEdit1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                            new DevExpress.XtraEditors.Controls.EditorButton()});
     this.repositoryItemButtonEdit1.Name = "repositoryItemButtonEdit1";
     //
     // sbtnEnquiry
     //
     this.sbtnEnquiry.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.sbtnEnquiry.Appearance.Options.UseFont = true;
     this.sbtnEnquiry.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.sbtnEnquiry.Location = new System.Drawing.Point(752, 32);
     this.sbtnEnquiry.LookAndFeel.UseDefaultLookAndFeel = false;
     this.sbtnEnquiry.Name = "sbtnEnquiry";
     this.sbtnEnquiry.TabIndex = 176;
     this.sbtnEnquiry.Text = "Enquiry";
     this.sbtnEnquiry.Click += new System.EventHandler(this.sbtnEnquiry_Click);
     //
     // cmbBranch
     //
     this.cmbBranch.Location = new System.Drawing.Point(104, 32);
     this.cmbBranch.Name = "cmbBranch";
     //
     // cmbBranch.Properties
     //
     this.cmbBranch.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Style3D;
     this.cmbBranch.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                       new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cmbBranch.Size = new System.Drawing.Size(120, 22);
     this.cmbBranch.TabIndex = 173;
     this.cmbBranch.SelectedValueChanged += new System.EventHandler(this.cmbBranch_SelectedValueChanged);
     //
     // 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.ForeColor = System.Drawing.Color.Black;
     this.label1.Location = new System.Drawing.Point(360, 32);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(32, 22);
     this.label1.TabIndex = 58;
     this.label1.Text = "Year";
     this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // Month
     //
     this.Month.EditValue = 1;
     this.Month.Location = new System.Drawing.Point(272, 32);
     this.Month.Name = "Month";
     //
     // Month.Properties
     //
     this.Month.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Style3D;
     this.Month.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                   new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.Month.Properties.Items.AddRange(new object[] {
                                                           new DevExpress.XtraEditors.Controls.ImageComboBoxItem("January", 1, -1),
                                                           new DevExpress.XtraEditors.Controls.ImageComboBoxItem("February", 2, -1),
                                                           new DevExpress.XtraEditors.Controls.ImageComboBoxItem("March", 3, -1),
                                                           new DevExpress.XtraEditors.Controls.ImageComboBoxItem("April", 4, -1),
                                                           new DevExpress.XtraEditors.Controls.ImageComboBoxItem("May", 5, -1),
                                                           new DevExpress.XtraEditors.Controls.ImageComboBoxItem("June", 6, -1),
                                                           new DevExpress.XtraEditors.Controls.ImageComboBoxItem("July", 7, -1),
                                                           new DevExpress.XtraEditors.Controls.ImageComboBoxItem("August", 8, -1),
                                                           new DevExpress.XtraEditors.Controls.ImageComboBoxItem("September", 9, -1),
                                                           new DevExpress.XtraEditors.Controls.ImageComboBoxItem("October", 10, -1),
                                                           new DevExpress.XtraEditors.Controls.ImageComboBoxItem("November", 11, -1),
                                                           new DevExpress.XtraEditors.Controls.ImageComboBoxItem("December", 12, -1)});
     this.Month.Size = new System.Drawing.Size(72, 22);
     this.Month.TabIndex = 57;
     //
     // Year
     //
     this.Year.Location = new System.Drawing.Point(392, 32);
     this.Year.Name = "Year";
     //
     // Year.Properties
     //
     this.Year.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Style3D;
     this.Year.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                  new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.Year.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.Year.Size = new System.Drawing.Size(72, 22);
     this.Year.TabIndex = 56;
     //
     // label158
     //
     this.label158.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label158.ForeColor = System.Drawing.Color.Black;
     this.label158.Location = new System.Drawing.Point(232, 32);
     this.label158.Name = "label158";
     this.label158.Size = new System.Drawing.Size(40, 22);
     this.label158.TabIndex = 23;
     this.label158.Text = "Month";
     this.label158.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // label25
     //
     this.label25.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label25.ForeColor = System.Drawing.Color.Black;
     this.label25.Location = new System.Drawing.Point(8, 32);
     this.label25.Name = "label25";
     this.label25.Size = new System.Drawing.Size(96, 22);
     this.label25.TabIndex = 19;
     this.label25.Text = "Filter by Branch";
     this.label25.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // label5
     //
     this.label5.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label5.Location = new System.Drawing.Point(472, 32);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(96, 22);
     this.label5.TabIndex = 169;
     this.label5.Text = "Employee Name";
     this.label5.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // frmTimeSheetMain
     //
     this.AutoScale = false;
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.BackColor = System.Drawing.Color.White;
     this.ClientSize = new System.Drawing.Size(920, 584);
     this.Controls.Add(this.groupTimeSheet);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
     this.Name = "frmTimeSheetMain";
     this.Text = "frmTimeSheetMain";
     this.Load += new System.EventHandler(this.frmTimeSheetMain_Load);
     this.Leave += new System.EventHandler(this.frmTimeSheetMain_Leave);
     ((System.ComponentModel.ISupportInitialize)(this.groupTimeSheet)).EndInit();
     this.groupTimeSheet.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ddlMember.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridctrTimesheet)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvTimeSheet)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemSpinEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupTimeSheetDetails)).EndInit();
     this.groupTimeSheetDetails.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridctrTimeCard)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvTimeCard)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkedtBranch2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTimeEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbBranch.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Month.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Year.Properties)).EndInit();
     this.ResumeLayout(false);
 }
Beispiel #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.label1 = new System.Windows.Forms.Label();
     this.groupControl1 = new DevExpress.XtraEditors.GroupControl();
     this.panelMonday = new System.Windows.Forms.Panel();
     this.lblMon = new System.Windows.Forms.Label();
     this.txtMonday = new System.Windows.Forms.Label();
     this.panel4 = new System.Windows.Forms.Panel();
     this.lblTUE = new System.Windows.Forms.Label();
     this.txtTUE = new System.Windows.Forms.Label();
     this.panelFriday = new System.Windows.Forms.Panel();
     this.lblFRI = new System.Windows.Forms.Label();
     this.txtFriday = new System.Windows.Forms.Label();
     this.panelSun = new System.Windows.Forms.Panel();
     this.panelSat = new System.Windows.Forms.Panel();
     this.panelFri = new System.Windows.Forms.Panel();
     this.panelThu = new System.Windows.Forms.Panel();
     this.panelWed = new System.Windows.Forms.Panel();
     this.panelTue = new System.Windows.Forms.Panel();
     this.panelMon = new System.Windows.Forms.Panel();
     this.panelWednesday = new System.Windows.Forms.Panel();
     this.lblWED = new System.Windows.Forms.Label();
     this.txtWED = new System.Windows.Forms.Label();
     this.panelThursday = new System.Windows.Forms.Panel();
     this.lblThu = new System.Windows.Forms.Label();
     this.txtThur = new System.Windows.Forms.Label();
     this.panelSaturday = new System.Windows.Forms.Panel();
     this.lblSAT = new System.Windows.Forms.Label();
     this.txtSAT = new System.Windows.Forms.Label();
     this.panelSunday = new System.Windows.Forms.Panel();
     this.lblSUN = new System.Windows.Forms.Label();
     this.txtSunday = new System.Windows.Forms.Label();
     this.btnNextWeek = new DevExpress.XtraEditors.SimpleButton();
     this.btnPastWeek = new DevExpress.XtraEditors.SimpleButton();
     this.cmbInstructor = new DevExpress.XtraEditors.ImageComboBoxEdit();
     this.label3 = new System.Windows.Forms.Label();
     this.cbYear = new DevExpress.XtraEditors.ImageComboBoxEdit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     this.panelMonday.SuspendLayout();
     this.panel4.SuspendLayout();
     this.panelFriday.SuspendLayout();
     this.panelWednesday.SuspendLayout();
     this.panelThursday.SuspendLayout();
     this.panelSaturday.SuspendLayout();
     this.panelSunday.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cmbInstructor.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbYear.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // label1
     //
     this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.5F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label1.Location = new System.Drawing.Point(5, 16);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(88, 18);
     this.label1.TabIndex = 51;
     this.label1.Text = "Instructor";
     this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // groupControl1
     //
     this.groupControl1.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.groupControl1.Appearance.Options.UseBackColor = true;
     this.groupControl1.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowOnly;
     this.groupControl1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.groupControl1.Controls.Add(this.panelMonday);
     this.groupControl1.Controls.Add(this.panel4);
     this.groupControl1.Controls.Add(this.panelFriday);
     this.groupControl1.Controls.Add(this.panelSun);
     this.groupControl1.Controls.Add(this.panelSat);
     this.groupControl1.Controls.Add(this.panelFri);
     this.groupControl1.Controls.Add(this.panelThu);
     this.groupControl1.Controls.Add(this.panelWed);
     this.groupControl1.Controls.Add(this.panelTue);
     this.groupControl1.Controls.Add(this.panelMon);
     this.groupControl1.Controls.Add(this.panelWednesday);
     this.groupControl1.Controls.Add(this.panelThursday);
     this.groupControl1.Controls.Add(this.panelSaturday);
     this.groupControl1.Controls.Add(this.panelSunday);
     this.groupControl1.Location = new System.Drawing.Point(8, 48);
     this.groupControl1.LookAndFeel.UseDefaultLookAndFeel = false;
     this.groupControl1.Name = "groupControl1";
     this.groupControl1.ShowCaption = false;
     this.groupControl1.Size = new System.Drawing.Size(928, 528);
     this.groupControl1.TabIndex = 49;
     //
     // panelMonday
     //
     this.panelMonday.BackColor = System.Drawing.Color.Transparent;
     this.panelMonday.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.panelMonday.Controls.Add(this.lblMon);
     this.panelMonday.Controls.Add(this.txtMonday);
     this.panelMonday.Location = new System.Drawing.Point(144, 8);
     this.panelMonday.Name = "panelMonday";
     this.panelMonday.Size = new System.Drawing.Size(128, 32);
     this.panelMonday.TabIndex = 54;
     //
     // lblMon
     //
     this.lblMon.BackColor = System.Drawing.Color.PowderBlue;
     this.lblMon.Font = new System.Drawing.Font("Tahoma", 6.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblMon.Location = new System.Drawing.Point(0, 0);
     this.lblMon.Name = "lblMon";
     this.lblMon.Size = new System.Drawing.Size(128, 16);
     this.lblMon.TabIndex = 1;
     this.lblMon.Text = "MON";
     this.lblMon.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // txtMonday
     //
     this.txtMonday.BackColor = System.Drawing.Color.PowderBlue;
     this.txtMonday.Font = new System.Drawing.Font("Tahoma", 6.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtMonday.Location = new System.Drawing.Point(0, 16);
     this.txtMonday.Name = "txtMonday";
     this.txtMonday.Size = new System.Drawing.Size(128, 16);
     this.txtMonday.TabIndex = 2;
     this.txtMonday.Text = "17/6/2005";
     this.txtMonday.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // panel4
     //
     this.panel4.BackColor = System.Drawing.Color.Transparent;
     this.panel4.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.panel4.Controls.Add(this.lblTUE);
     this.panel4.Controls.Add(this.txtTUE);
     this.panel4.Location = new System.Drawing.Point(272, 8);
     this.panel4.Name = "panel4";
     this.panel4.Size = new System.Drawing.Size(128, 32);
     this.panel4.TabIndex = 52;
     //
     // lblTUE
     //
     this.lblTUE.BackColor = System.Drawing.Color.PowderBlue;
     this.lblTUE.Font = new System.Drawing.Font("Tahoma", 6.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblTUE.Location = new System.Drawing.Point(0, 0);
     this.lblTUE.Name = "lblTUE";
     this.lblTUE.Size = new System.Drawing.Size(128, 16);
     this.lblTUE.TabIndex = 1;
     this.lblTUE.Text = "TUE";
     this.lblTUE.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // txtTUE
     //
     this.txtTUE.BackColor = System.Drawing.Color.PowderBlue;
     this.txtTUE.Font = new System.Drawing.Font("Tahoma", 6.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtTUE.Location = new System.Drawing.Point(0, 16);
     this.txtTUE.Name = "txtTUE";
     this.txtTUE.Size = new System.Drawing.Size(128, 16);
     this.txtTUE.TabIndex = 2;
     this.txtTUE.Text = "17/6/2005";
     this.txtTUE.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // panelFriday
     //
     this.panelFriday.BackColor = System.Drawing.Color.Transparent;
     this.panelFriday.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.panelFriday.Controls.Add(this.lblFRI);
     this.panelFriday.Controls.Add(this.txtFriday);
     this.panelFriday.Location = new System.Drawing.Point(656, 8);
     this.panelFriday.Name = "panelFriday";
     this.panelFriday.Size = new System.Drawing.Size(128, 32);
     this.panelFriday.TabIndex = 48;
     //
     // lblFRI
     //
     this.lblFRI.BackColor = System.Drawing.Color.PowderBlue;
     this.lblFRI.Font = new System.Drawing.Font("Tahoma", 6.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblFRI.Location = new System.Drawing.Point(0, 0);
     this.lblFRI.Name = "lblFRI";
     this.lblFRI.Size = new System.Drawing.Size(128, 16);
     this.lblFRI.TabIndex = 1;
     this.lblFRI.Text = "FRI";
     this.lblFRI.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // txtFriday
     //
     this.txtFriday.BackColor = System.Drawing.Color.PowderBlue;
     this.txtFriday.Font = new System.Drawing.Font("Tahoma", 6.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtFriday.Location = new System.Drawing.Point(0, 16);
     this.txtFriday.Name = "txtFriday";
     this.txtFriday.Size = new System.Drawing.Size(128, 16);
     this.txtFriday.TabIndex = 2;
     this.txtFriday.Text = "17/6/2005";
     this.txtFriday.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // panelSun
     //
     this.panelSun.BackColor = System.Drawing.Color.Transparent;
     this.panelSun.Location = new System.Drawing.Point(16, 40);
     this.panelSun.Name = "panelSun";
     this.panelSun.Size = new System.Drawing.Size(128, 480);
     this.panelSun.TabIndex = 43;
     //
     // panelSat
     //
     this.panelSat.BackColor = System.Drawing.Color.Transparent;
     this.panelSat.Location = new System.Drawing.Point(784, 40);
     this.panelSat.Name = "panelSat";
     this.panelSat.Size = new System.Drawing.Size(128, 480);
     this.panelSat.TabIndex = 42;
     //
     // panelFri
     //
     this.panelFri.BackColor = System.Drawing.Color.Transparent;
     this.panelFri.Location = new System.Drawing.Point(656, 40);
     this.panelFri.Name = "panelFri";
     this.panelFri.Size = new System.Drawing.Size(128, 480);
     this.panelFri.TabIndex = 37;
     //
     // panelThu
     //
     this.panelThu.BackColor = System.Drawing.Color.Transparent;
     this.panelThu.Location = new System.Drawing.Point(528, 40);
     this.panelThu.Name = "panelThu";
     this.panelThu.Size = new System.Drawing.Size(128, 480);
     this.panelThu.TabIndex = 36;
     //
     // panelWed
     //
     this.panelWed.BackColor = System.Drawing.Color.Transparent;
     this.panelWed.Location = new System.Drawing.Point(400, 40);
     this.panelWed.Name = "panelWed";
     this.panelWed.Size = new System.Drawing.Size(128, 480);
     this.panelWed.TabIndex = 35;
     //
     // panelTue
     //
     this.panelTue.BackColor = System.Drawing.Color.Transparent;
     this.panelTue.Location = new System.Drawing.Point(272, 40);
     this.panelTue.Name = "panelTue";
     this.panelTue.Size = new System.Drawing.Size(128, 480);
     this.panelTue.TabIndex = 34;
     //
     // panelMon
     //
     this.panelMon.BackColor = System.Drawing.Color.Transparent;
     this.panelMon.Location = new System.Drawing.Point(144, 40);
     this.panelMon.Name = "panelMon";
     this.panelMon.Size = new System.Drawing.Size(128, 480);
     this.panelMon.TabIndex = 33;
     //
     // panelWednesday
     //
     this.panelWednesday.BackColor = System.Drawing.Color.Transparent;
     this.panelWednesday.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.panelWednesday.Controls.Add(this.lblWED);
     this.panelWednesday.Controls.Add(this.txtWED);
     this.panelWednesday.Location = new System.Drawing.Point(400, 8);
     this.panelWednesday.Name = "panelWednesday";
     this.panelWednesday.Size = new System.Drawing.Size(128, 32);
     this.panelWednesday.TabIndex = 51;
     //
     // lblWED
     //
     this.lblWED.BackColor = System.Drawing.Color.PowderBlue;
     this.lblWED.Font = new System.Drawing.Font("Tahoma", 6.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblWED.Location = new System.Drawing.Point(0, 0);
     this.lblWED.Name = "lblWED";
     this.lblWED.Size = new System.Drawing.Size(128, 16);
     this.lblWED.TabIndex = 1;
     this.lblWED.Text = "WED";
     this.lblWED.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // txtWED
     //
     this.txtWED.BackColor = System.Drawing.Color.PowderBlue;
     this.txtWED.Font = new System.Drawing.Font("Tahoma", 6.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtWED.Location = new System.Drawing.Point(0, 16);
     this.txtWED.Name = "txtWED";
     this.txtWED.Size = new System.Drawing.Size(128, 16);
     this.txtWED.TabIndex = 2;
     this.txtWED.Text = "17/6/2005";
     this.txtWED.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // panelThursday
     //
     this.panelThursday.BackColor = System.Drawing.Color.Transparent;
     this.panelThursday.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.panelThursday.Controls.Add(this.lblThu);
     this.panelThursday.Controls.Add(this.txtThur);
     this.panelThursday.Location = new System.Drawing.Point(528, 8);
     this.panelThursday.Name = "panelThursday";
     this.panelThursday.Size = new System.Drawing.Size(128, 32);
     this.panelThursday.TabIndex = 51;
     //
     // lblThu
     //
     this.lblThu.BackColor = System.Drawing.Color.PowderBlue;
     this.lblThu.Font = new System.Drawing.Font("Tahoma", 6.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblThu.Location = new System.Drawing.Point(0, 0);
     this.lblThu.Name = "lblThu";
     this.lblThu.Size = new System.Drawing.Size(128, 16);
     this.lblThu.TabIndex = 1;
     this.lblThu.Text = "THU";
     this.lblThu.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // txtThur
     //
     this.txtThur.BackColor = System.Drawing.Color.PowderBlue;
     this.txtThur.Font = new System.Drawing.Font("Tahoma", 6.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtThur.Location = new System.Drawing.Point(0, 16);
     this.txtThur.Name = "txtThur";
     this.txtThur.Size = new System.Drawing.Size(128, 16);
     this.txtThur.TabIndex = 2;
     this.txtThur.Text = "17/6/2005";
     this.txtThur.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // panelSaturday
     //
     this.panelSaturday.BackColor = System.Drawing.Color.Transparent;
     this.panelSaturday.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.panelSaturday.Controls.Add(this.lblSAT);
     this.panelSaturday.Controls.Add(this.txtSAT);
     this.panelSaturday.Location = new System.Drawing.Point(784, 8);
     this.panelSaturday.Name = "panelSaturday";
     this.panelSaturday.Size = new System.Drawing.Size(128, 32);
     this.panelSaturday.TabIndex = 50;
     //
     // lblSAT
     //
     this.lblSAT.BackColor = System.Drawing.Color.PowderBlue;
     this.lblSAT.Font = new System.Drawing.Font("Tahoma", 6.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblSAT.Location = new System.Drawing.Point(0, 0);
     this.lblSAT.Name = "lblSAT";
     this.lblSAT.Size = new System.Drawing.Size(128, 16);
     this.lblSAT.TabIndex = 1;
     this.lblSAT.Text = "SAT";
     this.lblSAT.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // txtSAT
     //
     this.txtSAT.BackColor = System.Drawing.Color.PowderBlue;
     this.txtSAT.Font = new System.Drawing.Font("Tahoma", 6.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtSAT.Location = new System.Drawing.Point(0, 16);
     this.txtSAT.Name = "txtSAT";
     this.txtSAT.Size = new System.Drawing.Size(128, 16);
     this.txtSAT.TabIndex = 2;
     this.txtSAT.Text = "17/6/2005";
     this.txtSAT.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // panelSunday
     //
     this.panelSunday.BackColor = System.Drawing.Color.Transparent;
     this.panelSunday.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.panelSunday.Controls.Add(this.lblSUN);
     this.panelSunday.Controls.Add(this.txtSunday);
     this.panelSunday.Location = new System.Drawing.Point(16, 8);
     this.panelSunday.Name = "panelSunday";
     this.panelSunday.Size = new System.Drawing.Size(128, 32);
     this.panelSunday.TabIndex = 52;
     //
     // lblSUN
     //
     this.lblSUN.BackColor = System.Drawing.Color.PowderBlue;
     this.lblSUN.Font = new System.Drawing.Font("Tahoma", 6.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblSUN.Location = new System.Drawing.Point(0, 0);
     this.lblSUN.Name = "lblSUN";
     this.lblSUN.Size = new System.Drawing.Size(128, 16);
     this.lblSUN.TabIndex = 1;
     this.lblSUN.Text = "SUN";
     this.lblSUN.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // txtSunday
     //
     this.txtSunday.BackColor = System.Drawing.Color.PowderBlue;
     this.txtSunday.Font = new System.Drawing.Font("Tahoma", 6.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtSunday.Location = new System.Drawing.Point(0, 16);
     this.txtSunday.Name = "txtSunday";
     this.txtSunday.Size = new System.Drawing.Size(128, 16);
     this.txtSunday.TabIndex = 2;
     this.txtSunday.Text = "17/6/2005";
     this.txtSunday.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // btnNextWeek
     //
     this.btnNextWeek.Appearance.BackColor = System.Drawing.Color.LightGray;
     this.btnNextWeek.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.btnNextWeek.Appearance.Options.UseBackColor = true;
     this.btnNextWeek.Appearance.Options.UseFont = true;
     this.btnNextWeek.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnNextWeek.Location = new System.Drawing.Point(840, 24);
     this.btnNextWeek.Name = "btnNextWeek";
     this.btnNextWeek.Size = new System.Drawing.Size(80, 16);
     this.btnNextWeek.TabIndex = 47;
     this.btnNextWeek.Text = "Next >>";
     this.btnNextWeek.Click += new System.EventHandler(this.btnNextWeek_Click);
     //
     // btnPastWeek
     //
     this.btnPastWeek.Appearance.BackColor = System.Drawing.Color.LightGray;
     this.btnPastWeek.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.btnPastWeek.Appearance.Options.UseBackColor = true;
     this.btnPastWeek.Appearance.Options.UseFont = true;
     this.btnPastWeek.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnPastWeek.Location = new System.Drawing.Point(752, 24);
     this.btnPastWeek.Name = "btnPastWeek";
     this.btnPastWeek.Size = new System.Drawing.Size(80, 16);
     this.btnPastWeek.TabIndex = 46;
     this.btnPastWeek.Text = "<< Previous";
     this.btnPastWeek.Click += new System.EventHandler(this.btnPastWeek_Click);
     //
     // cmbInstructor
     //
     this.cmbInstructor.Location = new System.Drawing.Point(96, 16);
     this.cmbInstructor.Name = "cmbInstructor";
     this.cmbInstructor.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cmbInstructor.Size = new System.Drawing.Size(160, 20);
     this.cmbInstructor.TabIndex = 52;
     this.cmbInstructor.SelectedIndexChanged += new System.EventHandler(this.cmbInstructor_SelectedIndexChanged);
     //
     // label3
     //
     this.label3.BackColor = System.Drawing.Color.Transparent;
     this.label3.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label3.ForeColor = System.Drawing.Color.Black;
     this.label3.Location = new System.Drawing.Point(562, 20);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(38, 16);
     this.label3.TabIndex = 54;
     this.label3.Text = "Year";
     //
     // cbYear
     //
     this.cbYear.EditValue = 2008;
     this.cbYear.ImeMode = System.Windows.Forms.ImeMode.NoControl;
     this.cbYear.Location = new System.Drawing.Point(608, 18);
     this.cbYear.Name = "cbYear";
     this.cbYear.Properties.Appearance.BackColor = System.Drawing.SystemColors.Window;
     this.cbYear.Properties.Appearance.Options.UseBackColor = true;
     this.cbYear.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Style3D;
     this.cbYear.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cbYear.Properties.Items.AddRange(new DevExpress.XtraEditors.Controls.ImageComboBoxItem[] {
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("2007", 2007, -1),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("2008", 2008, -1),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("2009", 2009, -1)});
     this.cbYear.Properties.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.cbYear.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.cbYear.Size = new System.Drawing.Size(128, 22);
     this.cbYear.TabIndex = 53;
     //
     // RPClassInstructor
     //
     this.AutoScroll = true;
     this.ClientSize = new System.Drawing.Size(943, 582);
     this.Controls.Add(this.label3);
     this.Controls.Add(this.cbYear);
     this.Controls.Add(this.cmbInstructor);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.groupControl1);
     this.Controls.Add(this.btnPastWeek);
     this.Controls.Add(this.btnNextWeek);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
     this.Name = "RPClassInstructor";
     this.ShowInTaskbar = false;
     this.Text = "Class Analysis by Instructor";
     this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
     this.Load += new System.EventHandler(this.RPClassInstructor_Load);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     this.panelMonday.ResumeLayout(false);
     this.panel4.ResumeLayout(false);
     this.panelFriday.ResumeLayout(false);
     this.panelWednesday.ResumeLayout(false);
     this.panelThursday.ResumeLayout(false);
     this.panelSaturday.ResumeLayout(false);
     this.panelSunday.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.cmbInstructor.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbYear.Properties)).EndInit();
     this.ResumeLayout(false);
 }
Beispiel #57
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.gridIPPNotSent = new DevExpress.XtraGrid.GridControl();
     this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.strBankCode = new DevExpress.XtraGrid.Columns.GridColumn();
     this.nMonths = 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.label1 = new System.Windows.Forms.Label();
     this.label2 = new System.Windows.Forms.Label();
     this.cmbIPPStatus = new DevExpress.XtraEditors.ImageComboBoxEdit();
     this.label3 = new System.Windows.Forms.Label();
     this.gridIPPNotCol = new DevExpress.XtraGrid.GridControl();
     this.gridView2 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn7 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn8 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn9 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn10 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn11 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn12 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn13 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn14 = new DevExpress.XtraGrid.Columns.GridColumn();
     ((System.ComponentModel.ISupportInitialize)(this.gridIPPNotSent)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbIPPStatus.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridIPPNotCol)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView2)).BeginInit();
     this.SuspendLayout();
     //
     // gridIPPNotSent
     //
     //
     // gridIPPNotSent.EmbeddedNavigator
     //
     this.gridIPPNotSent.EmbeddedNavigator.Name = "";
     this.gridIPPNotSent.Location = new System.Drawing.Point(0, 48);
     this.gridIPPNotSent.MainView = this.gridView1;
     this.gridIPPNotSent.Name = "gridIPPNotSent";
     this.gridIPPNotSent.Size = new System.Drawing.Size(728, 184);
     this.gridIPPNotSent.TabIndex = 0;
     this.gridIPPNotSent.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
                                                                                                   this.gridView1});
     //
     // gridView1
     //
     this.gridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
                                                                                      this.gridColumn1,
                                                                                      this.strBankCode,
                                                                                      this.nMonths,
                                                                                      this.gridColumn2,
                                                                                      this.gridColumn3,
                                                                                      this.gridColumn4,
                                                                                      this.gridColumn5});
     this.gridView1.GridControl = this.gridIPPNotSent;
     this.gridView1.Name = "gridView1";
     this.gridView1.OptionsBehavior.Editable = false;
     this.gridView1.OptionsCustomization.AllowColumnMoving = false;
     this.gridView1.OptionsCustomization.AllowFilter = false;
     this.gridView1.OptionsCustomization.AllowSort = false;
     this.gridView1.OptionsView.ShowGroupPanel = false;
     //
     // gridColumn1
     //
     this.gridColumn1.Caption = "IPP";
     this.gridColumn1.FieldName = "nIPPID";
     this.gridColumn1.Name = "gridColumn1";
     this.gridColumn1.Visible = true;
     this.gridColumn1.VisibleIndex = 0;
     //
     // strBankCode
     //
     this.strBankCode.Caption = "Bank Code";
     this.strBankCode.FieldName = "strBankCode";
     this.strBankCode.Name = "strBankCode";
     this.strBankCode.Visible = true;
     this.strBankCode.VisibleIndex = 1;
     //
     // nMonths
     //
     this.nMonths.Caption = "No. of Months";
     this.nMonths.FieldName = "nMonths";
     this.nMonths.Name = "nMonths";
     this.nMonths.Visible = true;
     this.nMonths.VisibleIndex = 2;
     //
     // gridColumn2
     //
     this.gridColumn2.Caption = "Rate";
     this.gridColumn2.FieldName = "Rate";
     this.gridColumn2.Name = "gridColumn2";
     this.gridColumn2.Visible = true;
     this.gridColumn2.VisibleIndex = 3;
     //
     // gridColumn3
     //
     this.gridColumn3.Caption = "Amount";
     this.gridColumn3.FieldName = "Amount";
     this.gridColumn3.Name = "gridColumn3";
     this.gridColumn3.Visible = true;
     this.gridColumn3.VisibleIndex = 4;
     //
     // gridColumn4
     //
     this.gridColumn4.Caption = "Interest";
     this.gridColumn4.FieldName = "Interest";
     this.gridColumn4.Name = "gridColumn4";
     this.gridColumn4.Visible = true;
     this.gridColumn4.VisibleIndex = 5;
     //
     // gridColumn5
     //
     this.gridColumn5.Caption = "Nett";
     this.gridColumn5.FieldName = "Nett";
     this.gridColumn5.Name = "gridColumn5";
     this.gridColumn5.Visible = true;
     this.gridColumn5.VisibleIndex = 6;
     //
     // label1
     //
     this.label1.BackColor = System.Drawing.Color.Transparent;
     this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.label1.Location = new System.Drawing.Point(-8, 32);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(120, 16);
     this.label1.TabIndex = 1;
     this.label1.Text = "IPP Not Yet Sent";
     this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // label2
     //
     this.label2.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.label2.Location = new System.Drawing.Point(0, 8);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(72, 16);
     this.label2.TabIndex = 3;
     this.label2.Text = "IPP Status";
     //
     // cmbIPPStatus
     //
     this.cmbIPPStatus.Location = new System.Drawing.Point(80, 8);
     this.cmbIPPStatus.Name = "cmbIPPStatus";
     //
     // cmbIPPStatus.Properties
     //
     this.cmbIPPStatus.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                          new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cmbIPPStatus.Size = new System.Drawing.Size(112, 20);
     this.cmbIPPStatus.TabIndex = 4;
     this.cmbIPPStatus.SelectedValueChanged += new System.EventHandler(this.cmbIPPStatus_SelectedValueChanged);
     //
     // label3
     //
     this.label3.BackColor = System.Drawing.Color.Transparent;
     this.label3.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.label3.Location = new System.Drawing.Point(-8, 240);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(144, 16);
     this.label3.TabIndex = 6;
     this.label3.Text = "IPP Not Yet Collected";
     this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // gridIPPNotCol
     //
     //
     // gridIPPNotCol.EmbeddedNavigator
     //
     this.gridIPPNotCol.EmbeddedNavigator.Name = "";
     this.gridIPPNotCol.Location = new System.Drawing.Point(0, 256);
     this.gridIPPNotCol.MainView = this.gridView2;
     this.gridIPPNotCol.Name = "gridIPPNotCol";
     this.gridIPPNotCol.Size = new System.Drawing.Size(728, 200);
     this.gridIPPNotCol.TabIndex = 5;
     this.gridIPPNotCol.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
                                                                                                  this.gridView2});
     //
     // gridView2
     //
     this.gridView2.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
                                                                                      this.gridColumn7,
                                                                                      this.gridColumn8,
                                                                                      this.gridColumn9,
                                                                                      this.gridColumn10,
                                                                                      this.gridColumn11,
                                                                                      this.gridColumn12,
                                                                                      this.gridColumn13,
                                                                                      this.gridColumn14});
     this.gridView2.GridControl = this.gridIPPNotCol;
     this.gridView2.Name = "gridView2";
     this.gridView2.OptionsBehavior.Editable = false;
     this.gridView2.OptionsCustomization.AllowColumnMoving = false;
     this.gridView2.OptionsCustomization.AllowFilter = false;
     this.gridView2.OptionsCustomization.AllowSort = false;
     this.gridView2.OptionsView.ShowGroupPanel = false;
     //
     // gridColumn7
     //
     this.gridColumn7.Caption = "IPP";
     this.gridColumn7.FieldName = "nIPPID";
     this.gridColumn7.Name = "gridColumn7";
     this.gridColumn7.Visible = true;
     this.gridColumn7.VisibleIndex = 0;
     //
     // gridColumn8
     //
     this.gridColumn8.Caption = "Bank Code";
     this.gridColumn8.FieldName = "strBankCode";
     this.gridColumn8.Name = "gridColumn8";
     this.gridColumn8.Visible = true;
     this.gridColumn8.VisibleIndex = 1;
     //
     // gridColumn9
     //
     this.gridColumn9.Caption = "No. of Months";
     this.gridColumn9.FieldName = "nMonths";
     this.gridColumn9.Name = "gridColumn9";
     this.gridColumn9.Visible = true;
     this.gridColumn9.VisibleIndex = 2;
     //
     // gridColumn10
     //
     this.gridColumn10.Caption = "Rate";
     this.gridColumn10.FieldName = "Rate";
     this.gridColumn10.Name = "gridColumn10";
     this.gridColumn10.Visible = true;
     this.gridColumn10.VisibleIndex = 3;
     //
     // gridColumn11
     //
     this.gridColumn11.Caption = "Amount";
     this.gridColumn11.FieldName = "Amount";
     this.gridColumn11.Name = "gridColumn11";
     this.gridColumn11.Visible = true;
     this.gridColumn11.VisibleIndex = 4;
     //
     // gridColumn12
     //
     this.gridColumn12.Caption = "Interest";
     this.gridColumn12.FieldName = "Interest";
     this.gridColumn12.Name = "gridColumn12";
     this.gridColumn12.Visible = true;
     this.gridColumn12.VisibleIndex = 5;
     //
     // gridColumn13
     //
     this.gridColumn13.Caption = "Nett";
     this.gridColumn13.FieldName = "Nett";
     this.gridColumn13.Name = "gridColumn13";
     this.gridColumn13.Visible = true;
     this.gridColumn13.VisibleIndex = 6;
     //
     // gridColumn14
     //
     this.gridColumn14.Caption = "Sent Date";
     this.gridColumn14.FieldName = "SentDate";
     this.gridColumn14.Name = "gridColumn14";
     this.gridColumn14.Visible = true;
     this.gridColumn14.VisibleIndex = 7;
     //
     // RPAccountsReport
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.AutoScroll = true;
     this.ClientSize = new System.Drawing.Size(767, 485);
     this.Controls.Add(this.label3);
     this.Controls.Add(this.gridIPPNotCol);
     this.Controls.Add(this.cmbIPPStatus);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.gridIPPNotSent);
     this.DockPadding.Bottom = 10;
     this.Name = "RPAccountsReport";
     this.Text = "Account Report";
     this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
     this.Load += new System.EventHandler(this.AccountsReport_Load);
     ((System.ComponentModel.ISupportInitialize)(this.gridIPPNotSent)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbIPPStatus.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridIPPNotCol)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView2)).EndInit();
     this.ResumeLayout(false);
 }
Beispiel #58
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.xtraTabControl1 = new DevExpress.XtraTab.XtraTabControl();
     this.xtraTabPage1 = new DevExpress.XtraTab.XtraTabPage();
     this.gridControlRoster = new DevExpress.XtraGrid.GridControl();
     this.gridViewRoster = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn13 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn4 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.xtraTabPage2 = new DevExpress.XtraTab.XtraTabPage();
     this.gridLeaveDetails = new DevExpress.XtraGrid.GridControl();
     this.gridViewLeaveDetails = new DevExpress.XtraGrid.Views.Grid.GridView();
     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.groupControl1 = new DevExpress.XtraEditors.GroupControl();
     this.label2 = new System.Windows.Forms.Label();
     this.ddlStatus = new DevExpress.XtraEditors.ImageComboBoxEdit();
     this.xtraTabPage3 = new DevExpress.XtraTab.XtraTabPage();
     this.gridLoginDetails = new DevExpress.XtraGrid.GridControl();
     this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn14 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn15 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.xtraTabPage4 = new DevExpress.XtraTab.XtraTabPage();
     this.gridAppointment = new DevExpress.XtraGrid.GridControl();
     this.gridView2 = 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.gridColumn19 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn20 = new DevExpress.XtraGrid.Columns.GridColumn();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).BeginInit();
     this.xtraTabControl1.SuspendLayout();
     this.xtraTabPage1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlRoster)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewRoster)).BeginInit();
     this.xtraTabPage2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridLeaveDetails)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewLeaveDetails)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ddlStatus.Properties)).BeginInit();
     this.xtraTabPage3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridLoginDetails)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     this.xtraTabPage4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridAppointment)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView2)).BeginInit();
     this.SuspendLayout();
     //
     // xtraTabControl1
     //
     this.xtraTabControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     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(688, 334);
     this.xtraTabControl1.TabIndex = 32;
     this.xtraTabControl1.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
                                                                                     this.xtraTabPage1,
                                                                                     this.xtraTabPage2,
                                                                                     this.xtraTabPage3,
                                                                                     this.xtraTabPage4});
     this.xtraTabControl1.Text = "xtraTabControl1";
     this.xtraTabControl1.SelectedPageChanged += new DevExpress.XtraTab.TabPageChangedEventHandler(this.xtraTabControl1_SelectedPageChanged);
     //
     // xtraTabPage1
     //
     this.xtraTabPage1.Controls.Add(this.gridControlRoster);
     this.xtraTabPage1.Name = "xtraTabPage1";
     this.xtraTabPage1.Size = new System.Drawing.Size(682, 308);
     this.xtraTabPage1.Text = "Roster Details";
     //
     // gridControlRoster
     //
     this.gridControlRoster.Dock = System.Windows.Forms.DockStyle.Fill;
     //
     // gridControlRoster.EmbeddedNavigator
     //
     this.gridControlRoster.EmbeddedNavigator.Name = "";
     this.gridControlRoster.Location = new System.Drawing.Point(0, 0);
     this.gridControlRoster.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.gridControlRoster.LookAndFeel.UseDefaultLookAndFeel = false;
     this.gridControlRoster.MainView = this.gridViewRoster;
     this.gridControlRoster.Name = "gridControlRoster";
     this.gridControlRoster.Size = new System.Drawing.Size(682, 308);
     this.gridControlRoster.TabIndex = 180;
     this.gridControlRoster.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
                                                                                                      this.gridViewRoster});
     //
     // gridViewRoster
     //
     this.gridViewRoster.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
                                                                                           this.gridColumn13,
                                                                                           this.gridColumn1,
                                                                                           this.gridColumn2,
                                                                                           this.gridColumn3,
                                                                                           this.gridColumn4});
     this.gridViewRoster.GridControl = this.gridControlRoster;
     this.gridViewRoster.Name = "gridViewRoster";
     this.gridViewRoster.OptionsBehavior.Editable = false;
     this.gridViewRoster.OptionsCustomization.AllowFilter = false;
     this.gridViewRoster.OptionsCustomization.AllowSort = false;
     this.gridViewRoster.OptionsView.ShowGroupPanel = false;
     //
     // gridColumn13
     //
     this.gridColumn13.Caption = "Branch";
     this.gridColumn13.FieldName = "strBranchCode";
     this.gridColumn13.Name = "gridColumn13";
     this.gridColumn13.Visible = true;
     this.gridColumn13.VisibleIndex = 0;
     this.gridColumn13.Width = 82;
     //
     // gridColumn1
     //
     this.gridColumn1.Caption = "Roster ID";
     this.gridColumn1.FieldName = "nRosterID";
     this.gridColumn1.Name = "gridColumn1";
     //
     // gridColumn2
     //
     this.gridColumn2.Caption = "Date";
     this.gridColumn2.FieldName = "dtDate";
     this.gridColumn2.Name = "gridColumn2";
     //
     // gridColumn3
     //
     this.gridColumn3.Caption = "Start Time";
     this.gridColumn3.DisplayFormat.FormatString = "hh:mm tt";
     this.gridColumn3.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Custom;
     this.gridColumn3.FieldName = "dtStartTime";
     this.gridColumn3.Name = "gridColumn3";
     this.gridColumn3.Visible = true;
     this.gridColumn3.VisibleIndex = 1;
     this.gridColumn3.Width = 291;
     //
     // gridColumn4
     //
     this.gridColumn4.Caption = "End Time";
     this.gridColumn4.DisplayFormat.FormatString = "hh:mm tt";
     this.gridColumn4.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Custom;
     this.gridColumn4.FieldName = "dtEndTime";
     this.gridColumn4.Name = "gridColumn4";
     this.gridColumn4.Visible = true;
     this.gridColumn4.VisibleIndex = 2;
     this.gridColumn4.Width = 295;
     //
     // xtraTabPage2
     //
     this.xtraTabPage2.Controls.Add(this.gridLeaveDetails);
     this.xtraTabPage2.Controls.Add(this.groupControl1);
     this.xtraTabPage2.Name = "xtraTabPage2";
     this.xtraTabPage2.Size = new System.Drawing.Size(682, 308);
     this.xtraTabPage2.Text = "Leave Details";
     //
     // gridLeaveDetails
     //
     this.gridLeaveDetails.Dock = System.Windows.Forms.DockStyle.Fill;
     //
     // gridLeaveDetails.EmbeddedNavigator
     //
     this.gridLeaveDetails.EmbeddedNavigator.Name = "";
     this.gridLeaveDetails.Location = new System.Drawing.Point(0, 0);
     this.gridLeaveDetails.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.gridLeaveDetails.LookAndFeel.UseDefaultLookAndFeel = false;
     this.gridLeaveDetails.MainView = this.gridViewLeaveDetails;
     this.gridLeaveDetails.Name = "gridLeaveDetails";
     this.gridLeaveDetails.Size = new System.Drawing.Size(682, 308);
     this.gridLeaveDetails.TabIndex = 181;
     this.gridLeaveDetails.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
                                                                                                     this.gridViewLeaveDetails});
     //
     // gridViewLeaveDetails
     //
     this.gridViewLeaveDetails.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
                                                                                                 this.gridColumn5,
                                                                                                 this.gridColumn6,
                                                                                                 this.gridColumn7,
                                                                                                 this.gridColumn8,
                                                                                                 this.gridColumn9,
                                                                                                 this.gridColumn10,
                                                                                                 this.gridColumn11,
                                                                                                 this.gridColumn12});
     this.gridViewLeaveDetails.GridControl = this.gridLeaveDetails;
     this.gridViewLeaveDetails.Name = "gridViewLeaveDetails";
     this.gridViewLeaveDetails.OptionsBehavior.Editable = false;
     this.gridViewLeaveDetails.OptionsCustomization.AllowFilter = false;
     this.gridViewLeaveDetails.OptionsCustomization.AllowSort = false;
     this.gridViewLeaveDetails.OptionsView.ShowGroupPanel = false;
     //
     // gridColumn5
     //
     this.gridColumn5.Caption = "Leave ID";
     this.gridColumn5.FieldName = "nLeaveID";
     this.gridColumn5.Name = "gridColumn5";
     //
     // gridColumn6
     //
     this.gridColumn6.Caption = "Start Time";
     this.gridColumn6.DisplayFormat.FormatString = "hh:mm tt";
     this.gridColumn6.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Custom;
     this.gridColumn6.FieldName = "dtStartTime";
     this.gridColumn6.Name = "gridColumn6";
     this.gridColumn6.Visible = true;
     this.gridColumn6.VisibleIndex = 0;
     this.gridColumn6.Width = 65;
     //
     // gridColumn7
     //
     this.gridColumn7.Caption = "End Time";
     this.gridColumn7.DisplayFormat.FormatString = "hh:mm tt";
     this.gridColumn7.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Custom;
     this.gridColumn7.FieldName = "dtEndTime";
     this.gridColumn7.Name = "gridColumn7";
     this.gridColumn7.Visible = true;
     this.gridColumn7.VisibleIndex = 1;
     this.gridColumn7.Width = 65;
     //
     // gridColumn8
     //
     this.gridColumn8.Caption = "Duration";
     this.gridColumn8.FieldName = "Duration";
     this.gridColumn8.Name = "gridColumn8";
     this.gridColumn8.Visible = true;
     this.gridColumn8.VisibleIndex = 2;
     this.gridColumn8.Width = 64;
     //
     // gridColumn9
     //
     this.gridColumn9.Caption = "Time Off";
     this.gridColumn9.FieldName = "fTimeOff";
     this.gridColumn9.Name = "gridColumn9";
     this.gridColumn9.Visible = true;
     this.gridColumn9.VisibleIndex = 3;
     this.gridColumn9.Width = 57;
     //
     // gridColumn10
     //
     this.gridColumn10.Caption = "Leave Status";
     this.gridColumn10.FieldName = "LeaveStatus";
     this.gridColumn10.Name = "gridColumn10";
     this.gridColumn10.Visible = true;
     this.gridColumn10.VisibleIndex = 4;
     this.gridColumn10.Width = 76;
     //
     // gridColumn11
     //
     this.gridColumn11.Caption = "Reason";
     this.gridColumn11.FieldName = "strRemarks";
     this.gridColumn11.Name = "gridColumn11";
     this.gridColumn11.Visible = true;
     this.gridColumn11.VisibleIndex = 5;
     this.gridColumn11.Width = 104;
     //
     // gridColumn12
     //
     this.gridColumn12.Caption = "Approving Manager";
     this.gridColumn12.FieldName = "ApprovedManager";
     this.gridColumn12.Name = "gridColumn12";
     this.gridColumn12.Visible = true;
     this.gridColumn12.VisibleIndex = 6;
     this.gridColumn12.Width = 232;
     //
     // groupControl1
     //
     this.groupControl1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.groupControl1.Controls.Add(this.label2);
     this.groupControl1.Controls.Add(this.ddlStatus);
     this.groupControl1.Location = new System.Drawing.Point(8, 0);
     this.groupControl1.Name = "groupControl1";
     this.groupControl1.Size = new System.Drawing.Size(600, 40);
     this.groupControl1.TabIndex = 0;
     //
     // label2
     //
     this.label2.BackColor = System.Drawing.Color.Transparent;
     this.label2.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label2.Location = new System.Drawing.Point(16, 10);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(56, 23);
     this.label2.TabIndex = 186;
     this.label2.Text = "Status";
     this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // ddlStatus
     //
     this.ddlStatus.EditValue = 0;
     this.ddlStatus.Location = new System.Drawing.Point(80, 12);
     this.ddlStatus.Name = "ddlStatus";
     //
     // ddlStatus.Properties
     //
     this.ddlStatus.Properties.Appearance.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.ddlStatus.Properties.Appearance.Options.UseFont = true;
     this.ddlStatus.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.ddlStatus.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                       new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.ddlStatus.Properties.Items.AddRange(new object[] {
                                                               new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Pending", 0, -1),
                                                               new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Approved", 1, -1),
                                                               new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Rejected", 2, -1)});
     this.ddlStatus.Properties.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.ddlStatus.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.ddlStatus.Size = new System.Drawing.Size(152, 22);
     this.ddlStatus.TabIndex = 185;
     //
     // xtraTabPage3
     //
     this.xtraTabPage3.Controls.Add(this.gridLoginDetails);
     this.xtraTabPage3.Name = "xtraTabPage3";
     this.xtraTabPage3.Size = new System.Drawing.Size(682, 308);
     this.xtraTabPage3.Text = "Login Details";
     //
     // gridLoginDetails
     //
     this.gridLoginDetails.Dock = System.Windows.Forms.DockStyle.Fill;
     //
     // gridLoginDetails.EmbeddedNavigator
     //
     this.gridLoginDetails.EmbeddedNavigator.Name = "";
     this.gridLoginDetails.Location = new System.Drawing.Point(0, 0);
     this.gridLoginDetails.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.gridLoginDetails.LookAndFeel.UseDefaultLookAndFeel = false;
     this.gridLoginDetails.MainView = this.gridView1;
     this.gridLoginDetails.Name = "gridLoginDetails";
     this.gridLoginDetails.Size = new System.Drawing.Size(682, 308);
     this.gridLoginDetails.TabIndex = 180;
     this.gridLoginDetails.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
                                                                                                     this.gridView1});
     //
     // gridView1
     //
     this.gridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
                                                                                      this.gridColumn14,
                                                                                      this.gridColumn15});
     this.gridView1.GridControl = this.gridLoginDetails;
     this.gridView1.Name = "gridView1";
     this.gridView1.OptionsBehavior.Editable = false;
     this.gridView1.OptionsCustomization.AllowFilter = false;
     this.gridView1.OptionsCustomization.AllowSort = false;
     this.gridView1.OptionsView.ShowGroupPanel = false;
     //
     // gridColumn14
     //
     this.gridColumn14.Caption = "Branch Code";
     this.gridColumn14.FieldName = "strBranchCode";
     this.gridColumn14.Name = "gridColumn14";
     this.gridColumn14.Visible = true;
     this.gridColumn14.VisibleIndex = 0;
     //
     // gridColumn15
     //
     this.gridColumn15.Caption = "Time";
     this.gridColumn15.DisplayFormat.FormatString = "hh:mm tt";
     this.gridColumn15.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Custom;
     this.gridColumn15.FieldName = "dtTime";
     this.gridColumn15.Name = "gridColumn15";
     this.gridColumn15.Visible = true;
     this.gridColumn15.VisibleIndex = 1;
     //
     // xtraTabPage4
     //
     this.xtraTabPage4.Controls.Add(this.gridAppointment);
     this.xtraTabPage4.Name = "xtraTabPage4";
     this.xtraTabPage4.Size = new System.Drawing.Size(682, 308);
     this.xtraTabPage4.Text = "Appointment";
     //
     // gridAppointment
     //
     this.gridAppointment.Dock = System.Windows.Forms.DockStyle.Fill;
     //
     // gridAppointment.EmbeddedNavigator
     //
     this.gridAppointment.EmbeddedNavigator.Name = "";
     this.gridAppointment.Location = new System.Drawing.Point(0, 0);
     this.gridAppointment.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.gridAppointment.LookAndFeel.UseDefaultLookAndFeel = false;
     this.gridAppointment.MainView = this.gridView2;
     this.gridAppointment.Name = "gridAppointment";
     this.gridAppointment.Size = new System.Drawing.Size(682, 308);
     this.gridAppointment.TabIndex = 181;
     this.gridAppointment.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
                                                                                                    this.gridView2});
     //
     // gridView2
     //
     this.gridView2.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
                                                                                      this.gridColumn16,
                                                                                      this.gridColumn17,
                                                                                      this.gridColumn18,
                                                                                      this.gridColumn19,
                                                                                      this.gridColumn20});
     this.gridView2.GridControl = this.gridAppointment;
     this.gridView2.Name = "gridView2";
     this.gridView2.OptionsBehavior.Editable = false;
     this.gridView2.OptionsCustomization.AllowFilter = false;
     this.gridView2.OptionsCustomization.AllowSort = false;
     this.gridView2.OptionsView.ShowGroupPanel = false;
     //
     // gridColumn16
     //
     this.gridColumn16.Caption = "Start Time";
     this.gridColumn16.DisplayFormat.FormatString = "hh:mm tt";
     this.gridColumn16.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Custom;
     this.gridColumn16.FieldName = "dtStartTime";
     this.gridColumn16.Name = "gridColumn16";
     this.gridColumn16.Visible = true;
     this.gridColumn16.VisibleIndex = 0;
     this.gridColumn16.Width = 76;
     //
     // gridColumn17
     //
     this.gridColumn17.Caption = "End Time";
     this.gridColumn17.DisplayFormat.FormatString = "hh:mm tt";
     this.gridColumn17.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Custom;
     this.gridColumn17.FieldName = "dtEndTime";
     this.gridColumn17.Name = "gridColumn17";
     this.gridColumn17.Visible = true;
     this.gridColumn17.VisibleIndex = 1;
     this.gridColumn17.Width = 79;
     //
     // gridColumn18
     //
     this.gridColumn18.Caption = "Type";
     this.gridColumn18.FieldName = "Type";
     this.gridColumn18.Name = "gridColumn18";
     this.gridColumn18.Visible = true;
     this.gridColumn18.VisibleIndex = 2;
     this.gridColumn18.Width = 130;
     //
     // gridColumn19
     //
     this.gridColumn19.Caption = "Organization";
     this.gridColumn19.FieldName = "strOrganization";
     this.gridColumn19.Name = "gridColumn19";
     this.gridColumn19.Visible = true;
     this.gridColumn19.VisibleIndex = 3;
     this.gridColumn19.Width = 100;
     //
     // gridColumn20
     //
     this.gridColumn20.Caption = "Remarks";
     this.gridColumn20.FieldName = "strRemarks";
     this.gridColumn20.Name = "gridColumn20";
     this.gridColumn20.Visible = true;
     this.gridColumn20.VisibleIndex = 4;
     this.gridColumn20.Width = 278;
     //
     // frmRoster
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize = new System.Drawing.Size(688, 334);
     this.Controls.Add(this.xtraTabControl1);
     this.Name = "frmRoster";
     this.Text = "Roster Details";
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).EndInit();
     this.xtraTabControl1.ResumeLayout(false);
     this.xtraTabPage1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlRoster)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewRoster)).EndInit();
     this.xtraTabPage2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridLeaveDetails)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewLeaveDetails)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ddlStatus.Properties)).EndInit();
     this.xtraTabPage3.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridLoginDetails)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     this.xtraTabPage4.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridAppointment)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView2)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ActionManageForm));
     this.layoutControl1 = new DevExpress.XtraLayout.LayoutControl();
     this.dataLayoutControl1 = new DevExpress.XtraDataLayout.DataLayoutControl();
     this.btnAdd = new DevExpress.XtraEditors.SimpleButton();
     this.btnAddChild = new DevExpress.XtraEditors.SimpleButton();
     this.btnDel = new DevExpress.XtraEditors.SimpleButton();
     this.btnClose = new DevExpress.XtraEditors.SimpleButton();
     this.btnSave = new DevExpress.XtraEditors.SimpleButton();
     this.ActionNoTextEdit = new DevExpress.XtraEditors.TextEdit();
     this.bindingSource1 = new System.Windows.Forms.BindingSource();
     this.ActionNameTextEdit = new DevExpress.XtraEditors.TextEdit();
     this.ParentActionNoTextEdit = new DevExpress.XtraEditors.TextEdit();
     this.OrderSpinEdit = new DevExpress.XtraEditors.SpinEdit();
     this.RemarkMemoEdit = new DevExpress.XtraEditors.MemoEdit();
     this.ActionTypeTextEdit = new DevExpress.XtraEditors.ImageComboBoxEdit();
     this.Root = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlGroup2 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.ItemForActionNo = new DevExpress.XtraLayout.LayoutControlItem();
     this.ItemForActionName = new DevExpress.XtraLayout.LayoutControlItem();
     this.ItemForParentActionNo = new DevExpress.XtraLayout.LayoutControlItem();
     this.ItemForOrder = new DevExpress.XtraLayout.LayoutControlItem();
     this.ItemForActionType = new DevExpress.XtraLayout.LayoutControlItem();
     this.ItemForRemark = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem3 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem4 = new DevExpress.XtraLayout.LayoutControlItem();
     this.emptySpaceItem1 = new DevExpress.XtraLayout.EmptySpaceItem();
     this.layoutControlItem6 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem7 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem8 = new DevExpress.XtraLayout.LayoutControlItem();
     this.treeList1 = new DevExpress.XtraTreeList.TreeList();
     this.tcolActionName = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.layoutControlGroup1 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlItem1 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem2 = new DevExpress.XtraLayout.LayoutControlItem();
     this.formLoadErrorExit1 = new FengSharp.OneCardAccess.Infrastructure.WinForm.Components.FormLoadErrorExit();
     this.treeList_ShowLine1 = new FengSharp.WinForm.Dev.Components.TreeList_ShowLine();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl1)).BeginInit();
     this.layoutControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dataLayoutControl1)).BeginInit();
     this.dataLayoutControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ActionNoTextEdit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ActionNameTextEdit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ParentActionNoTextEdit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.OrderSpinEdit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.RemarkMemoEdit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ActionTypeTextEdit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Root)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemForActionNo)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemForActionName)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemForParentActionNo)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemForOrder)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemForActionType)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemForRemark)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem6)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem7)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem8)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.treeList1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).BeginInit();
     this.SuspendLayout();
     //
     // layoutControl1
     //
     this.layoutControl1.Controls.Add(this.dataLayoutControl1);
     this.layoutControl1.Controls.Add(this.treeList1);
     this.layoutControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.layoutControl1.Location = new System.Drawing.Point(0, 0);
     this.layoutControl1.Name = "layoutControl1";
     this.layoutControl1.OptionsItemText.TextAlignMode = DevExpress.XtraLayout.TextAlignMode.AlignInGroups;
     this.layoutControl1.Root = this.layoutControlGroup1;
     this.layoutControl1.Size = new System.Drawing.Size(940, 559);
     this.layoutControl1.TabIndex = 0;
     this.layoutControl1.Text = "layoutControl1";
     //
     // dataLayoutControl1
     //
     this.dataLayoutControl1.Controls.Add(this.btnAdd);
     this.dataLayoutControl1.Controls.Add(this.btnAddChild);
     this.dataLayoutControl1.Controls.Add(this.btnDel);
     this.dataLayoutControl1.Controls.Add(this.btnClose);
     this.dataLayoutControl1.Controls.Add(this.btnSave);
     this.dataLayoutControl1.Controls.Add(this.ActionNoTextEdit);
     this.dataLayoutControl1.Controls.Add(this.ActionNameTextEdit);
     this.dataLayoutControl1.Controls.Add(this.ParentActionNoTextEdit);
     this.dataLayoutControl1.Controls.Add(this.OrderSpinEdit);
     this.dataLayoutControl1.Controls.Add(this.RemarkMemoEdit);
     this.dataLayoutControl1.Controls.Add(this.ActionTypeTextEdit);
     this.dataLayoutControl1.DataSource = this.bindingSource1;
     this.dataLayoutControl1.Location = new System.Drawing.Point(237, 6);
     this.dataLayoutControl1.Name = "dataLayoutControl1";
     this.dataLayoutControl1.OptionsItemText.TextAlignMode = DevExpress.XtraLayout.TextAlignMode.AlignInGroups;
     this.dataLayoutControl1.Root = this.Root;
     this.dataLayoutControl1.Size = new System.Drawing.Size(697, 547);
     this.dataLayoutControl1.TabIndex = 5;
     this.dataLayoutControl1.Text = "dataLayoutControl1";
     //
     // btnAdd
     //
     this.btnAdd.Image = ((System.Drawing.Image)(resources.GetObject("btnAdd.Image")));
     this.btnAdd.ImageToTextAlignment = DevExpress.XtraEditors.ImageAlignToText.LeftCenter;
     this.btnAdd.Location = new System.Drawing.Point(169, 509);
     this.btnAdd.Name = "btnAdd";
     this.btnAdd.Size = new System.Drawing.Size(100, 26);
     this.btnAdd.StyleController = this.dataLayoutControl1;
     this.btnAdd.TabIndex = 14;
     this.btnAdd.Text = "新增同级";
     this.btnAdd.Click += new System.EventHandler(this.btnAdd_Click);
     //
     // btnAddChild
     //
     this.btnAddChild.Image = ((System.Drawing.Image)(resources.GetObject("btnAddChild.Image")));
     this.btnAddChild.ImageToTextAlignment = DevExpress.XtraEditors.ImageAlignToText.LeftCenter;
     this.btnAddChild.Location = new System.Drawing.Point(273, 509);
     this.btnAddChild.Name = "btnAddChild";
     this.btnAddChild.Size = new System.Drawing.Size(100, 26);
     this.btnAddChild.StyleController = this.dataLayoutControl1;
     this.btnAddChild.TabIndex = 15;
     this.btnAddChild.Text = "新增子级";
     this.btnAddChild.Click += new System.EventHandler(this.btnAddChild_Click);
     //
     // btnDel
     //
     this.btnDel.Image = ((System.Drawing.Image)(resources.GetObject("btnDel.Image")));
     this.btnDel.ImageToTextAlignment = DevExpress.XtraEditors.ImageAlignToText.LeftCenter;
     this.btnDel.Location = new System.Drawing.Point(377, 509);
     this.btnDel.Name = "btnDel";
     this.btnDel.Size = new System.Drawing.Size(100, 26);
     this.btnDel.StyleController = this.dataLayoutControl1;
     this.btnDel.TabIndex = 16;
     this.btnDel.Text = "删除(&D)";
     this.btnDel.Click += new System.EventHandler(this.btnDel_Click);
     //
     // btnClose
     //
     this.btnClose.Image = ((System.Drawing.Image)(resources.GetObject("btnClose.Image")));
     this.btnClose.ImageToTextAlignment = DevExpress.XtraEditors.ImageAlignToText.LeftCenter;
     this.btnClose.Location = new System.Drawing.Point(585, 509);
     this.btnClose.Name = "btnClose";
     this.btnClose.Size = new System.Drawing.Size(100, 26);
     this.btnClose.StyleController = this.dataLayoutControl1;
     this.btnClose.TabIndex = 14;
     this.btnClose.Text = "关闭(&C)";
     this.btnClose.Click += new System.EventHandler(this.btnClose_Click);
     //
     // btnSave
     //
     this.btnSave.Image = ((System.Drawing.Image)(resources.GetObject("btnSave.Image")));
     this.btnSave.ImageToTextAlignment = DevExpress.XtraEditors.ImageAlignToText.LeftCenter;
     this.btnSave.Location = new System.Drawing.Point(481, 509);
     this.btnSave.Name = "btnSave";
     this.btnSave.Size = new System.Drawing.Size(100, 26);
     this.btnSave.StyleController = this.dataLayoutControl1;
     this.btnSave.TabIndex = 13;
     this.btnSave.Text = "保存(&S)";
     this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
     //
     // ActionNoTextEdit
     //
     this.ActionNoTextEdit.DataBindings.Add(new System.Windows.Forms.Binding("EditValue", this.bindingSource1, "ActionNo", true));
     this.ActionNoTextEdit.Location = new System.Drawing.Point(63, 12);
     this.ActionNoTextEdit.Name = "ActionNoTextEdit";
     this.ActionNoTextEdit.Properties.NullValuePrompt = null;
     this.ActionNoTextEdit.Size = new System.Drawing.Size(622, 20);
     this.ActionNoTextEdit.StyleController = this.dataLayoutControl1;
     this.ActionNoTextEdit.TabIndex = 4;
     //
     // bindingSource1
     //
     this.bindingSource1.DataSource = typeof(FengSharp.OneCardAccess.Domain.RBACModule.Entity.ActionEntity);
     //
     // ActionNameTextEdit
     //
     this.ActionNameTextEdit.DataBindings.Add(new System.Windows.Forms.Binding("EditValue", this.bindingSource1, "ActionName", true));
     this.ActionNameTextEdit.Location = new System.Drawing.Point(63, 36);
     this.ActionNameTextEdit.Name = "ActionNameTextEdit";
     this.ActionNameTextEdit.Properties.NullValuePrompt = null;
     this.ActionNameTextEdit.Size = new System.Drawing.Size(622, 20);
     this.ActionNameTextEdit.StyleController = this.dataLayoutControl1;
     this.ActionNameTextEdit.TabIndex = 5;
     //
     // ParentActionNoTextEdit
     //
     this.ParentActionNoTextEdit.DataBindings.Add(new System.Windows.Forms.Binding("EditValue", this.bindingSource1, "ParentActionNo", true));
     this.ParentActionNoTextEdit.Location = new System.Drawing.Point(63, 60);
     this.ParentActionNoTextEdit.Name = "ParentActionNoTextEdit";
     this.ParentActionNoTextEdit.Properties.NullValuePrompt = null;
     this.ParentActionNoTextEdit.Size = new System.Drawing.Size(622, 20);
     this.ParentActionNoTextEdit.StyleController = this.dataLayoutControl1;
     this.ParentActionNoTextEdit.TabIndex = 6;
     //
     // OrderSpinEdit
     //
     this.OrderSpinEdit.DataBindings.Add(new System.Windows.Forms.Binding("EditValue", this.bindingSource1, "Order", true));
     this.OrderSpinEdit.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.OrderSpinEdit.Location = new System.Drawing.Point(63, 84);
     this.OrderSpinEdit.Name = "OrderSpinEdit";
     this.OrderSpinEdit.Properties.Appearance.Options.UseTextOptions = true;
     this.OrderSpinEdit.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.OrderSpinEdit.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.OrderSpinEdit.Properties.EditValueChangedFiringMode = DevExpress.XtraEditors.Controls.EditValueChangedFiringMode.Default;
     this.OrderSpinEdit.Properties.Mask.EditMask = "N0";
     this.OrderSpinEdit.Properties.Mask.UseMaskAsDisplayFormat = true;
     this.OrderSpinEdit.Properties.NullValuePrompt = null;
     this.OrderSpinEdit.Size = new System.Drawing.Size(622, 20);
     this.OrderSpinEdit.StyleController = this.dataLayoutControl1;
     this.OrderSpinEdit.TabIndex = 10;
     //
     // RemarkMemoEdit
     //
     this.RemarkMemoEdit.DataBindings.Add(new System.Windows.Forms.Binding("EditValue", this.bindingSource1, "Remark", true));
     this.RemarkMemoEdit.Location = new System.Drawing.Point(63, 132);
     this.RemarkMemoEdit.Name = "RemarkMemoEdit";
     this.RemarkMemoEdit.Properties.NullValuePrompt = null;
     this.RemarkMemoEdit.Size = new System.Drawing.Size(622, 373);
     this.RemarkMemoEdit.StyleController = this.dataLayoutControl1;
     this.RemarkMemoEdit.TabIndex = 11;
     //
     // ActionTypeTextEdit
     //
     this.ActionTypeTextEdit.DataBindings.Add(new System.Windows.Forms.Binding("EditValue", this.bindingSource1, "ActionType", true));
     this.ActionTypeTextEdit.Location = new System.Drawing.Point(63, 108);
     this.ActionTypeTextEdit.Name = "ActionTypeTextEdit";
     this.ActionTypeTextEdit.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.ActionTypeTextEdit.Properties.Items.AddRange(new DevExpress.XtraEditors.Controls.ImageComboBoxItem[] {
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("module", "module", -1),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("auth", "auth", -1)});
     this.ActionTypeTextEdit.Properties.NullValuePrompt = null;
     this.ActionTypeTextEdit.Size = new System.Drawing.Size(622, 20);
     this.ActionTypeTextEdit.StyleController = this.dataLayoutControl1;
     this.ActionTypeTextEdit.TabIndex = 8;
     //
     // Root
     //
     this.Root.EnableIndentsWithoutBorders = DevExpress.Utils.DefaultBoolean.True;
     this.Root.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlGroup2});
     this.Root.Location = new System.Drawing.Point(0, 0);
     this.Root.Name = "Root";
     this.Root.Padding = new DevExpress.XtraLayout.Utils.Padding(3, 3, 3, 3);
     this.Root.Size = new System.Drawing.Size(697, 547);
     this.Root.TextVisible = false;
     //
     // layoutControlGroup2
     //
     this.layoutControlGroup2.AllowDrawBackground = false;
     this.layoutControlGroup2.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.ItemForActionNo,
     this.ItemForActionName,
     this.ItemForParentActionNo,
     this.ItemForOrder,
     this.ItemForActionType,
     this.ItemForRemark,
     this.layoutControlItem3,
     this.layoutControlItem4,
     this.emptySpaceItem1,
     this.layoutControlItem6,
     this.layoutControlItem7,
     this.layoutControlItem8});
     this.layoutControlGroup2.Location = new System.Drawing.Point(0, 0);
     this.layoutControlGroup2.Name = "autoGeneratedGroup0";
     this.layoutControlGroup2.Padding = new DevExpress.XtraLayout.Utils.Padding(3, 3, 3, 3);
     this.layoutControlGroup2.Size = new System.Drawing.Size(689, 539);
     this.layoutControlGroup2.TextVisible = false;
     //
     // ItemForActionNo
     //
     this.ItemForActionNo.Control = this.ActionNoTextEdit;
     this.ItemForActionNo.Location = new System.Drawing.Point(0, 0);
     this.ItemForActionNo.Name = "ItemForActionNo";
     this.ItemForActionNo.Size = new System.Drawing.Size(677, 24);
     this.ItemForActionNo.Text = "权限编号";
     this.ItemForActionNo.TextSize = new System.Drawing.Size(48, 13);
     //
     // ItemForActionName
     //
     this.ItemForActionName.Control = this.ActionNameTextEdit;
     this.ItemForActionName.Location = new System.Drawing.Point(0, 24);
     this.ItemForActionName.Name = "ItemForActionName";
     this.ItemForActionName.Size = new System.Drawing.Size(677, 24);
     this.ItemForActionName.Text = "权限名称";
     this.ItemForActionName.TextSize = new System.Drawing.Size(48, 13);
     //
     // ItemForParentActionNo
     //
     this.ItemForParentActionNo.Control = this.ParentActionNoTextEdit;
     this.ItemForParentActionNo.CustomizationFormText = "父级编号";
     this.ItemForParentActionNo.Location = new System.Drawing.Point(0, 48);
     this.ItemForParentActionNo.Name = "ItemForParentActionNo";
     this.ItemForParentActionNo.Size = new System.Drawing.Size(677, 24);
     this.ItemForParentActionNo.Text = "父级编号";
     this.ItemForParentActionNo.TextSize = new System.Drawing.Size(48, 13);
     //
     // ItemForOrder
     //
     this.ItemForOrder.Control = this.OrderSpinEdit;
     this.ItemForOrder.CustomizationFormText = "序号";
     this.ItemForOrder.Location = new System.Drawing.Point(0, 72);
     this.ItemForOrder.Name = "ItemForOrder";
     this.ItemForOrder.Size = new System.Drawing.Size(677, 24);
     this.ItemForOrder.Text = "序号";
     this.ItemForOrder.TextSize = new System.Drawing.Size(48, 13);
     //
     // ItemForActionType
     //
     this.ItemForActionType.Control = this.ActionTypeTextEdit;
     this.ItemForActionType.CustomizationFormText = "类型";
     this.ItemForActionType.Location = new System.Drawing.Point(0, 96);
     this.ItemForActionType.Name = "ItemForActionType";
     this.ItemForActionType.Size = new System.Drawing.Size(677, 24);
     this.ItemForActionType.Text = "类型";
     this.ItemForActionType.TextSize = new System.Drawing.Size(48, 13);
     //
     // ItemForRemark
     //
     this.ItemForRemark.Control = this.RemarkMemoEdit;
     this.ItemForRemark.CustomizationFormText = "备注";
     this.ItemForRemark.Location = new System.Drawing.Point(0, 120);
     this.ItemForRemark.Name = "ItemForRemark";
     this.ItemForRemark.Size = new System.Drawing.Size(677, 377);
     this.ItemForRemark.Text = "备注";
     this.ItemForRemark.TextSize = new System.Drawing.Size(48, 13);
     //
     // layoutControlItem3
     //
     this.layoutControlItem3.Control = this.btnSave;
     this.layoutControlItem3.Location = new System.Drawing.Point(469, 497);
     this.layoutControlItem3.MaxSize = new System.Drawing.Size(104, 30);
     this.layoutControlItem3.MinSize = new System.Drawing.Size(104, 30);
     this.layoutControlItem3.Name = "layoutControlItem3";
     this.layoutControlItem3.Size = new System.Drawing.Size(104, 30);
     this.layoutControlItem3.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem3.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem3.TextVisible = false;
     //
     // layoutControlItem4
     //
     this.layoutControlItem4.Control = this.btnClose;
     this.layoutControlItem4.Location = new System.Drawing.Point(573, 497);
     this.layoutControlItem4.MaxSize = new System.Drawing.Size(104, 30);
     this.layoutControlItem4.MinSize = new System.Drawing.Size(104, 30);
     this.layoutControlItem4.Name = "layoutControlItem4";
     this.layoutControlItem4.Size = new System.Drawing.Size(104, 30);
     this.layoutControlItem4.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem4.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem4.TextVisible = false;
     //
     // emptySpaceItem1
     //
     this.emptySpaceItem1.AllowHotTrack = false;
     this.emptySpaceItem1.Location = new System.Drawing.Point(0, 497);
     this.emptySpaceItem1.Name = "emptySpaceItem1";
     this.emptySpaceItem1.Size = new System.Drawing.Size(157, 30);
     this.emptySpaceItem1.TextSize = new System.Drawing.Size(0, 0);
     //
     // layoutControlItem6
     //
     this.layoutControlItem6.Control = this.btnDel;
     this.layoutControlItem6.Location = new System.Drawing.Point(365, 497);
     this.layoutControlItem6.MaxSize = new System.Drawing.Size(104, 30);
     this.layoutControlItem6.MinSize = new System.Drawing.Size(104, 30);
     this.layoutControlItem6.Name = "layoutControlItem6";
     this.layoutControlItem6.Size = new System.Drawing.Size(104, 30);
     this.layoutControlItem6.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem6.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem6.TextVisible = false;
     //
     // layoutControlItem7
     //
     this.layoutControlItem7.Control = this.btnAddChild;
     this.layoutControlItem7.Location = new System.Drawing.Point(261, 497);
     this.layoutControlItem7.MaxSize = new System.Drawing.Size(104, 30);
     this.layoutControlItem7.MinSize = new System.Drawing.Size(104, 30);
     this.layoutControlItem7.Name = "layoutControlItem7";
     this.layoutControlItem7.Size = new System.Drawing.Size(104, 30);
     this.layoutControlItem7.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem7.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem7.TextVisible = false;
     //
     // layoutControlItem8
     //
     this.layoutControlItem8.Control = this.btnAdd;
     this.layoutControlItem8.Location = new System.Drawing.Point(157, 497);
     this.layoutControlItem8.MaxSize = new System.Drawing.Size(104, 30);
     this.layoutControlItem8.MinSize = new System.Drawing.Size(104, 30);
     this.layoutControlItem8.Name = "layoutControlItem8";
     this.layoutControlItem8.Size = new System.Drawing.Size(104, 30);
     this.layoutControlItem8.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem8.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem8.TextVisible = false;
     //
     // treeList1
     //
     this.treeList1.Appearance.EvenRow.BackColor = System.Drawing.Color.LightYellow;
     this.treeList1.Appearance.EvenRow.Options.UseBackColor = true;
     this.treeList1.Appearance.OddRow.BackColor = System.Drawing.Color.White;
     this.treeList1.Appearance.OddRow.Options.UseBackColor = true;
     this.treeList1.Columns.AddRange(new DevExpress.XtraTreeList.Columns.TreeListColumn[] {
     this.tcolActionName});
     this.treeList1.IndicatorWidth = 40;
     this.treeList1.KeyFieldName = "ActionNo";
     this.treeList_ShowLine1.SetLineNoFormatString(this.treeList1, "{0}");
     this.treeList1.Location = new System.Drawing.Point(6, 6);
     this.treeList1.Name = "treeList1";
     this.treeList1.OptionsBehavior.Editable = false;
     this.treeList1.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.treeList1.OptionsSelection.UseIndicatorForSelection = true;
     this.treeList1.OptionsView.EnableAppearanceEvenRow = true;
     this.treeList1.OptionsView.EnableAppearanceOddRow = true;
     this.treeList1.ParentFieldName = "ParentActionNo";
     this.treeList_ShowLine1.SetShowLineNo(this.treeList1, true);
     this.treeList1.Size = new System.Drawing.Size(227, 547);
     this.treeList1.TabIndex = 4;
     //
     // tcolActionName
     //
     this.tcolActionName.Caption = "功能名称";
     this.tcolActionName.FieldName = "ActionName";
     this.tcolActionName.Name = "tcolActionName";
     this.tcolActionName.Visible = true;
     this.tcolActionName.VisibleIndex = 0;
     //
     // layoutControlGroup1
     //
     this.layoutControlGroup1.EnableIndentsWithoutBorders = DevExpress.Utils.DefaultBoolean.True;
     this.layoutControlGroup1.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlItem1,
     this.layoutControlItem2});
     this.layoutControlGroup1.Location = new System.Drawing.Point(0, 0);
     this.layoutControlGroup1.Name = "layoutControlGroup1";
     this.layoutControlGroup1.Padding = new DevExpress.XtraLayout.Utils.Padding(3, 3, 3, 3);
     this.layoutControlGroup1.Size = new System.Drawing.Size(940, 559);
     this.layoutControlGroup1.TextVisible = false;
     //
     // layoutControlItem1
     //
     this.layoutControlItem1.Control = this.treeList1;
     this.layoutControlItem1.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem1.Name = "layoutControlItem1";
     this.layoutControlItem1.Size = new System.Drawing.Size(231, 551);
     this.layoutControlItem1.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem1.TextVisible = false;
     //
     // layoutControlItem2
     //
     this.layoutControlItem2.Control = this.dataLayoutControl1;
     this.layoutControlItem2.Location = new System.Drawing.Point(231, 0);
     this.layoutControlItem2.Name = "layoutControlItem2";
     this.layoutControlItem2.Size = new System.Drawing.Size(701, 551);
     this.layoutControlItem2.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem2.TextVisible = false;
     //
     // ActionManageForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(940, 559);
     this.Controls.Add(this.layoutControl1);
     this.formLoadErrorExit1.SetEnableLoadError(this, true);
     this.Name = "ActionManageForm";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text = "功能设置";
     this.Load += new System.EventHandler(this.ActionManageForm_Load);
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl1)).EndInit();
     this.layoutControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.dataLayoutControl1)).EndInit();
     this.dataLayoutControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ActionNoTextEdit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ActionNameTextEdit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ParentActionNoTextEdit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.OrderSpinEdit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.RemarkMemoEdit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ActionTypeTextEdit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Root)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemForActionNo)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemForActionName)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemForParentActionNo)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemForOrder)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemForActionType)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemForRemark)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem6)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem7)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem8)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.treeList1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).EndInit();
     this.ResumeLayout(false);
 }
Beispiel #60
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmSalesTarget));
     this.grpSalesRank = new DevExpress.XtraEditors.GroupControl();
     this.groupBoxCommMSE = new System.Windows.Forms.GroupBox();
     this.groupBox2 = new System.Windows.Forms.GroupBox();
     this.label3 = new System.Windows.Forms.Label();
     this.combo_DuplicateYearTo = new System.Windows.Forms.ComboBox();
     this.label4 = new System.Windows.Forms.Label();
     this.combo_DuplicateBranchTo = new System.Windows.Forms.ComboBox();
     this.btn_Duplicate = new System.Windows.Forms.Button();
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.label1 = new System.Windows.Forms.Label();
     this.combo_DuplicateYearFrom = new System.Windows.Forms.ComboBox();
     this.label2 = new System.Windows.Forms.Label();
     this.combo_DuplicateBranchFrom = new System.Windows.Forms.ComboBox();
     this.label31 = new System.Windows.Forms.Label();
     this.ddlSalesRank = new DevExpress.XtraEditors.ImageComboBoxEdit();
     this.grpCommPT = new DevExpress.XtraEditors.GroupControl();
     this.btn_AddPT = new DevExpress.XtraEditors.SimpleButton();
     this.imageList1 = new System.Windows.Forms.ImageList(this.components);
     this.btn_DelPT = new DevExpress.XtraEditors.SimpleButton();
     this.groupControl3 = new DevExpress.XtraEditors.GroupControl();
     this.gridControlMd_CommPT = new DevExpress.XtraGrid.GridControl();
     this.gridViewMd_CommPT = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumnCommPT8 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.lk_BranchCode3 = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gridColumnCommPT9 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnCommPT10 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.chk_Month3 = new DevExpress.XtraEditors.Repository.RepositoryItemComboBox();
     this.gridColumnCommPT1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.lk_Position3 = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gridColumnCommPT2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnCommPT3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnCommPT4 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnCommPT5 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnCommPT6 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnCommPT7 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnCommPT11 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemLookUpEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.repositoryItemDateEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
     this.repositoryItemDateEdit2 = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
     this.grpCommProductTherapist = new DevExpress.XtraEditors.GroupControl();
     this.btn_AddProductTherapist = new DevExpress.XtraEditors.SimpleButton();
     this.btn_DelProductTherapist = new DevExpress.XtraEditors.SimpleButton();
     this.groupControl5 = new DevExpress.XtraEditors.GroupControl();
     this.gridControlMd_CommProductTherapist = new DevExpress.XtraGrid.GridControl();
     this.gridViewMd_CommProductTherapist = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumnPT2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.lk_BranchCode2 = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gridColumnPT4 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnPT3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.chk_Month2 = new DevExpress.XtraEditors.Repository.RepositoryItemComboBox();
     this.gridColumnPT1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.lk_Position2 = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gridColumnPT5 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnPT6 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.lk_CreditCategoryID = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.EffCCStartDate = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
     this.EffCCEndDate = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
     this.grpCommCST = new DevExpress.XtraEditors.GroupControl();
     this.btn_AddCST = new DevExpress.XtraEditors.SimpleButton();
     this.btn_DelCST = new DevExpress.XtraEditors.SimpleButton();
     this.groupControl6 = new DevExpress.XtraEditors.GroupControl();
     this.gridControlMd_CommCST = new DevExpress.XtraGrid.GridControl();
     this.gridViewMd_CommCST = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumnCST3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.lk_BranchCode4 = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gridColumnCST7 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnCST8 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.chk_Month4 = new DevExpress.XtraEditors.Repository.RepositoryItemComboBox();
     this.gridColumnCST1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.lk_Position4 = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gridColumnCST2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnCST4 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnCST5 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnCST6 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnCST9 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemLookUpEdit2 = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.repositoryItemDateEdit3 = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
     this.repositoryItemDateEdit4 = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
     this.grpCommMerge = new DevExpress.XtraEditors.GroupControl();
     this.btn_AddMerge = new DevExpress.XtraEditors.SimpleButton();
     this.btn_DelMerge = new DevExpress.XtraEditors.SimpleButton();
     this.groupControl7 = new DevExpress.XtraEditors.GroupControl();
     this.gridControlMd_CommMerge = new DevExpress.XtraGrid.GridControl();
     this.gridViewMd_CommMerge = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumnM3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.lk_BranchCode5 = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gridColumnM7 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnM8 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.chk_Month5 = new DevExpress.XtraEditors.Repository.RepositoryItemComboBox();
     this.gridColumnM1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.lk_Position5 = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gridColumnM2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnM4 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnM5 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnM6 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnM9 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemLookUpEdit3 = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.repositoryItemDateEdit5 = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
     this.repositoryItemDateEdit6 = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
     this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.grpCommMSE = new DevExpress.XtraEditors.GroupControl();
     this.btn_AddMSE = new DevExpress.XtraEditors.SimpleButton();
     this.btn_DelMSE = new DevExpress.XtraEditors.SimpleButton();
     this.groupControl1 = new DevExpress.XtraEditors.GroupControl();
     this.gridControlMd_SalesTarget = new DevExpress.XtraGrid.GridControl();
     this.gridViewMd_SalesTarget = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumnPKG3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.lk_BranchCode0 = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gridColumnPKG7 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.tedit_nYear = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.gridColumnPKG8 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.chk_Month0 = new DevExpress.XtraEditors.Repository.RepositoryItemComboBox();
     this.gridColumnPKG1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.lk_Position0 = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gridColumnPKG2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.tedit_strDesc = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.gridColumnPKG4 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.tedit_Commission = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.gridColumnPKG5 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.tedit_mTargetFrom = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.gridColumnPKG6 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.tedit_mTargetTo = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.gridColumnPKG9 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.de_nYear = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
     this.strDesc = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
     this.lk_SalesRank = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.tedit_strType = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.tedit_strCommID = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.tedit_strBranch = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.de_nMonth = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
     this.tedit_nMonth = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.cardView1 = new DevExpress.XtraGrid.Views.Card.CardView();
     this.grpCommSpaConsult = new DevExpress.XtraEditors.GroupControl();
     this.btn_AddSpaConsult = new DevExpress.XtraEditors.SimpleButton();
     this.btn_DelSpaConsult = new DevExpress.XtraEditors.SimpleButton();
     this.groupControl4 = new DevExpress.XtraEditors.GroupControl();
     this.gridControlMd_CommSpaConsult = new DevExpress.XtraGrid.GridControl();
     this.gridViewMd_CommSpaConsult = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumnPG3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.lk_BranchCode1 = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gridColumnPG7 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnPG8 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.chk_Month1 = new DevExpress.XtraEditors.Repository.RepositoryItemComboBox();
     this.gridColumnPG1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.lk_Position1 = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gridColumnPG2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnPG4 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnPG9 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnPG5 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnPG6 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnPG10 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.lk_pkGroupCatID = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.tedit_SC_strCommID = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     ((System.ComponentModel.ISupportInitialize)(this.grpSalesRank)).BeginInit();
     this.grpSalesRank.SuspendLayout();
     this.groupBoxCommMSE.SuspendLayout();
     this.groupBox2.SuspendLayout();
     this.groupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ddlSalesRank.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.grpCommPT)).BeginInit();
     this.grpCommPT.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl3)).BeginInit();
     this.groupControl3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMd_CommPT)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMd_CommPT)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_BranchCode3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_Month3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_Position3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit1.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit2.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.grpCommProductTherapist)).BeginInit();
     this.grpCommProductTherapist.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl5)).BeginInit();
     this.groupControl5.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMd_CommProductTherapist)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMd_CommProductTherapist)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_BranchCode2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_Month2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_Position2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_CreditCategoryID)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.EffCCStartDate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.EffCCStartDate.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.EffCCEndDate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.EffCCEndDate.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.grpCommCST)).BeginInit();
     this.grpCommCST.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl6)).BeginInit();
     this.groupControl6.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMd_CommCST)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMd_CommCST)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_BranchCode4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_Month4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_Position4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEdit2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit3.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit4.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.grpCommMerge)).BeginInit();
     this.grpCommMerge.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl7)).BeginInit();
     this.groupControl7.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMd_CommMerge)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMd_CommMerge)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_BranchCode5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_Month5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_Position5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEdit3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit5.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit6)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit6.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.grpCommMSE)).BeginInit();
     this.grpCommMSE.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMd_SalesTarget)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMd_SalesTarget)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_BranchCode0)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tedit_nYear)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_Month0)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_Position0)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tedit_strDesc)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tedit_Commission)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tedit_mTargetFrom)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tedit_mTargetTo)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.de_nYear)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.de_nYear.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.strDesc)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.strDesc.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_SalesRank)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tedit_strType)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tedit_strCommID)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tedit_strBranch)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.de_nMonth)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.de_nMonth.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tedit_nMonth)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cardView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.grpCommSpaConsult)).BeginInit();
     this.grpCommSpaConsult.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl4)).BeginInit();
     this.groupControl4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMd_CommSpaConsult)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMd_CommSpaConsult)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_BranchCode1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_Month1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_Position1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_pkGroupCatID)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tedit_SC_strCommID)).BeginInit();
     this.SuspendLayout();
     //
     // grpSalesRank
     //
     this.grpSalesRank.Appearance.BackColor = System.Drawing.SystemColors.Control;
     this.grpSalesRank.Appearance.Options.UseBackColor = true;
     this.grpSalesRank.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.grpSalesRank.AppearanceCaption.Options.UseFont = true;
     this.grpSalesRank.Controls.Add(this.groupBoxCommMSE);
     this.grpSalesRank.Controls.Add(this.label31);
     this.grpSalesRank.Controls.Add(this.ddlSalesRank);
     this.grpSalesRank.Controls.Add(this.grpCommPT);
     this.grpSalesRank.Controls.Add(this.grpCommProductTherapist);
     this.grpSalesRank.Controls.Add(this.grpCommCST);
     this.grpSalesRank.Controls.Add(this.grpCommMerge);
     this.grpSalesRank.Controls.Add(this.grpCommMSE);
     this.grpSalesRank.Controls.Add(this.grpCommSpaConsult);
     this.grpSalesRank.ImeMode = System.Windows.Forms.ImeMode.On;
     this.grpSalesRank.Location = new System.Drawing.Point(8, 2);
     this.grpSalesRank.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.grpSalesRank.LookAndFeel.UseDefaultLookAndFeel = false;
     this.grpSalesRank.Name = "grpSalesRank";
     this.grpSalesRank.Size = new System.Drawing.Size(968, 455);
     this.grpSalesRank.TabIndex = 93;
     this.grpSalesRank.Text = "MASTER FILE";
     //
     // groupBoxCommMSE
     //
     this.groupBoxCommMSE.BackColor = System.Drawing.SystemColors.Control;
     this.groupBoxCommMSE.Controls.Add(this.groupBox2);
     this.groupBoxCommMSE.Controls.Add(this.btn_Duplicate);
     this.groupBoxCommMSE.Controls.Add(this.groupBox1);
     this.groupBoxCommMSE.Location = new System.Drawing.Point(248, 291);
     this.groupBoxCommMSE.Name = "groupBoxCommMSE";
     this.groupBoxCommMSE.Size = new System.Drawing.Size(444, 151);
     this.groupBoxCommMSE.TabIndex = 140;
     this.groupBoxCommMSE.TabStop = false;
     this.groupBoxCommMSE.Text = "Duplicate Records";
     //
     // groupBox2
     //
     this.groupBox2.Controls.Add(this.label3);
     this.groupBox2.Controls.Add(this.combo_DuplicateYearTo);
     this.groupBox2.Controls.Add(this.label4);
     this.groupBox2.Controls.Add(this.combo_DuplicateBranchTo);
     this.groupBox2.Location = new System.Drawing.Point(236, 21);
     this.groupBox2.Name = "groupBox2";
     this.groupBox2.Size = new System.Drawing.Size(192, 79);
     this.groupBox2.TabIndex = 5;
     this.groupBox2.TabStop = false;
     this.groupBox2.Text = "To";
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label3.Location = new System.Drawing.Point(6, 21);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(52, 15);
     this.label3.TabIndex = 0;
     this.label3.Text = "Branch :";
     //
     // combo_DuplicateYearTo
     //
     this.combo_DuplicateYearTo.FormattingEnabled = true;
     this.combo_DuplicateYearTo.Location = new System.Drawing.Point(64, 47);
     this.combo_DuplicateYearTo.Name = "combo_DuplicateYearTo";
     this.combo_DuplicateYearTo.Size = new System.Drawing.Size(121, 21);
     this.combo_DuplicateYearTo.TabIndex = 3;
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label4.Location = new System.Drawing.Point(6, 51);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(38, 15);
     this.label4.TabIndex = 1;
     this.label4.Text = "Year :";
     //
     // combo_DuplicateBranchTo
     //
     this.combo_DuplicateBranchTo.FormattingEnabled = true;
     this.combo_DuplicateBranchTo.Location = new System.Drawing.Point(65, 19);
     this.combo_DuplicateBranchTo.Name = "combo_DuplicateBranchTo";
     this.combo_DuplicateBranchTo.Size = new System.Drawing.Size(121, 21);
     this.combo_DuplicateBranchTo.TabIndex = 2;
     //
     // btn_Duplicate
     //
     this.btn_Duplicate.Location = new System.Drawing.Point(191, 112);
     this.btn_Duplicate.Name = "btn_Duplicate";
     this.btn_Duplicate.Size = new System.Drawing.Size(75, 23);
     this.btn_Duplicate.TabIndex = 6;
     this.btn_Duplicate.Text = "Duplicate";
     this.btn_Duplicate.UseVisualStyleBackColor = true;
     this.btn_Duplicate.Click += new System.EventHandler(this.btn_Duplicate_Click);
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.label1);
     this.groupBox1.Controls.Add(this.combo_DuplicateYearFrom);
     this.groupBox1.Controls.Add(this.label2);
     this.groupBox1.Controls.Add(this.combo_DuplicateBranchFrom);
     this.groupBox1.Location = new System.Drawing.Point(18, 21);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Size = new System.Drawing.Size(192, 79);
     this.groupBox1.TabIndex = 4;
     this.groupBox1.TabStop = false;
     this.groupBox1.Text = "From";
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label1.Location = new System.Drawing.Point(6, 21);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(52, 15);
     this.label1.TabIndex = 0;
     this.label1.Text = "Branch :";
     //
     // combo_DuplicateYearFrom
     //
     this.combo_DuplicateYearFrom.FormattingEnabled = true;
     this.combo_DuplicateYearFrom.Location = new System.Drawing.Point(64, 50);
     this.combo_DuplicateYearFrom.Name = "combo_DuplicateYearFrom";
     this.combo_DuplicateYearFrom.Size = new System.Drawing.Size(121, 21);
     this.combo_DuplicateYearFrom.TabIndex = 3;
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label2.Location = new System.Drawing.Point(6, 51);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(38, 15);
     this.label2.TabIndex = 1;
     this.label2.Text = "Year :";
     //
     // combo_DuplicateBranchFrom
     //
     this.combo_DuplicateBranchFrom.FormattingEnabled = true;
     this.combo_DuplicateBranchFrom.Location = new System.Drawing.Point(64, 20);
     this.combo_DuplicateBranchFrom.Name = "combo_DuplicateBranchFrom";
     this.combo_DuplicateBranchFrom.Size = new System.Drawing.Size(121, 21);
     this.combo_DuplicateBranchFrom.TabIndex = 2;
     //
     // label31
     //
     this.label31.BackColor = System.Drawing.Color.Transparent;
     this.label31.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label31.Location = new System.Drawing.Point(8, 24);
     this.label31.Name = "label31";
     this.label31.Size = new System.Drawing.Size(136, 16);
     this.label31.TabIndex = 116;
     this.label31.Text = "Sales Rank";
     this.label31.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // ddlSalesRank
     //
     this.ddlSalesRank.EditValue = 0;
     this.ddlSalesRank.Location = new System.Drawing.Point(144, 24);
     this.ddlSalesRank.Name = "ddlSalesRank";
     this.ddlSalesRank.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.ddlSalesRank.Properties.Items.AddRange(new DevExpress.XtraEditors.Controls.ImageComboBoxItem[] {
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Fitness Package/Product", 0, -1),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Spa Package/IPL Service", 1, -1),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Spa Product", 2, -1),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("PT Service", 3, -1),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Cross Selling", 4, -1),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Merge", 5, -1)});
     this.ddlSalesRank.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.ddlSalesRank.Properties.SmallImages = "";
     this.ddlSalesRank.Size = new System.Drawing.Size(176, 20);
     this.ddlSalesRank.TabIndex = 19;
     this.ddlSalesRank.SelectedIndexChanged += new System.EventHandler(this.ddlSalesRank_SelectedIndexChanged);
     //
     // grpCommPT
     //
     this.grpCommPT.Controls.Add(this.btn_AddPT);
     this.grpCommPT.Controls.Add(this.btn_DelPT);
     this.grpCommPT.Controls.Add(this.groupControl3);
     this.grpCommPT.Location = new System.Drawing.Point(4, 48);
     this.grpCommPT.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.grpCommPT.LookAndFeel.UseDefaultLookAndFeel = false;
     this.grpCommPT.Name = "grpCommPT";
     this.grpCommPT.Size = new System.Drawing.Size(960, 237);
     this.grpCommPT.TabIndex = 137;
     this.grpCommPT.Text = "Sales Target";
     this.grpCommPT.Visible = false;
     //
     // btn_AddPT
     //
     this.btn_AddPT.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btn_AddPT.Appearance.Options.UseFont = true;
     this.btn_AddPT.Appearance.Options.UseTextOptions = true;
     this.btn_AddPT.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.btn_AddPT.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.btn_AddPT.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.btn_AddPT.ImageIndex = 0;
     this.btn_AddPT.ImageList = this.imageList1;
     this.btn_AddPT.ImeMode = System.Windows.Forms.ImeMode.On;
     this.btn_AddPT.Location = new System.Drawing.Point(8, 24);
     this.btn_AddPT.Name = "btn_AddPT";
     this.btn_AddPT.Size = new System.Drawing.Size(38, 16);
     this.btn_AddPT.TabIndex = 136;
     this.btn_AddPT.Click += new System.EventHandler(this.btn_AddPT_Click);
     //
     // imageList1
     //
     this.imageList1.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
     this.imageList1.TransparentColor = System.Drawing.Color.Magenta;
     this.imageList1.Images.SetKeyName(0, "");
     this.imageList1.Images.SetKeyName(1, "");
     this.imageList1.Images.SetKeyName(2, "");
     this.imageList1.Images.SetKeyName(3, "");
     this.imageList1.Images.SetKeyName(4, "");
     this.imageList1.Images.SetKeyName(5, "");
     this.imageList1.Images.SetKeyName(6, "");
     //
     // btn_DelPT
     //
     this.btn_DelPT.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btn_DelPT.Appearance.Options.UseFont = true;
     this.btn_DelPT.Appearance.Options.UseTextOptions = true;
     this.btn_DelPT.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.btn_DelPT.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.btn_DelPT.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.btn_DelPT.ImageIndex = 1;
     this.btn_DelPT.ImageList = this.imageList1;
     this.btn_DelPT.Location = new System.Drawing.Point(48, 24);
     this.btn_DelPT.Name = "btn_DelPT";
     this.btn_DelPT.Size = new System.Drawing.Size(38, 16);
     this.btn_DelPT.TabIndex = 135;
     this.btn_DelPT.Click += new System.EventHandler(this.btn_DelPT_Click);
     //
     // groupControl3
     //
     this.groupControl3.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.groupControl3.Controls.Add(this.gridControlMd_CommPT);
     this.groupControl3.Location = new System.Drawing.Point(0, 40);
     this.groupControl3.Name = "groupControl3";
     this.groupControl3.Size = new System.Drawing.Size(952, 192);
     this.groupControl3.TabIndex = 2;
     this.groupControl3.Text = "groupControl3";
     //
     // gridControlMd_CommPT
     //
     this.gridControlMd_CommPT.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridControlMd_CommPT.Location = new System.Drawing.Point(0, 0);
     this.gridControlMd_CommPT.LookAndFeel.UseDefaultLookAndFeel = false;
     this.gridControlMd_CommPT.MainView = this.gridViewMd_CommPT;
     this.gridControlMd_CommPT.Name = "gridControlMd_CommPT";
     this.gridControlMd_CommPT.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemLookUpEdit1,
     this.repositoryItemDateEdit1,
     this.repositoryItemDateEdit2,
     this.lk_Position3,
     this.lk_BranchCode3,
     this.chk_Month3});
     this.gridControlMd_CommPT.Size = new System.Drawing.Size(952, 192);
     this.gridControlMd_CommPT.TabIndex = 2;
     this.gridControlMd_CommPT.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewMd_CommPT});
     //
     // gridViewMd_CommPT
     //
     this.gridViewMd_CommPT.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumnCommPT8,
     this.gridColumnCommPT9,
     this.gridColumnCommPT10,
     this.gridColumnCommPT1,
     this.gridColumnCommPT2,
     this.gridColumnCommPT3,
     this.gridColumnCommPT4,
     this.gridColumnCommPT5,
     this.gridColumnCommPT6,
     this.gridColumnCommPT7,
     this.gridColumnCommPT11});
     this.gridViewMd_CommPT.GridControl = this.gridControlMd_CommPT;
     this.gridViewMd_CommPT.HorzScrollVisibility = DevExpress.XtraGrid.Views.Base.ScrollVisibility.Always;
     this.gridViewMd_CommPT.Name = "gridViewMd_CommPT";
     this.gridViewMd_CommPT.OptionsView.ColumnAutoWidth = false;
     this.gridViewMd_CommPT.OptionsView.HeaderFilterButtonShowMode = DevExpress.XtraEditors.Controls.FilterButtonShowMode.Button;
     this.gridViewMd_CommPT.OptionsView.ShowGroupPanel = false;
     this.gridViewMd_CommPT.VertScrollVisibility = DevExpress.XtraGrid.Views.Base.ScrollVisibility.Always;
     this.gridViewMd_CommPT.LostFocus += new System.EventHandler(this.gridViewMd_CommPT_LostFocus);
     //
     // gridColumnCommPT8
     //
     this.gridColumnCommPT8.Caption = "Branch";
     this.gridColumnCommPT8.ColumnEdit = this.lk_BranchCode3;
     this.gridColumnCommPT8.FieldName = "strBranchCode";
     this.gridColumnCommPT8.Name = "gridColumnCommPT8";
     this.gridColumnCommPT8.Visible = true;
     this.gridColumnCommPT8.VisibleIndex = 0;
     this.gridColumnCommPT8.Width = 90;
     //
     // lk_BranchCode3
     //
     this.lk_BranchCode3.AutoHeight = false;
     this.lk_BranchCode3.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lk_BranchCode3.Name = "lk_BranchCode3";
     //
     // gridColumnCommPT9
     //
     this.gridColumnCommPT9.Caption = "Year";
     this.gridColumnCommPT9.FieldName = "nYear";
     this.gridColumnCommPT9.Name = "gridColumnCommPT9";
     this.gridColumnCommPT9.Visible = true;
     this.gridColumnCommPT9.VisibleIndex = 1;
     this.gridColumnCommPT9.Width = 90;
     //
     // gridColumnCommPT10
     //
     this.gridColumnCommPT10.Caption = "Month";
     this.gridColumnCommPT10.ColumnEdit = this.chk_Month3;
     this.gridColumnCommPT10.FieldName = "nMonth";
     this.gridColumnCommPT10.Name = "gridColumnCommPT10";
     this.gridColumnCommPT10.Visible = true;
     this.gridColumnCommPT10.VisibleIndex = 2;
     this.gridColumnCommPT10.Width = 90;
     //
     // chk_Month3
     //
     this.chk_Month3.AutoHeight = false;
     this.chk_Month3.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.chk_Month3.Items.AddRange(new object[] {
     "1",
     "2",
     "3",
     "4",
     "5",
     "6",
     "7",
     "8",
     "9",
     "10",
     "11",
     "12"});
     this.chk_Month3.Name = "chk_Month3";
     //
     // gridColumnCommPT1
     //
     this.gridColumnCommPT1.Caption = "Position";
     this.gridColumnCommPT1.ColumnEdit = this.lk_Position3;
     this.gridColumnCommPT1.FieldName = "strCommID";
     this.gridColumnCommPT1.Name = "gridColumnCommPT1";
     this.gridColumnCommPT1.Visible = true;
     this.gridColumnCommPT1.VisibleIndex = 3;
     this.gridColumnCommPT1.Width = 90;
     //
     // lk_Position3
     //
     this.lk_Position3.AutoHeight = false;
     this.lk_Position3.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lk_Position3.Name = "lk_Position3";
     //
     // gridColumnCommPT2
     //
     this.gridColumnCommPT2.Caption = "Description";
     this.gridColumnCommPT2.FieldName = "strDesc";
     this.gridColumnCommPT2.Name = "gridColumnCommPT2";
     this.gridColumnCommPT2.OptionsFilter.AllowFilter = false;
     this.gridColumnCommPT2.Visible = true;
     this.gridColumnCommPT2.VisibleIndex = 4;
     this.gridColumnCommPT2.Width = 90;
     //
     // gridColumnCommPT3
     //
     this.gridColumnCommPT3.Caption = "PT Session From";
     this.gridColumnCommPT3.FieldName = "nPTSessionFrom";
     this.gridColumnCommPT3.Name = "gridColumnCommPT3";
     this.gridColumnCommPT3.OptionsFilter.AllowFilter = false;
     this.gridColumnCommPT3.Visible = true;
     this.gridColumnCommPT3.VisibleIndex = 5;
     this.gridColumnCommPT3.Width = 90;
     //
     // gridColumnCommPT4
     //
     this.gridColumnCommPT4.Caption = "PT Session To";
     this.gridColumnCommPT4.FieldName = "nPTSessionTo";
     this.gridColumnCommPT4.Name = "gridColumnCommPT4";
     this.gridColumnCommPT4.OptionsFilter.AllowFilter = false;
     this.gridColumnCommPT4.Visible = true;
     this.gridColumnCommPT4.VisibleIndex = 6;
     this.gridColumnCommPT4.Width = 90;
     //
     // gridColumnCommPT5
     //
     this.gridColumnCommPT5.Caption = "PT Comm";
     this.gridColumnCommPT5.FieldName = "nPTComm";
     this.gridColumnCommPT5.Name = "gridColumnCommPT5";
     this.gridColumnCommPT5.OptionsFilter.AllowFilter = false;
     this.gridColumnCommPT5.Visible = true;
     this.gridColumnCommPT5.VisibleIndex = 7;
     this.gridColumnCommPT5.Width = 90;
     //
     // gridColumnCommPT6
     //
     this.gridColumnCommPT6.Caption = "Target From";
     this.gridColumnCommPT6.FieldName = "mTargetFrom";
     this.gridColumnCommPT6.Name = "gridColumnCommPT6";
     this.gridColumnCommPT6.OptionsFilter.AllowFilter = false;
     this.gridColumnCommPT6.Visible = true;
     this.gridColumnCommPT6.VisibleIndex = 8;
     this.gridColumnCommPT6.Width = 90;
     //
     // gridColumnCommPT7
     //
     this.gridColumnCommPT7.Caption = "Target To";
     this.gridColumnCommPT7.FieldName = "mTargetTo";
     this.gridColumnCommPT7.Name = "gridColumnCommPT7";
     this.gridColumnCommPT7.OptionsFilter.AllowFilter = false;
     this.gridColumnCommPT7.Visible = true;
     this.gridColumnCommPT7.VisibleIndex = 9;
     this.gridColumnCommPT7.Width = 90;
     //
     // gridColumnCommPT11
     //
     this.gridColumnCommPT11.Caption = "CommPTID";
     this.gridColumnCommPT11.FieldName = "nCommPTID";
     this.gridColumnCommPT11.Name = "gridColumnCommPT11";
     this.gridColumnCommPT11.OptionsFilter.AllowFilter = false;
     this.gridColumnCommPT11.Width = 64;
     //
     // repositoryItemLookUpEdit1
     //
     this.repositoryItemLookUpEdit1.AutoHeight = false;
     this.repositoryItemLookUpEdit1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemLookUpEdit1.Name = "repositoryItemLookUpEdit1";
     //
     // repositoryItemDateEdit1
     //
     this.repositoryItemDateEdit1.AutoHeight = false;
     this.repositoryItemDateEdit1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemDateEdit1.Name = "repositoryItemDateEdit1";
     this.repositoryItemDateEdit1.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     //
     // repositoryItemDateEdit2
     //
     this.repositoryItemDateEdit2.AutoHeight = false;
     this.repositoryItemDateEdit2.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemDateEdit2.Name = "repositoryItemDateEdit2";
     this.repositoryItemDateEdit2.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     //
     // grpCommProductTherapist
     //
     this.grpCommProductTherapist.Controls.Add(this.btn_AddProductTherapist);
     this.grpCommProductTherapist.Controls.Add(this.btn_DelProductTherapist);
     this.grpCommProductTherapist.Controls.Add(this.groupControl5);
     this.grpCommProductTherapist.Location = new System.Drawing.Point(4, 48);
     this.grpCommProductTherapist.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.grpCommProductTherapist.LookAndFeel.UseDefaultLookAndFeel = false;
     this.grpCommProductTherapist.Name = "grpCommProductTherapist";
     this.grpCommProductTherapist.Size = new System.Drawing.Size(960, 237);
     this.grpCommProductTherapist.TabIndex = 121;
     this.grpCommProductTherapist.Text = "Sales Target";
     this.grpCommProductTherapist.Visible = false;
     //
     // btn_AddProductTherapist
     //
     this.btn_AddProductTherapist.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btn_AddProductTherapist.Appearance.Options.UseFont = true;
     this.btn_AddProductTherapist.Appearance.Options.UseTextOptions = true;
     this.btn_AddProductTherapist.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.btn_AddProductTherapist.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.btn_AddProductTherapist.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.btn_AddProductTherapist.ImageIndex = 0;
     this.btn_AddProductTherapist.ImageList = this.imageList1;
     this.btn_AddProductTherapist.ImeMode = System.Windows.Forms.ImeMode.On;
     this.btn_AddProductTherapist.Location = new System.Drawing.Point(8, 24);
     this.btn_AddProductTherapist.Name = "btn_AddProductTherapist";
     this.btn_AddProductTherapist.Size = new System.Drawing.Size(38, 16);
     this.btn_AddProductTherapist.TabIndex = 136;
     this.btn_AddProductTherapist.Click += new System.EventHandler(this.btn_AddProductTherapist_Click);
     //
     // btn_DelProductTherapist
     //
     this.btn_DelProductTherapist.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btn_DelProductTherapist.Appearance.Options.UseFont = true;
     this.btn_DelProductTherapist.Appearance.Options.UseTextOptions = true;
     this.btn_DelProductTherapist.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.btn_DelProductTherapist.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.btn_DelProductTherapist.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.btn_DelProductTherapist.ImageIndex = 1;
     this.btn_DelProductTherapist.ImageList = this.imageList1;
     this.btn_DelProductTherapist.Location = new System.Drawing.Point(48, 24);
     this.btn_DelProductTherapist.Name = "btn_DelProductTherapist";
     this.btn_DelProductTherapist.Size = new System.Drawing.Size(38, 16);
     this.btn_DelProductTherapist.TabIndex = 135;
     this.btn_DelProductTherapist.Click += new System.EventHandler(this.btn_DelProductTherapist_Click);
     //
     // groupControl5
     //
     this.groupControl5.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.groupControl5.Controls.Add(this.gridControlMd_CommProductTherapist);
     this.groupControl5.Location = new System.Drawing.Point(0, 40);
     this.groupControl5.Name = "groupControl5";
     this.groupControl5.Size = new System.Drawing.Size(952, 192);
     this.groupControl5.TabIndex = 2;
     this.groupControl5.Text = "groupControl5";
     //
     // gridControlMd_CommProductTherapist
     //
     this.gridControlMd_CommProductTherapist.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridControlMd_CommProductTherapist.Location = new System.Drawing.Point(0, 0);
     this.gridControlMd_CommProductTherapist.LookAndFeel.UseDefaultLookAndFeel = false;
     this.gridControlMd_CommProductTherapist.MainView = this.gridViewMd_CommProductTherapist;
     this.gridControlMd_CommProductTherapist.Name = "gridControlMd_CommProductTherapist";
     this.gridControlMd_CommProductTherapist.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.lk_CreditCategoryID,
     this.EffCCStartDate,
     this.EffCCEndDate,
     this.lk_Position2,
     this.lk_BranchCode2,
     this.chk_Month2});
     this.gridControlMd_CommProductTherapist.Size = new System.Drawing.Size(952, 192);
     this.gridControlMd_CommProductTherapist.TabIndex = 2;
     this.gridControlMd_CommProductTherapist.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewMd_CommProductTherapist});
     //
     // gridViewMd_CommProductTherapist
     //
     this.gridViewMd_CommProductTherapist.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumnPT2,
     this.gridColumnPT4,
     this.gridColumnPT3,
     this.gridColumnPT1,
     this.gridColumnPT5,
     this.gridColumnPT6});
     this.gridViewMd_CommProductTherapist.GridControl = this.gridControlMd_CommProductTherapist;
     this.gridViewMd_CommProductTherapist.HorzScrollVisibility = DevExpress.XtraGrid.Views.Base.ScrollVisibility.Always;
     this.gridViewMd_CommProductTherapist.Name = "gridViewMd_CommProductTherapist";
     this.gridViewMd_CommProductTherapist.OptionsView.ColumnAutoWidth = false;
     this.gridViewMd_CommProductTherapist.OptionsView.HeaderFilterButtonShowMode = DevExpress.XtraEditors.Controls.FilterButtonShowMode.Button;
     this.gridViewMd_CommProductTherapist.OptionsView.ShowGroupPanel = false;
     this.gridViewMd_CommProductTherapist.VertScrollVisibility = DevExpress.XtraGrid.Views.Base.ScrollVisibility.Always;
     this.gridViewMd_CommProductTherapist.LostFocus += new System.EventHandler(this.gridViewMd_CommProductTherapist_LostFocus);
     //
     // gridColumnPT2
     //
     this.gridColumnPT2.Caption = "Branch";
     this.gridColumnPT2.ColumnEdit = this.lk_BranchCode2;
     this.gridColumnPT2.FieldName = "strBranchCode";
     this.gridColumnPT2.Name = "gridColumnPT2";
     this.gridColumnPT2.Visible = true;
     this.gridColumnPT2.VisibleIndex = 0;
     this.gridColumnPT2.Width = 90;
     //
     // lk_BranchCode2
     //
     this.lk_BranchCode2.AutoHeight = false;
     this.lk_BranchCode2.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lk_BranchCode2.Name = "lk_BranchCode2";
     //
     // gridColumnPT4
     //
     this.gridColumnPT4.Caption = "Year";
     this.gridColumnPT4.FieldName = "nYear";
     this.gridColumnPT4.Name = "gridColumnPT4";
     this.gridColumnPT4.Visible = true;
     this.gridColumnPT4.VisibleIndex = 1;
     this.gridColumnPT4.Width = 90;
     //
     // gridColumnPT3
     //
     this.gridColumnPT3.Caption = "Month";
     this.gridColumnPT3.ColumnEdit = this.chk_Month2;
     this.gridColumnPT3.FieldName = "nMonth";
     this.gridColumnPT3.Name = "gridColumnPT3";
     this.gridColumnPT3.Visible = true;
     this.gridColumnPT3.VisibleIndex = 2;
     this.gridColumnPT3.Width = 90;
     //
     // chk_Month2
     //
     this.chk_Month2.AutoHeight = false;
     this.chk_Month2.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.chk_Month2.Items.AddRange(new object[] {
     "1",
     "2",
     "3",
     "4",
     "5",
     "6",
     "7",
     "8",
     "9",
     "10",
     "11",
     "12"});
     this.chk_Month2.Name = "chk_Month2";
     //
     // gridColumnPT1
     //
     this.gridColumnPT1.Caption = "Position";
     this.gridColumnPT1.ColumnEdit = this.lk_Position2;
     this.gridColumnPT1.FieldName = "strPosition";
     this.gridColumnPT1.Name = "gridColumnPT1";
     this.gridColumnPT1.Visible = true;
     this.gridColumnPT1.VisibleIndex = 3;
     this.gridColumnPT1.Width = 90;
     //
     // lk_Position2
     //
     this.lk_Position2.AutoHeight = false;
     this.lk_Position2.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lk_Position2.Name = "lk_Position2";
     //
     // gridColumnPT5
     //
     this.gridColumnPT5.Caption = "Product Target";
     this.gridColumnPT5.FieldName = "mProductTarget";
     this.gridColumnPT5.Name = "gridColumnPT5";
     this.gridColumnPT5.OptionsFilter.AllowFilter = false;
     this.gridColumnPT5.Visible = true;
     this.gridColumnPT5.VisibleIndex = 4;
     this.gridColumnPT5.Width = 90;
     //
     // gridColumnPT6
     //
     this.gridColumnPT6.Caption = "Product Therapist ID";
     this.gridColumnPT6.FieldName = "nCommProductTherapistID";
     this.gridColumnPT6.Name = "gridColumnPT6";
     this.gridColumnPT6.OptionsFilter.AllowFilter = false;
     this.gridColumnPT6.Width = 111;
     //
     // lk_CreditCategoryID
     //
     this.lk_CreditCategoryID.AutoHeight = false;
     this.lk_CreditCategoryID.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lk_CreditCategoryID.Name = "lk_CreditCategoryID";
     //
     // EffCCStartDate
     //
     this.EffCCStartDate.AutoHeight = false;
     this.EffCCStartDate.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.EffCCStartDate.Name = "EffCCStartDate";
     this.EffCCStartDate.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     //
     // EffCCEndDate
     //
     this.EffCCEndDate.AutoHeight = false;
     this.EffCCEndDate.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.EffCCEndDate.Name = "EffCCEndDate";
     this.EffCCEndDate.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     //
     // grpCommCST
     //
     this.grpCommCST.Controls.Add(this.btn_AddCST);
     this.grpCommCST.Controls.Add(this.btn_DelCST);
     this.grpCommCST.Controls.Add(this.groupControl6);
     this.grpCommCST.Location = new System.Drawing.Point(4, 48);
     this.grpCommCST.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.grpCommCST.LookAndFeel.UseDefaultLookAndFeel = false;
     this.grpCommCST.Name = "grpCommCST";
     this.grpCommCST.Size = new System.Drawing.Size(960, 237);
     this.grpCommCST.TabIndex = 138;
     this.grpCommCST.Text = "Sales Target";
     this.grpCommCST.Visible = false;
     //
     // btn_AddCST
     //
     this.btn_AddCST.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btn_AddCST.Appearance.Options.UseFont = true;
     this.btn_AddCST.Appearance.Options.UseTextOptions = true;
     this.btn_AddCST.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.btn_AddCST.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.btn_AddCST.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.btn_AddCST.ImageIndex = 0;
     this.btn_AddCST.ImageList = this.imageList1;
     this.btn_AddCST.ImeMode = System.Windows.Forms.ImeMode.On;
     this.btn_AddCST.Location = new System.Drawing.Point(8, 24);
     this.btn_AddCST.Name = "btn_AddCST";
     this.btn_AddCST.Size = new System.Drawing.Size(38, 16);
     this.btn_AddCST.TabIndex = 136;
     this.btn_AddCST.Click += new System.EventHandler(this.btn_AddCST_Click);
     //
     // btn_DelCST
     //
     this.btn_DelCST.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btn_DelCST.Appearance.Options.UseFont = true;
     this.btn_DelCST.Appearance.Options.UseTextOptions = true;
     this.btn_DelCST.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.btn_DelCST.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.btn_DelCST.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.btn_DelCST.ImageIndex = 1;
     this.btn_DelCST.ImageList = this.imageList1;
     this.btn_DelCST.Location = new System.Drawing.Point(48, 24);
     this.btn_DelCST.Name = "btn_DelCST";
     this.btn_DelCST.Size = new System.Drawing.Size(38, 16);
     this.btn_DelCST.TabIndex = 135;
     this.btn_DelCST.Click += new System.EventHandler(this.btn_DelCST_Click);
     //
     // groupControl6
     //
     this.groupControl6.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.groupControl6.Controls.Add(this.gridControlMd_CommCST);
     this.groupControl6.Location = new System.Drawing.Point(0, 40);
     this.groupControl6.Name = "groupControl6";
     this.groupControl6.Size = new System.Drawing.Size(952, 192);
     this.groupControl6.TabIndex = 2;
     this.groupControl6.Text = "groupControl6";
     //
     // gridControlMd_CommCST
     //
     this.gridControlMd_CommCST.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridControlMd_CommCST.Location = new System.Drawing.Point(0, 0);
     this.gridControlMd_CommCST.LookAndFeel.UseDefaultLookAndFeel = false;
     this.gridControlMd_CommCST.MainView = this.gridViewMd_CommCST;
     this.gridControlMd_CommCST.Name = "gridControlMd_CommCST";
     this.gridControlMd_CommCST.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemLookUpEdit2,
     this.repositoryItemDateEdit3,
     this.repositoryItemDateEdit4,
     this.lk_Position4,
     this.lk_BranchCode4,
     this.chk_Month4});
     this.gridControlMd_CommCST.Size = new System.Drawing.Size(952, 192);
     this.gridControlMd_CommCST.TabIndex = 2;
     this.gridControlMd_CommCST.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewMd_CommCST});
     //
     // gridViewMd_CommCST
     //
     this.gridViewMd_CommCST.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumnCST3,
     this.gridColumnCST7,
     this.gridColumnCST8,
     this.gridColumnCST1,
     this.gridColumnCST2,
     this.gridColumnCST4,
     this.gridColumnCST5,
     this.gridColumnCST6,
     this.gridColumnCST9});
     this.gridViewMd_CommCST.GridControl = this.gridControlMd_CommCST;
     this.gridViewMd_CommCST.HorzScrollVisibility = DevExpress.XtraGrid.Views.Base.ScrollVisibility.Always;
     this.gridViewMd_CommCST.Name = "gridViewMd_CommCST";
     this.gridViewMd_CommCST.OptionsView.ColumnAutoWidth = false;
     this.gridViewMd_CommCST.OptionsView.HeaderFilterButtonShowMode = DevExpress.XtraEditors.Controls.FilterButtonShowMode.Button;
     this.gridViewMd_CommCST.OptionsView.ShowGroupPanel = false;
     this.gridViewMd_CommCST.VertScrollVisibility = DevExpress.XtraGrid.Views.Base.ScrollVisibility.Always;
     this.gridViewMd_CommCST.LostFocus += new System.EventHandler(this.gridViewMd_CommCST_LostFocus);
     //
     // gridColumnCST3
     //
     this.gridColumnCST3.Caption = "Branch";
     this.gridColumnCST3.ColumnEdit = this.lk_BranchCode4;
     this.gridColumnCST3.FieldName = "strBranch";
     this.gridColumnCST3.Name = "gridColumnCST3";
     this.gridColumnCST3.Visible = true;
     this.gridColumnCST3.VisibleIndex = 0;
     this.gridColumnCST3.Width = 90;
     //
     // lk_BranchCode4
     //
     this.lk_BranchCode4.AutoHeight = false;
     this.lk_BranchCode4.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lk_BranchCode4.Name = "lk_BranchCode4";
     //
     // gridColumnCST7
     //
     this.gridColumnCST7.Caption = "Year";
     this.gridColumnCST7.FieldName = "nYear";
     this.gridColumnCST7.Name = "gridColumnCST7";
     this.gridColumnCST7.Visible = true;
     this.gridColumnCST7.VisibleIndex = 1;
     this.gridColumnCST7.Width = 90;
     //
     // gridColumnCST8
     //
     this.gridColumnCST8.Caption = "Month";
     this.gridColumnCST8.ColumnEdit = this.chk_Month4;
     this.gridColumnCST8.FieldName = "nMonth";
     this.gridColumnCST8.Name = "gridColumnCST8";
     this.gridColumnCST8.Visible = true;
     this.gridColumnCST8.VisibleIndex = 2;
     this.gridColumnCST8.Width = 90;
     //
     // chk_Month4
     //
     this.chk_Month4.AutoHeight = false;
     this.chk_Month4.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.chk_Month4.Items.AddRange(new object[] {
     "1",
     "2",
     "3",
     "4",
     "5",
     "6",
     "7",
     "8",
     "9",
     "10",
     "11",
     "12"});
     this.chk_Month4.Name = "chk_Month4";
     //
     // gridColumnCST1
     //
     this.gridColumnCST1.Caption = "Position";
     this.gridColumnCST1.ColumnEdit = this.lk_Position4;
     this.gridColumnCST1.FieldName = "strCommID";
     this.gridColumnCST1.Name = "gridColumnCST1";
     this.gridColumnCST1.Visible = true;
     this.gridColumnCST1.VisibleIndex = 3;
     this.gridColumnCST1.Width = 90;
     //
     // lk_Position4
     //
     this.lk_Position4.AutoHeight = false;
     this.lk_Position4.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lk_Position4.Name = "lk_Position4";
     //
     // gridColumnCST2
     //
     this.gridColumnCST2.Caption = "Description";
     this.gridColumnCST2.FieldName = "strDesc";
     this.gridColumnCST2.Name = "gridColumnCST2";
     this.gridColumnCST2.OptionsFilter.AllowFilter = false;
     this.gridColumnCST2.Visible = true;
     this.gridColumnCST2.VisibleIndex = 4;
     this.gridColumnCST2.Width = 90;
     //
     // gridColumnCST4
     //
     this.gridColumnCST4.Caption = "Commission";
     this.gridColumnCST4.FieldName = "nCommision";
     this.gridColumnCST4.Name = "gridColumnCST4";
     this.gridColumnCST4.OptionsFilter.AllowFilter = false;
     this.gridColumnCST4.Visible = true;
     this.gridColumnCST4.VisibleIndex = 5;
     this.gridColumnCST4.Width = 90;
     //
     // gridColumnCST5
     //
     this.gridColumnCST5.Caption = "Target From";
     this.gridColumnCST5.FieldName = "mTargetFrom";
     this.gridColumnCST5.Name = "gridColumnCST5";
     this.gridColumnCST5.OptionsFilter.AllowFilter = false;
     this.gridColumnCST5.Visible = true;
     this.gridColumnCST5.VisibleIndex = 6;
     this.gridColumnCST5.Width = 90;
     //
     // gridColumnCST6
     //
     this.gridColumnCST6.Caption = "Target To";
     this.gridColumnCST6.FieldName = "mTargetTo";
     this.gridColumnCST6.Name = "gridColumnCST6";
     this.gridColumnCST6.OptionsFilter.AllowFilter = false;
     this.gridColumnCST6.Visible = true;
     this.gridColumnCST6.VisibleIndex = 7;
     this.gridColumnCST6.Width = 90;
     //
     // gridColumnCST9
     //
     this.gridColumnCST9.Caption = "CommCST";
     this.gridColumnCST9.FieldName = "nCommCST";
     this.gridColumnCST9.Name = "gridColumnCST9";
     this.gridColumnCST9.OptionsFilter.AllowFilter = false;
     this.gridColumnCST9.Width = 60;
     //
     // repositoryItemLookUpEdit2
     //
     this.repositoryItemLookUpEdit2.AutoHeight = false;
     this.repositoryItemLookUpEdit2.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemLookUpEdit2.Name = "repositoryItemLookUpEdit2";
     //
     // repositoryItemDateEdit3
     //
     this.repositoryItemDateEdit3.AutoHeight = false;
     this.repositoryItemDateEdit3.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemDateEdit3.Name = "repositoryItemDateEdit3";
     this.repositoryItemDateEdit3.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     //
     // repositoryItemDateEdit4
     //
     this.repositoryItemDateEdit4.AutoHeight = false;
     this.repositoryItemDateEdit4.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemDateEdit4.Name = "repositoryItemDateEdit4";
     this.repositoryItemDateEdit4.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     //
     // grpCommMerge
     //
     this.grpCommMerge.Controls.Add(this.btn_AddMerge);
     this.grpCommMerge.Controls.Add(this.btn_DelMerge);
     this.grpCommMerge.Controls.Add(this.groupControl7);
     this.grpCommMerge.Location = new System.Drawing.Point(4, 48);
     this.grpCommMerge.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.grpCommMerge.LookAndFeel.UseDefaultLookAndFeel = false;
     this.grpCommMerge.Name = "grpCommMerge";
     this.grpCommMerge.Size = new System.Drawing.Size(960, 237);
     this.grpCommMerge.TabIndex = 139;
     this.grpCommMerge.Text = "Sales Target";
     this.grpCommMerge.Visible = false;
     //
     // btn_AddMerge
     //
     this.btn_AddMerge.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btn_AddMerge.Appearance.Options.UseFont = true;
     this.btn_AddMerge.Appearance.Options.UseTextOptions = true;
     this.btn_AddMerge.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.btn_AddMerge.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.btn_AddMerge.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.btn_AddMerge.ImageIndex = 0;
     this.btn_AddMerge.ImageList = this.imageList1;
     this.btn_AddMerge.ImeMode = System.Windows.Forms.ImeMode.On;
     this.btn_AddMerge.Location = new System.Drawing.Point(8, 24);
     this.btn_AddMerge.Name = "btn_AddMerge";
     this.btn_AddMerge.Size = new System.Drawing.Size(38, 16);
     this.btn_AddMerge.TabIndex = 136;
     this.btn_AddMerge.Click += new System.EventHandler(this.btn_AddMerge_Click);
     //
     // btn_DelMerge
     //
     this.btn_DelMerge.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btn_DelMerge.Appearance.Options.UseFont = true;
     this.btn_DelMerge.Appearance.Options.UseTextOptions = true;
     this.btn_DelMerge.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.btn_DelMerge.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.btn_DelMerge.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.btn_DelMerge.ImageIndex = 1;
     this.btn_DelMerge.ImageList = this.imageList1;
     this.btn_DelMerge.Location = new System.Drawing.Point(48, 24);
     this.btn_DelMerge.Name = "btn_DelMerge";
     this.btn_DelMerge.Size = new System.Drawing.Size(38, 16);
     this.btn_DelMerge.TabIndex = 135;
     this.btn_DelMerge.Click += new System.EventHandler(this.btn_DelMerge_Click);
     //
     // groupControl7
     //
     this.groupControl7.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.groupControl7.Controls.Add(this.gridControlMd_CommMerge);
     this.groupControl7.Location = new System.Drawing.Point(0, 40);
     this.groupControl7.Name = "groupControl7";
     this.groupControl7.Size = new System.Drawing.Size(952, 192);
     this.groupControl7.TabIndex = 2;
     this.groupControl7.Text = "groupControl7";
     //
     // gridControlMd_CommMerge
     //
     this.gridControlMd_CommMerge.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridControlMd_CommMerge.Location = new System.Drawing.Point(0, 0);
     this.gridControlMd_CommMerge.LookAndFeel.UseDefaultLookAndFeel = false;
     this.gridControlMd_CommMerge.MainView = this.gridViewMd_CommMerge;
     this.gridControlMd_CommMerge.Name = "gridControlMd_CommMerge";
     this.gridControlMd_CommMerge.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemLookUpEdit3,
     this.repositoryItemDateEdit5,
     this.repositoryItemDateEdit6,
     this.lk_BranchCode5,
     this.lk_Position5,
     this.chk_Month5});
     this.gridControlMd_CommMerge.Size = new System.Drawing.Size(952, 192);
     this.gridControlMd_CommMerge.TabIndex = 2;
     this.gridControlMd_CommMerge.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewMd_CommMerge,
     this.gridView1});
     //
     // gridViewMd_CommMerge
     //
     this.gridViewMd_CommMerge.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumnM3,
     this.gridColumnM7,
     this.gridColumnM8,
     this.gridColumnM1,
     this.gridColumnM2,
     this.gridColumnM4,
     this.gridColumnM5,
     this.gridColumnM6,
     this.gridColumnM9});
     this.gridViewMd_CommMerge.GridControl = this.gridControlMd_CommMerge;
     this.gridViewMd_CommMerge.HorzScrollVisibility = DevExpress.XtraGrid.Views.Base.ScrollVisibility.Always;
     this.gridViewMd_CommMerge.Name = "gridViewMd_CommMerge";
     this.gridViewMd_CommMerge.OptionsView.ColumnAutoWidth = false;
     this.gridViewMd_CommMerge.OptionsView.HeaderFilterButtonShowMode = DevExpress.XtraEditors.Controls.FilterButtonShowMode.Button;
     this.gridViewMd_CommMerge.OptionsView.ShowGroupPanel = false;
     this.gridViewMd_CommMerge.VertScrollVisibility = DevExpress.XtraGrid.Views.Base.ScrollVisibility.Always;
     this.gridViewMd_CommMerge.LostFocus += new System.EventHandler(this.gridViewMd_CommMerge_LostFocus);
     //
     // gridColumnM3
     //
     this.gridColumnM3.Caption = "Branch";
     this.gridColumnM3.ColumnEdit = this.lk_BranchCode5;
     this.gridColumnM3.FieldName = "strBranch";
     this.gridColumnM3.Name = "gridColumnM3";
     this.gridColumnM3.Visible = true;
     this.gridColumnM3.VisibleIndex = 0;
     this.gridColumnM3.Width = 90;
     //
     // lk_BranchCode5
     //
     this.lk_BranchCode5.AutoHeight = false;
     this.lk_BranchCode5.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lk_BranchCode5.Name = "lk_BranchCode5";
     //
     // gridColumnM7
     //
     this.gridColumnM7.Caption = "Year";
     this.gridColumnM7.FieldName = "nYear";
     this.gridColumnM7.Name = "gridColumnM7";
     this.gridColumnM7.Visible = true;
     this.gridColumnM7.VisibleIndex = 1;
     this.gridColumnM7.Width = 90;
     //
     // gridColumnM8
     //
     this.gridColumnM8.Caption = "Month";
     this.gridColumnM8.ColumnEdit = this.chk_Month5;
     this.gridColumnM8.FieldName = "nMonth";
     this.gridColumnM8.Name = "gridColumnM8";
     this.gridColumnM8.Visible = true;
     this.gridColumnM8.VisibleIndex = 2;
     this.gridColumnM8.Width = 90;
     //
     // chk_Month5
     //
     this.chk_Month5.AutoHeight = false;
     this.chk_Month5.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.chk_Month5.Items.AddRange(new object[] {
     "1",
     "2",
     "3",
     "4",
     "5",
     "6",
     "7",
     "8",
     "9",
     "10",
     "11",
     "12"});
     this.chk_Month5.Name = "chk_Month5";
     //
     // gridColumnM1
     //
     this.gridColumnM1.Caption = "Position";
     this.gridColumnM1.ColumnEdit = this.lk_Position5;
     this.gridColumnM1.FieldName = "strCommID";
     this.gridColumnM1.Name = "gridColumnM1";
     this.gridColumnM1.Visible = true;
     this.gridColumnM1.VisibleIndex = 3;
     this.gridColumnM1.Width = 90;
     //
     // lk_Position5
     //
     this.lk_Position5.AutoHeight = false;
     this.lk_Position5.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lk_Position5.Name = "lk_Position5";
     //
     // gridColumnM2
     //
     this.gridColumnM2.Caption = "Description";
     this.gridColumnM2.FieldName = "strDesc";
     this.gridColumnM2.Name = "gridColumnM2";
     this.gridColumnM2.OptionsFilter.AllowFilter = false;
     this.gridColumnM2.Visible = true;
     this.gridColumnM2.VisibleIndex = 4;
     this.gridColumnM2.Width = 90;
     //
     // gridColumnM4
     //
     this.gridColumnM4.Caption = "Commission";
     this.gridColumnM4.FieldName = "nCommision";
     this.gridColumnM4.Name = "gridColumnM4";
     this.gridColumnM4.OptionsFilter.AllowFilter = false;
     this.gridColumnM4.Visible = true;
     this.gridColumnM4.VisibleIndex = 5;
     this.gridColumnM4.Width = 90;
     //
     // gridColumnM5
     //
     this.gridColumnM5.Caption = "Target From";
     this.gridColumnM5.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumnM5.FieldName = "mTargetFrom";
     this.gridColumnM5.Name = "gridColumnM5";
     this.gridColumnM5.OptionsFilter.AllowFilter = false;
     this.gridColumnM5.Visible = true;
     this.gridColumnM5.VisibleIndex = 6;
     this.gridColumnM5.Width = 90;
     //
     // gridColumnM6
     //
     this.gridColumnM6.Caption = "Target To";
     this.gridColumnM6.FieldName = "mTargetTo";
     this.gridColumnM6.Name = "gridColumnM6";
     this.gridColumnM6.OptionsFilter.AllowFilter = false;
     this.gridColumnM6.Visible = true;
     this.gridColumnM6.VisibleIndex = 7;
     this.gridColumnM6.Width = 90;
     //
     // gridColumnM9
     //
     this.gridColumnM9.Caption = "CommMerge";
     this.gridColumnM9.FieldName = "nCommMerge";
     this.gridColumnM9.Name = "gridColumnM9";
     this.gridColumnM9.OptionsFilter.AllowFilter = false;
     this.gridColumnM9.Width = 71;
     //
     // repositoryItemLookUpEdit3
     //
     this.repositoryItemLookUpEdit3.AutoHeight = false;
     this.repositoryItemLookUpEdit3.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemLookUpEdit3.Name = "repositoryItemLookUpEdit3";
     //
     // repositoryItemDateEdit5
     //
     this.repositoryItemDateEdit5.AutoHeight = false;
     this.repositoryItemDateEdit5.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemDateEdit5.Name = "repositoryItemDateEdit5";
     this.repositoryItemDateEdit5.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     //
     // repositoryItemDateEdit6
     //
     this.repositoryItemDateEdit6.AutoHeight = false;
     this.repositoryItemDateEdit6.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemDateEdit6.Name = "repositoryItemDateEdit6";
     this.repositoryItemDateEdit6.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     //
     // gridView1
     //
     this.gridView1.GridControl = this.gridControlMd_CommMerge;
     this.gridView1.Name = "gridView1";
     //
     // grpCommMSE
     //
     this.grpCommMSE.Controls.Add(this.btn_AddMSE);
     this.grpCommMSE.Controls.Add(this.btn_DelMSE);
     this.grpCommMSE.Controls.Add(this.groupControl1);
     this.grpCommMSE.Location = new System.Drawing.Point(4, 48);
     this.grpCommMSE.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.grpCommMSE.LookAndFeel.UseDefaultLookAndFeel = false;
     this.grpCommMSE.Name = "grpCommMSE";
     this.grpCommMSE.Size = new System.Drawing.Size(960, 237);
     this.grpCommMSE.TabIndex = 118;
     this.grpCommMSE.Text = "Sales Target";
     this.grpCommMSE.Visible = false;
     //
     // btn_AddMSE
     //
     this.btn_AddMSE.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btn_AddMSE.Appearance.Options.UseFont = true;
     this.btn_AddMSE.Appearance.Options.UseTextOptions = true;
     this.btn_AddMSE.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.btn_AddMSE.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.btn_AddMSE.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.btn_AddMSE.ImageIndex = 0;
     this.btn_AddMSE.ImageList = this.imageList1;
     this.btn_AddMSE.ImeMode = System.Windows.Forms.ImeMode.On;
     this.btn_AddMSE.Location = new System.Drawing.Point(8, 24);
     this.btn_AddMSE.Name = "btn_AddMSE";
     this.btn_AddMSE.Size = new System.Drawing.Size(38, 16);
     this.btn_AddMSE.TabIndex = 132;
     this.btn_AddMSE.Click += new System.EventHandler(this.btn_AddMSE_Click);
     //
     // btn_DelMSE
     //
     this.btn_DelMSE.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btn_DelMSE.Appearance.Options.UseFont = true;
     this.btn_DelMSE.Appearance.Options.UseTextOptions = true;
     this.btn_DelMSE.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.btn_DelMSE.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.btn_DelMSE.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.btn_DelMSE.ImageIndex = 1;
     this.btn_DelMSE.ImageList = this.imageList1;
     this.btn_DelMSE.Location = new System.Drawing.Point(48, 24);
     this.btn_DelMSE.Name = "btn_DelMSE";
     this.btn_DelMSE.Size = new System.Drawing.Size(38, 16);
     this.btn_DelMSE.TabIndex = 131;
     this.btn_DelMSE.Click += new System.EventHandler(this.btn_DelMSE_Click);
     //
     // groupControl1
     //
     this.groupControl1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.groupControl1.Controls.Add(this.gridControlMd_SalesTarget);
     this.groupControl1.Location = new System.Drawing.Point(0, 40);
     this.groupControl1.Name = "groupControl1";
     this.groupControl1.Size = new System.Drawing.Size(952, 192);
     this.groupControl1.TabIndex = 121;
     //
     // gridControlMd_SalesTarget
     //
     this.gridControlMd_SalesTarget.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridControlMd_SalesTarget.Location = new System.Drawing.Point(0, 0);
     this.gridControlMd_SalesTarget.LookAndFeel.UseDefaultLookAndFeel = false;
     this.gridControlMd_SalesTarget.MainView = this.gridViewMd_SalesTarget;
     this.gridControlMd_SalesTarget.Name = "gridControlMd_SalesTarget";
     this.gridControlMd_SalesTarget.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.de_nYear,
     this.strDesc,
     this.lk_SalesRank,
     this.tedit_Commission,
     this.tedit_strType,
     this.tedit_strCommID,
     this.tedit_strDesc,
     this.tedit_strBranch,
     this.tedit_mTargetFrom,
     this.tedit_mTargetTo,
     this.de_nMonth,
     this.tedit_nYear,
     this.tedit_nMonth,
     this.lk_BranchCode0,
     this.lk_Position0,
     this.chk_Month0});
     this.gridControlMd_SalesTarget.Size = new System.Drawing.Size(952, 192);
     this.gridControlMd_SalesTarget.TabIndex = 2;
     this.gridControlMd_SalesTarget.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewMd_SalesTarget,
     this.cardView1});
     //
     // gridViewMd_SalesTarget
     //
     this.gridViewMd_SalesTarget.Appearance.ColumnFilterButton.BackColor = System.Drawing.Color.White;
     this.gridViewMd_SalesTarget.Appearance.ColumnFilterButton.BackColor2 = System.Drawing.Color.White;
     this.gridViewMd_SalesTarget.Appearance.ColumnFilterButton.BorderColor = System.Drawing.Color.White;
     this.gridViewMd_SalesTarget.Appearance.ColumnFilterButton.Options.UseBackColor = true;
     this.gridViewMd_SalesTarget.Appearance.ColumnFilterButton.Options.UseBorderColor = true;
     this.gridViewMd_SalesTarget.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumnPKG3,
     this.gridColumnPKG7,
     this.gridColumnPKG8,
     this.gridColumnPKG1,
     this.gridColumnPKG2,
     this.gridColumnPKG4,
     this.gridColumnPKG5,
     this.gridColumnPKG6,
     this.gridColumnPKG9});
     this.gridViewMd_SalesTarget.GridControl = this.gridControlMd_SalesTarget;
     this.gridViewMd_SalesTarget.HorzScrollVisibility = DevExpress.XtraGrid.Views.Base.ScrollVisibility.Always;
     this.gridViewMd_SalesTarget.Name = "gridViewMd_SalesTarget";
     this.gridViewMd_SalesTarget.OptionsView.ColumnAutoWidth = false;
     this.gridViewMd_SalesTarget.OptionsView.HeaderFilterButtonShowMode = DevExpress.XtraEditors.Controls.FilterButtonShowMode.Button;
     this.gridViewMd_SalesTarget.OptionsView.ShowFilterPanelMode = DevExpress.XtraGrid.Views.Base.ShowFilterPanelMode.Never;
     this.gridViewMd_SalesTarget.OptionsView.ShowGroupPanel = false;
     this.gridViewMd_SalesTarget.VertScrollVisibility = DevExpress.XtraGrid.Views.Base.ScrollVisibility.Always;
     this.gridViewMd_SalesTarget.LostFocus += new System.EventHandler(this.gridViewMd_SalesTarget_LostFocus);
     //
     // gridColumnPKG3
     //
     this.gridColumnPKG3.Caption = "Branch";
     this.gridColumnPKG3.ColumnEdit = this.lk_BranchCode0;
     this.gridColumnPKG3.FieldName = "strBranch";
     this.gridColumnPKG3.Name = "gridColumnPKG3";
     this.gridColumnPKG3.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
     this.gridColumnPKG3.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.gridColumnPKG3.OptionsFilter.FilterPopupMode = DevExpress.XtraGrid.Columns.FilterPopupMode.List;
     this.gridColumnPKG3.Visible = true;
     this.gridColumnPKG3.VisibleIndex = 0;
     this.gridColumnPKG3.Width = 90;
     //
     // lk_BranchCode0
     //
     this.lk_BranchCode0.AutoHeight = false;
     this.lk_BranchCode0.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lk_BranchCode0.Name = "lk_BranchCode0";
     //
     // gridColumnPKG7
     //
     this.gridColumnPKG7.Caption = "Year";
     this.gridColumnPKG7.ColumnEdit = this.tedit_nYear;
     this.gridColumnPKG7.FieldName = "nYear";
     this.gridColumnPKG7.Name = "gridColumnPKG7";
     this.gridColumnPKG7.Visible = true;
     this.gridColumnPKG7.VisibleIndex = 1;
     this.gridColumnPKG7.Width = 90;
     //
     // tedit_nYear
     //
     this.tedit_nYear.AutoHeight = false;
     this.tedit_nYear.Name = "tedit_nYear";
     //
     // gridColumnPKG8
     //
     this.gridColumnPKG8.Caption = "Month";
     this.gridColumnPKG8.ColumnEdit = this.chk_Month0;
     this.gridColumnPKG8.FieldName = "nMonth";
     this.gridColumnPKG8.Name = "gridColumnPKG8";
     this.gridColumnPKG8.Visible = true;
     this.gridColumnPKG8.VisibleIndex = 2;
     this.gridColumnPKG8.Width = 90;
     //
     // chk_Month0
     //
     this.chk_Month0.AutoHeight = false;
     this.chk_Month0.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.chk_Month0.Items.AddRange(new object[] {
     "1",
     "2",
     "3",
     "4",
     "5",
     "6",
     "7",
     "8",
     "9",
     "10",
     "11",
     "12"});
     this.chk_Month0.Name = "chk_Month0";
     //
     // gridColumnPKG1
     //
     this.gridColumnPKG1.Caption = "Position";
     this.gridColumnPKG1.ColumnEdit = this.lk_Position0;
     this.gridColumnPKG1.FieldName = "strCommID";
     this.gridColumnPKG1.Name = "gridColumnPKG1";
     this.gridColumnPKG1.Visible = true;
     this.gridColumnPKG1.VisibleIndex = 3;
     this.gridColumnPKG1.Width = 90;
     //
     // lk_Position0
     //
     this.lk_Position0.AutoHeight = false;
     this.lk_Position0.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lk_Position0.Name = "lk_Position0";
     //
     // gridColumnPKG2
     //
     this.gridColumnPKG2.Caption = "Description";
     this.gridColumnPKG2.ColumnEdit = this.tedit_strDesc;
     this.gridColumnPKG2.FieldName = "strDesc";
     this.gridColumnPKG2.Name = "gridColumnPKG2";
     this.gridColumnPKG2.OptionsFilter.AllowFilter = false;
     this.gridColumnPKG2.Visible = true;
     this.gridColumnPKG2.VisibleIndex = 4;
     this.gridColumnPKG2.Width = 90;
     //
     // tedit_strDesc
     //
     this.tedit_strDesc.AutoHeight = false;
     this.tedit_strDesc.Name = "tedit_strDesc";
     //
     // gridColumnPKG4
     //
     this.gridColumnPKG4.Caption = "Commission";
     this.gridColumnPKG4.ColumnEdit = this.tedit_Commission;
     this.gridColumnPKG4.FieldName = "nCommision";
     this.gridColumnPKG4.Name = "gridColumnPKG4";
     this.gridColumnPKG4.OptionsFilter.AllowFilter = false;
     this.gridColumnPKG4.Visible = true;
     this.gridColumnPKG4.VisibleIndex = 5;
     this.gridColumnPKG4.Width = 90;
     //
     // tedit_Commission
     //
     this.tedit_Commission.AutoHeight = false;
     this.tedit_Commission.MaxLength = 50;
     this.tedit_Commission.Name = "tedit_Commission";
     //
     // gridColumnPKG5
     //
     this.gridColumnPKG5.Caption = "Target From";
     this.gridColumnPKG5.ColumnEdit = this.tedit_mTargetFrom;
     this.gridColumnPKG5.FieldName = "mTargetFrom";
     this.gridColumnPKG5.Name = "gridColumnPKG5";
     this.gridColumnPKG5.OptionsFilter.AllowFilter = false;
     this.gridColumnPKG5.Visible = true;
     this.gridColumnPKG5.VisibleIndex = 6;
     this.gridColumnPKG5.Width = 90;
     //
     // tedit_mTargetFrom
     //
     this.tedit_mTargetFrom.AutoHeight = false;
     this.tedit_mTargetFrom.Name = "tedit_mTargetFrom";
     //
     // gridColumnPKG6
     //
     this.gridColumnPKG6.Caption = "Target To";
     this.gridColumnPKG6.ColumnEdit = this.tedit_mTargetTo;
     this.gridColumnPKG6.FieldName = "mTargetTo";
     this.gridColumnPKG6.Name = "gridColumnPKG6";
     this.gridColumnPKG6.OptionsFilter.AllowFilter = false;
     this.gridColumnPKG6.Visible = true;
     this.gridColumnPKG6.VisibleIndex = 7;
     this.gridColumnPKG6.Width = 90;
     //
     // tedit_mTargetTo
     //
     this.tedit_mTargetTo.AutoHeight = false;
     this.tedit_mTargetTo.Name = "tedit_mTargetTo";
     //
     // gridColumnPKG9
     //
     this.gridColumnPKG9.Caption = "CommMSEID";
     this.gridColumnPKG9.FieldName = "nCommMSEID";
     this.gridColumnPKG9.Name = "gridColumnPKG9";
     this.gridColumnPKG9.OptionsFilter.AllowFilter = false;
     this.gridColumnPKG9.Width = 72;
     //
     // de_nYear
     //
     this.de_nYear.AutoHeight = false;
     this.de_nYear.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.de_nYear.Name = "de_nYear";
     this.de_nYear.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     //
     // strDesc
     //
     this.strDesc.AutoHeight = false;
     this.strDesc.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.strDesc.Name = "strDesc";
     this.strDesc.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     //
     // lk_SalesRank
     //
     this.lk_SalesRank.AutoHeight = false;
     this.lk_SalesRank.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lk_SalesRank.Name = "lk_SalesRank";
     //
     // tedit_strType
     //
     this.tedit_strType.AutoHeight = false;
     this.tedit_strType.MaxLength = 50;
     this.tedit_strType.Name = "tedit_strType";
     //
     // tedit_strCommID
     //
     this.tedit_strCommID.AutoHeight = false;
     this.tedit_strCommID.Name = "tedit_strCommID";
     //
     // tedit_strBranch
     //
     this.tedit_strBranch.AutoHeight = false;
     this.tedit_strBranch.Name = "tedit_strBranch";
     //
     // de_nMonth
     //
     this.de_nMonth.AutoHeight = false;
     this.de_nMonth.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.de_nMonth.Name = "de_nMonth";
     this.de_nMonth.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     //
     // tedit_nMonth
     //
     this.tedit_nMonth.AutoHeight = false;
     this.tedit_nMonth.Name = "tedit_nMonth";
     //
     // cardView1
     //
     this.cardView1.FocusedCardTopFieldIndex = 0;
     this.cardView1.GridControl = this.gridControlMd_SalesTarget;
     this.cardView1.Name = "cardView1";
     //
     // grpCommSpaConsult
     //
     this.grpCommSpaConsult.Controls.Add(this.btn_AddSpaConsult);
     this.grpCommSpaConsult.Controls.Add(this.btn_DelSpaConsult);
     this.grpCommSpaConsult.Controls.Add(this.groupControl4);
     this.grpCommSpaConsult.Location = new System.Drawing.Point(4, 48);
     this.grpCommSpaConsult.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.grpCommSpaConsult.LookAndFeel.UseDefaultLookAndFeel = false;
     this.grpCommSpaConsult.Name = "grpCommSpaConsult";
     this.grpCommSpaConsult.Size = new System.Drawing.Size(960, 237);
     this.grpCommSpaConsult.TabIndex = 119;
     this.grpCommSpaConsult.Text = "Sales Target";
     this.grpCommSpaConsult.Visible = false;
     //
     // btn_AddSpaConsult
     //
     this.btn_AddSpaConsult.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btn_AddSpaConsult.Appearance.Options.UseFont = true;
     this.btn_AddSpaConsult.Appearance.Options.UseTextOptions = true;
     this.btn_AddSpaConsult.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.btn_AddSpaConsult.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.btn_AddSpaConsult.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.btn_AddSpaConsult.ImageIndex = 0;
     this.btn_AddSpaConsult.ImageList = this.imageList1;
     this.btn_AddSpaConsult.ImeMode = System.Windows.Forms.ImeMode.On;
     this.btn_AddSpaConsult.Location = new System.Drawing.Point(8, 24);
     this.btn_AddSpaConsult.Name = "btn_AddSpaConsult";
     this.btn_AddSpaConsult.Size = new System.Drawing.Size(38, 16);
     this.btn_AddSpaConsult.TabIndex = 134;
     this.btn_AddSpaConsult.Click += new System.EventHandler(this.btn_AddSpaConsult_Click);
     //
     // btn_DelSpaConsult
     //
     this.btn_DelSpaConsult.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btn_DelSpaConsult.Appearance.Options.UseFont = true;
     this.btn_DelSpaConsult.Appearance.Options.UseTextOptions = true;
     this.btn_DelSpaConsult.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.btn_DelSpaConsult.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.btn_DelSpaConsult.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.btn_DelSpaConsult.ImageIndex = 1;
     this.btn_DelSpaConsult.ImageList = this.imageList1;
     this.btn_DelSpaConsult.Location = new System.Drawing.Point(48, 24);
     this.btn_DelSpaConsult.Name = "btn_DelSpaConsult";
     this.btn_DelSpaConsult.Size = new System.Drawing.Size(38, 16);
     this.btn_DelSpaConsult.TabIndex = 133;
     this.btn_DelSpaConsult.Click += new System.EventHandler(this.btn_DelSpaConsult_Click);
     //
     // groupControl4
     //
     this.groupControl4.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.groupControl4.Controls.Add(this.gridControlMd_CommSpaConsult);
     this.groupControl4.Location = new System.Drawing.Point(0, 40);
     this.groupControl4.Name = "groupControl4";
     this.groupControl4.Size = new System.Drawing.Size(952, 192);
     this.groupControl4.TabIndex = 2;
     //
     // gridControlMd_CommSpaConsult
     //
     this.gridControlMd_CommSpaConsult.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridControlMd_CommSpaConsult.Location = new System.Drawing.Point(0, 0);
     this.gridControlMd_CommSpaConsult.LookAndFeel.UseDefaultLookAndFeel = false;
     this.gridControlMd_CommSpaConsult.MainView = this.gridViewMd_CommSpaConsult;
     this.gridControlMd_CommSpaConsult.Name = "gridControlMd_CommSpaConsult";
     this.gridControlMd_CommSpaConsult.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.lk_pkGroupCatID,
     this.tedit_SC_strCommID,
     this.lk_Position1,
     this.lk_BranchCode1,
     this.chk_Month1});
     this.gridControlMd_CommSpaConsult.Size = new System.Drawing.Size(952, 192);
     this.gridControlMd_CommSpaConsult.TabIndex = 2;
     this.gridControlMd_CommSpaConsult.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewMd_CommSpaConsult});
     //
     // gridViewMd_CommSpaConsult
     //
     this.gridViewMd_CommSpaConsult.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumnPG3,
     this.gridColumnPG7,
     this.gridColumnPG8,
     this.gridColumnPG1,
     this.gridColumnPG2,
     this.gridColumnPG4,
     this.gridColumnPG9,
     this.gridColumnPG5,
     this.gridColumnPG6,
     this.gridColumnPG10});
     this.gridViewMd_CommSpaConsult.GridControl = this.gridControlMd_CommSpaConsult;
     this.gridViewMd_CommSpaConsult.HorzScrollVisibility = DevExpress.XtraGrid.Views.Base.ScrollVisibility.Always;
     this.gridViewMd_CommSpaConsult.Name = "gridViewMd_CommSpaConsult";
     this.gridViewMd_CommSpaConsult.OptionsView.ColumnAutoWidth = false;
     this.gridViewMd_CommSpaConsult.OptionsView.HeaderFilterButtonShowMode = DevExpress.XtraEditors.Controls.FilterButtonShowMode.Button;
     this.gridViewMd_CommSpaConsult.OptionsView.ShowGroupPanel = false;
     this.gridViewMd_CommSpaConsult.VertScrollVisibility = DevExpress.XtraGrid.Views.Base.ScrollVisibility.Always;
     this.gridViewMd_CommSpaConsult.LostFocus += new System.EventHandler(this.gridViewMd_CommSpaConsult_LostFocus);
     //
     // gridColumnPG3
     //
     this.gridColumnPG3.Caption = "Branch";
     this.gridColumnPG3.ColumnEdit = this.lk_BranchCode1;
     this.gridColumnPG3.FieldName = "strBranch";
     this.gridColumnPG3.Name = "gridColumnPG3";
     this.gridColumnPG3.Visible = true;
     this.gridColumnPG3.VisibleIndex = 0;
     this.gridColumnPG3.Width = 90;
     //
     // lk_BranchCode1
     //
     this.lk_BranchCode1.AutoHeight = false;
     this.lk_BranchCode1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lk_BranchCode1.Name = "lk_BranchCode1";
     //
     // gridColumnPG7
     //
     this.gridColumnPG7.Caption = "Year";
     this.gridColumnPG7.FieldName = "nYear";
     this.gridColumnPG7.Name = "gridColumnPG7";
     this.gridColumnPG7.Visible = true;
     this.gridColumnPG7.VisibleIndex = 1;
     this.gridColumnPG7.Width = 90;
     //
     // gridColumnPG8
     //
     this.gridColumnPG8.Caption = "Month";
     this.gridColumnPG8.ColumnEdit = this.chk_Month1;
     this.gridColumnPG8.FieldName = "nMonth";
     this.gridColumnPG8.Name = "gridColumnPG8";
     this.gridColumnPG8.Visible = true;
     this.gridColumnPG8.VisibleIndex = 2;
     this.gridColumnPG8.Width = 90;
     //
     // chk_Month1
     //
     this.chk_Month1.AutoHeight = false;
     this.chk_Month1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.chk_Month1.Items.AddRange(new object[] {
     "1",
     "2",
     "3",
     "4",
     "5",
     "6",
     "7",
     "8",
     "9",
     "10",
     "11",
     "12"});
     this.chk_Month1.Name = "chk_Month1";
     //
     // gridColumnPG1
     //
     this.gridColumnPG1.Caption = "Position";
     this.gridColumnPG1.ColumnEdit = this.lk_Position1;
     this.gridColumnPG1.FieldName = "strCommID";
     this.gridColumnPG1.Name = "gridColumnPG1";
     this.gridColumnPG1.Visible = true;
     this.gridColumnPG1.VisibleIndex = 3;
     this.gridColumnPG1.Width = 90;
     //
     // lk_Position1
     //
     this.lk_Position1.AutoHeight = false;
     this.lk_Position1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lk_Position1.Name = "lk_Position1";
     //
     // gridColumnPG2
     //
     this.gridColumnPG2.Caption = "Description";
     this.gridColumnPG2.FieldName = "strDesc";
     this.gridColumnPG2.Name = "gridColumnPG2";
     this.gridColumnPG2.OptionsFilter.AllowFilter = false;
     this.gridColumnPG2.Visible = true;
     this.gridColumnPG2.VisibleIndex = 4;
     this.gridColumnPG2.Width = 90;
     //
     // gridColumnPG4
     //
     this.gridColumnPG4.Caption = "Product Comm";
     this.gridColumnPG4.FieldName = "nProductComm";
     this.gridColumnPG4.Name = "gridColumnPG4";
     this.gridColumnPG4.OptionsFilter.AllowFilter = false;
     this.gridColumnPG4.Visible = true;
     this.gridColumnPG4.VisibleIndex = 5;
     this.gridColumnPG4.Width = 90;
     //
     // gridColumnPG9
     //
     this.gridColumnPG9.Caption = "Target From";
     this.gridColumnPG9.FieldName = "mPackageTargetFrom";
     this.gridColumnPG9.Name = "gridColumnPG9";
     this.gridColumnPG9.OptionsFilter.AllowFilter = false;
     this.gridColumnPG9.Visible = true;
     this.gridColumnPG9.VisibleIndex = 6;
     this.gridColumnPG9.Width = 90;
     //
     // gridColumnPG5
     //
     this.gridColumnPG5.Caption = "Target To";
     this.gridColumnPG5.FieldName = "mPackageTargetTo";
     this.gridColumnPG5.Name = "gridColumnPG5";
     this.gridColumnPG5.OptionsFilter.AllowFilter = false;
     this.gridColumnPG5.Visible = true;
     this.gridColumnPG5.VisibleIndex = 7;
     this.gridColumnPG5.Width = 90;
     //
     // gridColumnPG6
     //
     this.gridColumnPG6.Caption = "Package Comm";
     this.gridColumnPG6.FieldName = "nPackageComm";
     this.gridColumnPG6.Name = "gridColumnPG6";
     this.gridColumnPG6.OptionsFilter.AllowFilter = false;
     this.gridColumnPG6.Visible = true;
     this.gridColumnPG6.VisibleIndex = 8;
     this.gridColumnPG6.Width = 90;
     //
     // gridColumnPG10
     //
     this.gridColumnPG10.Caption = "SpaConsultID";
     this.gridColumnPG10.FieldName = "nCommSpaConsultID";
     this.gridColumnPG10.Name = "gridColumnPG10";
     this.gridColumnPG10.OptionsFilter.AllowFilter = false;
     this.gridColumnPG10.Width = 77;
     //
     // lk_pkGroupCatID
     //
     this.lk_pkGroupCatID.AutoHeight = false;
     this.lk_pkGroupCatID.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lk_pkGroupCatID.Name = "lk_pkGroupCatID";
     //
     // tedit_SC_strCommID
     //
     this.tedit_SC_strCommID.AutoHeight = false;
     this.tedit_SC_strCommID.Name = "tedit_SC_strCommID";
     //
     // frmSalesTarget
     //
     this.BackColor = System.Drawing.Color.White;
     this.ClientSize = new System.Drawing.Size(982, 635);
     this.Controls.Add(this.grpSalesRank);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
     this.Name = "frmSalesTarget";
     this.Text = "frmSalesTarget";
     ((System.ComponentModel.ISupportInitialize)(this.grpSalesRank)).EndInit();
     this.grpSalesRank.ResumeLayout(false);
     this.groupBoxCommMSE.ResumeLayout(false);
     this.groupBox2.ResumeLayout(false);
     this.groupBox2.PerformLayout();
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ddlSalesRank.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.grpCommPT)).EndInit();
     this.grpCommPT.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl3)).EndInit();
     this.groupControl3.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMd_CommPT)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMd_CommPT)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_BranchCode3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_Month3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_Position3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit1.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit2.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.grpCommProductTherapist)).EndInit();
     this.grpCommProductTherapist.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl5)).EndInit();
     this.groupControl5.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMd_CommProductTherapist)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMd_CommProductTherapist)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_BranchCode2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_Month2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_Position2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_CreditCategoryID)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.EffCCStartDate.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.EffCCStartDate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.EffCCEndDate.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.EffCCEndDate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.grpCommCST)).EndInit();
     this.grpCommCST.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl6)).EndInit();
     this.groupControl6.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMd_CommCST)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMd_CommCST)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_BranchCode4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_Month4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_Position4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEdit2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit3.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit4.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.grpCommMerge)).EndInit();
     this.grpCommMerge.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl7)).EndInit();
     this.groupControl7.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMd_CommMerge)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMd_CommMerge)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_BranchCode5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_Month5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_Position5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEdit3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit5.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit6.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit6)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.grpCommMSE)).EndInit();
     this.grpCommMSE.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMd_SalesTarget)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMd_SalesTarget)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_BranchCode0)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tedit_nYear)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_Month0)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_Position0)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tedit_strDesc)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tedit_Commission)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tedit_mTargetFrom)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tedit_mTargetTo)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.de_nYear.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.de_nYear)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.strDesc.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.strDesc)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_SalesRank)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tedit_strType)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tedit_strCommID)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tedit_strBranch)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.de_nMonth.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.de_nMonth)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tedit_nMonth)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cardView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.grpCommSpaConsult)).EndInit();
     this.grpCommSpaConsult.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl4)).EndInit();
     this.groupControl4.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMd_CommSpaConsult)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMd_CommSpaConsult)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_BranchCode1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_Month1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_Position1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_pkGroupCatID)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tedit_SC_strCommID)).EndInit();
     this.ResumeLayout(false);
 }