Example #1
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;
        }
Example #2
0
        protected override void OnActiveEditor_ValueChanged(object sender, EventArgs e)
        {
            base.OnActiveEditor_ValueChanged(sender, e);
            System.Data.DataView _dv = (this.DataSource as System.Data.DataView);
            if (_dv != null && (_dv.AllowNew == false || _dv.AllowEdit == false) && this.FocusedRowHandle == -2147483647)
            {
                return;
            }
            if (string.Format("{0}", this.FocusedColumn.Tag).Equals("UnSetValue"))
            {
                return;
            }
            string _sType = sender.GetType().ToString();

            switch (_sType)
            {
            case "DevExpress.XtraEditors.LookUpEdit":
            case "ExtendControl.ExtRpyLookUpEdit":
            case "ExtendControl.SingLookUpEdit":
                if (
                    ((DevExpress.XtraEditors.LookUpEdit)(sender)).IsPopupOpen == false &&
                    ((DevExpress.XtraEditors.LookUpEdit)(sender)).EditValue != null)
                {
                    object _val = ((DevExpress.XtraEditors.LookUpEdit)(sender)).EditValue;
                    SetFocusedValue(_val);
                }
                break;

            case "DevExpress.XtraEditors.CheckEdit":
                if (
                    ((DevExpress.XtraEditors.CheckEdit)(sender)).EditValue != null)
                {
                    object _val = ((DevExpress.XtraEditors.CheckEdit)sender).EditValue;
                    SetFocusedValue(_val);
                }
                break;

            case "DevExpress.XtraEditors.CheckedComboBoxEdit":
            case "ExtendControl.ExtCheckedComboBoxEdit":
                if (
                    ((DevExpress.XtraEditors.CheckedComboBoxEdit)(sender)).IsPopupOpen == false &&
                    ((DevExpress.XtraEditors.CheckedComboBoxEdit)(sender)).EditValue != null)
                {
                    object _val = ((DevExpress.XtraEditors.CheckedComboBoxEdit)sender).EditValue;
                    SetFocusedValue(_val);
                }
                break;

            case "DevExpress.XtraEditors.ImageComboBoxEdit":
                DevExpress.XtraEditors.ImageComboBoxEdit _imgSender = sender as DevExpress.XtraEditors.ImageComboBoxEdit;
                if (_imgSender.IsPopupOpen == false && _imgSender.EditValue != null)
                {
                    SetFocusedValue(_imgSender.EditValue);
                }
                break;

            case "DevExpress.XtraEditors.CalcEdit":
                DevExpress.XtraEditors.CalcEdit _clacSender = sender as DevExpress.XtraEditors.CalcEdit;
                if (_clacSender != null && _clacSender.EditValue != null)
                {
                    object _val      = _clacSender.EditValue;
                    int    _selStart = _clacSender.SelectionStart;
                    SetFocusedValue((_val.Equals(string.Empty) || _val.Equals(".")) ? 0 : _val);
                    _clacSender.SelectionStart = _selStart;
                }
                break;

            case "DevExpress.XtraEditors.TextEdit":
                if (((DevExpress.XtraEditors.TextEdit)(sender)).EditValue != null)
                {
                    object _val = ((DevExpress.XtraEditors.TextEdit)(sender)).EditValue;
                    SetFocusedValue(_val);
                }
                break;
            }
        }
Example #3
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.groupControl1 = new DevExpress.XtraEditors.GroupControl();
     this.dateEditEndTime = new DevExpress.XtraEditors.TimeEdit();
     this.dateEditStartTime = new DevExpress.XtraEditors.TimeEdit();
     this.btnClassScheduleDelete = new DevExpress.XtraEditors.SimpleButton();
     this.labelCommission = new System.Windows.Forms.Label();
     this.comboBoxCommisionType = new DevExpress.XtraEditors.ImageComboBoxEdit();
     this.comboBoxInstructor = new DevExpress.XtraEditors.ImageComboBoxEdit();
     this.comboBoxHallNumber = new DevExpress.XtraEditors.ImageComboBoxEdit();
     this.comboBoxClassName = new DevExpress.XtraEditors.ImageComboBoxEdit();
     this.comboBoxDay = new DevExpress.XtraEditors.ImageComboBoxEdit();
     this.comboBoxBranch = new DevExpress.XtraEditors.ImageComboBoxEdit();
     this.btnClassScheduleCancel = new DevExpress.XtraEditors.SimpleButton();
     this.btnClassScheduleUpdate = new DevExpress.XtraEditors.SimpleButton();
     this.panelControlFlagBox = new DevExpress.XtraEditors.PanelControl();
     this.checkEditFAllowStudet = new DevExpress.XtraEditors.CheckEdit();
     this.checkEditFUOB = new DevExpress.XtraEditors.CheckEdit();
     this.checkEditFReserve = new DevExpress.XtraEditors.CheckEdit();
     this.checkEditFFree = new DevExpress.XtraEditors.CheckEdit();
     this.checkEditFPeak = new DevExpress.XtraEditors.CheckEdit();
     this.labelInstructor = new System.Windows.Forms.Label();
     this.labelHallNumber = new System.Windows.Forms.Label();
     this.labelClassName = new System.Windows.Forms.Label();
     this.labelEndTime = new System.Windows.Forms.Label();
     this.labelStartTime = new System.Windows.Forms.Label();
     this.labelDay = new System.Windows.Forms.Label();
     this.labelBranch = new System.Windows.Forms.Label();
     this.labelClassLimit = new System.Windows.Forms.Label();
     this.textEditMaxNo = new DevExpress.XtraEditors.TextEdit();
     this.txtClassScheduleID = new DevExpress.XtraEditors.TextEdit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dateEditEndTime.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEditStartTime.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.comboBoxCommisionType.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.comboBoxInstructor.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.comboBoxHallNumber.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.comboBoxClassName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.comboBoxDay.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.comboBoxBranch.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControlFlagBox)).BeginInit();
     this.panelControlFlagBox.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.checkEditFAllowStudet.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEditFUOB.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEditFReserve.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEditFFree.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEditFPeak.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditMaxNo.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtClassScheduleID.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // groupControl1
     //
     this.groupControl1.Appearance.BackColor = System.Drawing.SystemColors.Control;
     this.groupControl1.Appearance.Options.UseBackColor = true;
     this.groupControl1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.groupControl1.Controls.Add(this.dateEditEndTime);
     this.groupControl1.Controls.Add(this.dateEditStartTime);
     this.groupControl1.Controls.Add(this.btnClassScheduleDelete);
     this.groupControl1.Controls.Add(this.labelCommission);
     this.groupControl1.Controls.Add(this.comboBoxCommisionType);
     this.groupControl1.Controls.Add(this.comboBoxInstructor);
     this.groupControl1.Controls.Add(this.comboBoxHallNumber);
     this.groupControl1.Controls.Add(this.comboBoxClassName);
     this.groupControl1.Controls.Add(this.comboBoxDay);
     this.groupControl1.Controls.Add(this.comboBoxBranch);
     this.groupControl1.Controls.Add(this.btnClassScheduleCancel);
     this.groupControl1.Controls.Add(this.btnClassScheduleUpdate);
     this.groupControl1.Controls.Add(this.panelControlFlagBox);
     this.groupControl1.Controls.Add(this.labelInstructor);
     this.groupControl1.Controls.Add(this.labelHallNumber);
     this.groupControl1.Controls.Add(this.labelClassName);
     this.groupControl1.Controls.Add(this.labelEndTime);
     this.groupControl1.Controls.Add(this.labelStartTime);
     this.groupControl1.Controls.Add(this.labelDay);
     this.groupControl1.Controls.Add(this.labelBranch);
     this.groupControl1.Controls.Add(this.labelClassLimit);
     this.groupControl1.Controls.Add(this.textEditMaxNo);
     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(560, 240);
     this.groupControl1.TabIndex = 53;
     this.groupControl1.Text = "Class Schedule Information .....";
     //
     // dateEditEndTime
     //
     this.dateEditEndTime.EditValue = null;
     this.dateEditEndTime.Location = new System.Drawing.Point(408, 32);
     this.dateEditEndTime.Name = "dateEditEndTime";
     //
     // dateEditEndTime.Properties
     //
     this.dateEditEndTime.Properties.Appearance.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(255)), ((System.Byte)(255)), ((System.Byte)(192)));
     this.dateEditEndTime.Properties.Appearance.Options.UseBackColor = true;
     this.dateEditEndTime.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                             new DevExpress.XtraEditors.Controls.EditorButton()});
     this.dateEditEndTime.Properties.DisplayFormat.FormatString = "hh:mm:ss tt";
     this.dateEditEndTime.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Custom;
     this.dateEditEndTime.Size = new System.Drawing.Size(96, 20);
     this.dateEditEndTime.TabIndex = 94;
     //
     // dateEditStartTime
     //
     this.dateEditStartTime.EditValue = null;
     this.dateEditStartTime.Location = new System.Drawing.Point(128, 32);
     this.dateEditStartTime.Name = "dateEditStartTime";
     //
     // dateEditStartTime.Properties
     //
     this.dateEditStartTime.Properties.Appearance.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(255)), ((System.Byte)(255)), ((System.Byte)(192)));
     this.dateEditStartTime.Properties.Appearance.Options.UseBackColor = true;
     this.dateEditStartTime.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                               new DevExpress.XtraEditors.Controls.EditorButton()});
     this.dateEditStartTime.Properties.DisplayFormat.FormatString = "hh:mm:ss tt";
     this.dateEditStartTime.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Custom;
     this.dateEditStartTime.Size = new System.Drawing.Size(104, 20);
     this.dateEditStartTime.TabIndex = 93;
     //
     // btnClassScheduleDelete
     //
     this.btnClassScheduleDelete.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.btnClassScheduleDelete.Appearance.Options.UseFont = true;
     this.btnClassScheduleDelete.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnClassScheduleDelete.Location = new System.Drawing.Point(96, 184);
     this.btnClassScheduleDelete.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.btnClassScheduleDelete.LookAndFeel.UseDefaultLookAndFeel = false;
     this.btnClassScheduleDelete.Name = "btnClassScheduleDelete";
     this.btnClassScheduleDelete.TabIndex = 92;
     this.btnClassScheduleDelete.Text = "Delete";
     this.btnClassScheduleDelete.Click += new System.EventHandler(this.btnClassScheduleDelete_Click);
     //
     // labelCommission
     //
     this.labelCommission.BackColor = System.Drawing.SystemColors.Control;
     this.labelCommission.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.labelCommission.ForeColor = System.Drawing.SystemColors.ControlText;
     this.labelCommission.Location = new System.Drawing.Point(16, 152);
     this.labelCommission.Name = "labelCommission";
     this.labelCommission.Size = new System.Drawing.Size(120, 16);
     this.labelCommission.TabIndex = 91;
     this.labelCommission.Text = "Commission Type";
     //
     // comboBoxCommisionType
     //
     this.comboBoxCommisionType.EditValue = "imageComboBoxEdit1";
     this.comboBoxCommisionType.Location = new System.Drawing.Point(144, 152);
     this.comboBoxCommisionType.Name = "comboBoxCommisionType";
     //
     // comboBoxCommisionType.Properties
     //
     this.comboBoxCommisionType.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                                   new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.comboBoxCommisionType.Properties.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.comboBoxCommisionType.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.comboBoxCommisionType.Size = new System.Drawing.Size(120, 20);
     this.comboBoxCommisionType.TabIndex = 90;
     //
     // comboBoxInstructor
     //
     this.comboBoxInstructor.EditValue = "comboBoxInstructor";
     this.comboBoxInstructor.Location = new System.Drawing.Point(128, 128);
     this.comboBoxInstructor.Name = "comboBoxInstructor";
     //
     // comboBoxInstructor.Properties
     //
     this.comboBoxInstructor.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                                new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.comboBoxInstructor.Properties.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.comboBoxInstructor.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.comboBoxInstructor.Size = new System.Drawing.Size(136, 20);
     this.comboBoxInstructor.TabIndex = 87;
     //
     // comboBoxHallNumber
     //
     this.comboBoxHallNumber.EditValue = "imageComboBoxEdit1";
     this.comboBoxHallNumber.Location = new System.Drawing.Point(128, 104);
     this.comboBoxHallNumber.Name = "comboBoxHallNumber";
     //
     // comboBoxHallNumber.Properties
     //
     this.comboBoxHallNumber.Properties.Appearance.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(255)), ((System.Byte)(255)), ((System.Byte)(192)));
     this.comboBoxHallNumber.Properties.Appearance.Options.UseBackColor = true;
     this.comboBoxHallNumber.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                                new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.comboBoxHallNumber.Properties.Items.AddRange(new object[] {
                                                                        new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Hall 1", 1, -1),
                                                                        new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Hall 2", 2, -1),
                                                                        new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Hall 3", 3, -1)});
     this.comboBoxHallNumber.Properties.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.comboBoxHallNumber.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.comboBoxHallNumber.Size = new System.Drawing.Size(136, 20);
     this.comboBoxHallNumber.TabIndex = 86;
     //
     // comboBoxClassName
     //
     this.comboBoxClassName.EditValue = "imageComboBoxEdit1";
     this.comboBoxClassName.Location = new System.Drawing.Point(128, 80);
     this.comboBoxClassName.Name = "comboBoxClassName";
     //
     // comboBoxClassName.Properties
     //
     this.comboBoxClassName.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                               new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.comboBoxClassName.Properties.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.comboBoxClassName.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.comboBoxClassName.Size = new System.Drawing.Size(136, 20);
     this.comboBoxClassName.TabIndex = 85;
     //
     // comboBoxDay
     //
     this.comboBoxDay.EditValue = "imageComboBoxEdit1";
     this.comboBoxDay.Location = new System.Drawing.Point(128, 8);
     this.comboBoxDay.Name = "comboBoxDay";
     //
     // comboBoxDay.Properties
     //
     this.comboBoxDay.Properties.Appearance.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(255)), ((System.Byte)(255)), ((System.Byte)(192)));
     this.comboBoxDay.Properties.Appearance.Options.UseBackColor = true;
     this.comboBoxDay.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.comboBoxDay.Properties.Items.AddRange(new object[] {
                                                                 new DevExpress.XtraEditors.Controls.ImageComboBoxItem("SUNDAY", 0, -1),
                                                                 new DevExpress.XtraEditors.Controls.ImageComboBoxItem("MONDAY", 1, -1),
                                                                 new DevExpress.XtraEditors.Controls.ImageComboBoxItem("TUESDAY", 2, -1),
                                                                 new DevExpress.XtraEditors.Controls.ImageComboBoxItem("WEDNERSDAY", 3, -1),
                                                                 new DevExpress.XtraEditors.Controls.ImageComboBoxItem("THURSDAY", 4, -1),
                                                                 new DevExpress.XtraEditors.Controls.ImageComboBoxItem("FRIDAY", 5, -1),
                                                                 new DevExpress.XtraEditors.Controls.ImageComboBoxItem("SATURDAY", 6, -1)});
     this.comboBoxDay.Properties.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.comboBoxDay.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.comboBoxDay.Size = new System.Drawing.Size(104, 20);
     this.comboBoxDay.TabIndex = 84;
     //
     // comboBoxBranch
     //
     this.comboBoxBranch.EditValue = "imageComboBoxEdit1";
     this.comboBoxBranch.Location = new System.Drawing.Point(128, 56);
     this.comboBoxBranch.Name = "comboBoxBranch";
     //
     // comboBoxBranch.Properties
     //
     this.comboBoxBranch.Properties.Appearance.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(255)), ((System.Byte)(255)), ((System.Byte)(192)));
     this.comboBoxBranch.Properties.Appearance.Options.UseBackColor = true;
     this.comboBoxBranch.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.comboBoxBranch.Properties.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.comboBoxBranch.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.comboBoxBranch.Size = new System.Drawing.Size(136, 20);
     this.comboBoxBranch.TabIndex = 83;
     //
     // btnClassScheduleCancel
     //
     this.btnClassScheduleCancel.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.btnClassScheduleCancel.Appearance.Options.UseFont = true;
     this.btnClassScheduleCancel.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnClassScheduleCancel.Location = new System.Drawing.Point(176, 184);
     this.btnClassScheduleCancel.Name = "btnClassScheduleCancel";
     this.btnClassScheduleCancel.TabIndex = 82;
     this.btnClassScheduleCancel.Text = "Cancel";
     this.btnClassScheduleCancel.Click += new System.EventHandler(this.btnClassScheduleCancel_Click);
     //
     // btnClassScheduleUpdate
     //
     this.btnClassScheduleUpdate.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.btnClassScheduleUpdate.Appearance.Options.UseFont = true;
     this.btnClassScheduleUpdate.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnClassScheduleUpdate.Location = new System.Drawing.Point(16, 184);
     this.btnClassScheduleUpdate.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.btnClassScheduleUpdate.LookAndFeel.UseDefaultLookAndFeel = false;
     this.btnClassScheduleUpdate.Name = "btnClassScheduleUpdate";
     this.btnClassScheduleUpdate.TabIndex = 81;
     this.btnClassScheduleUpdate.Text = "Save";
     this.btnClassScheduleUpdate.Click += new System.EventHandler(this.btnClassScheduleUpdate_Click);
     //
     // panelControlFlagBox
     //
     this.panelControlFlagBox.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.panelControlFlagBox.Appearance.Options.UseBackColor = true;
     this.panelControlFlagBox.Controls.Add(this.checkEditFAllowStudet);
     this.panelControlFlagBox.Controls.Add(this.checkEditFUOB);
     this.panelControlFlagBox.Controls.Add(this.checkEditFReserve);
     this.panelControlFlagBox.Controls.Add(this.checkEditFFree);
     this.panelControlFlagBox.Controls.Add(this.checkEditFPeak);
     this.panelControlFlagBox.Controls.Add(this.txtClassScheduleID);
     this.panelControlFlagBox.Location = new System.Drawing.Point(304, 56);
     this.panelControlFlagBox.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.panelControlFlagBox.LookAndFeel.UseDefaultLookAndFeel = false;
     this.panelControlFlagBox.Name = "panelControlFlagBox";
     this.panelControlFlagBox.Size = new System.Drawing.Size(248, 152);
     this.panelControlFlagBox.TabIndex = 78;
     this.panelControlFlagBox.Text = "panelControl2";
     //
     // checkEditFAllowStudet
     //
     this.checkEditFAllowStudet.Location = new System.Drawing.Point(14, 114);
     this.checkEditFAllowStudet.Name = "checkEditFAllowStudet";
     //
     // checkEditFAllowStudet.Properties
     //
     this.checkEditFAllowStudet.Properties.Appearance.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.checkEditFAllowStudet.Properties.Appearance.Options.UseFont = true;
     this.checkEditFAllowStudet.Properties.Caption = "If allow student on Peak Hour";
     this.checkEditFAllowStudet.Properties.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.checkEditFAllowStudet.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.checkEditFAllowStudet.Size = new System.Drawing.Size(224, 21);
     this.checkEditFAllowStudet.TabIndex = 53;
     //
     // checkEditFUOB
     //
     this.checkEditFUOB.Location = new System.Drawing.Point(13, 89);
     this.checkEditFUOB.Name = "checkEditFUOB";
     //
     // checkEditFUOB.Properties
     //
     this.checkEditFUOB.Properties.Appearance.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.checkEditFUOB.Properties.Appearance.Options.UseFont = true;
     this.checkEditFUOB.Properties.Caption = "If allow UOB booking";
     this.checkEditFUOB.Properties.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.checkEditFUOB.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.checkEditFUOB.Size = new System.Drawing.Size(201, 21);
     this.checkEditFUOB.TabIndex = 52;
     //
     // checkEditFReserve
     //
     this.checkEditFReserve.Location = new System.Drawing.Point(13, 65);
     this.checkEditFReserve.Name = "checkEditFReserve";
     //
     // checkEditFReserve.Properties
     //
     this.checkEditFReserve.Properties.Appearance.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.checkEditFReserve.Properties.Appearance.Options.UseFont = true;
     this.checkEditFReserve.Properties.Caption = "If requires reservation";
     this.checkEditFReserve.Properties.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.checkEditFReserve.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.checkEditFReserve.Size = new System.Drawing.Size(201, 21);
     this.checkEditFReserve.TabIndex = 51;
     //
     // checkEditFFree
     //
     this.checkEditFFree.Location = new System.Drawing.Point(13, 41);
     this.checkEditFFree.Name = "checkEditFFree";
     //
     // checkEditFFree.Properties
     //
     this.checkEditFFree.Properties.Appearance.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.checkEditFFree.Properties.Appearance.Options.UseFont = true;
     this.checkEditFFree.Properties.Caption = "If a free class";
     this.checkEditFFree.Properties.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.checkEditFFree.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.checkEditFFree.Size = new System.Drawing.Size(201, 21);
     this.checkEditFFree.TabIndex = 50;
     //
     // checkEditFPeak
     //
     this.checkEditFPeak.Location = new System.Drawing.Point(13, 17);
     this.checkEditFPeak.Name = "checkEditFPeak";
     //
     // checkEditFPeak.Properties
     //
     this.checkEditFPeak.Properties.Appearance.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.checkEditFPeak.Properties.Appearance.Options.UseFont = true;
     this.checkEditFPeak.Properties.Caption = "If a peak period class";
     this.checkEditFPeak.Properties.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.checkEditFPeak.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.checkEditFPeak.Size = new System.Drawing.Size(201, 21);
     this.checkEditFPeak.TabIndex = 49;
     //
     // labelInstructor
     //
     this.labelInstructor.BackColor = System.Drawing.SystemColors.Control;
     this.labelInstructor.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.labelInstructor.ForeColor = System.Drawing.SystemColors.ControlText;
     this.labelInstructor.Location = new System.Drawing.Point(16, 128);
     this.labelInstructor.Name = "labelInstructor";
     this.labelInstructor.Size = new System.Drawing.Size(104, 16);
     this.labelInstructor.TabIndex = 77;
     this.labelInstructor.Text = "Instructor ";
     //
     // labelHallNumber
     //
     this.labelHallNumber.BackColor = System.Drawing.SystemColors.Control;
     this.labelHallNumber.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.labelHallNumber.ForeColor = System.Drawing.SystemColors.ControlText;
     this.labelHallNumber.Location = new System.Drawing.Point(16, 104);
     this.labelHallNumber.Name = "labelHallNumber";
     this.labelHallNumber.Size = new System.Drawing.Size(104, 16);
     this.labelHallNumber.TabIndex = 76;
     this.labelHallNumber.Text = "Hall Number";
     //
     // labelClassName
     //
     this.labelClassName.BackColor = System.Drawing.SystemColors.Control;
     this.labelClassName.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.labelClassName.ForeColor = System.Drawing.SystemColors.ControlText;
     this.labelClassName.Location = new System.Drawing.Point(16, 80);
     this.labelClassName.Name = "labelClassName";
     this.labelClassName.Size = new System.Drawing.Size(104, 16);
     this.labelClassName.TabIndex = 75;
     this.labelClassName.Text = "Class Name";
     //
     // labelEndTime
     //
     this.labelEndTime.BackColor = System.Drawing.SystemColors.Control;
     this.labelEndTime.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.labelEndTime.ForeColor = System.Drawing.SystemColors.ControlText;
     this.labelEndTime.Location = new System.Drawing.Point(304, 32);
     this.labelEndTime.Name = "labelEndTime";
     this.labelEndTime.Size = new System.Drawing.Size(104, 16);
     this.labelEndTime.TabIndex = 74;
     this.labelEndTime.Text = "End Time";
     //
     // labelStartTime
     //
     this.labelStartTime.BackColor = System.Drawing.SystemColors.Control;
     this.labelStartTime.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.labelStartTime.ForeColor = System.Drawing.SystemColors.ControlText;
     this.labelStartTime.Location = new System.Drawing.Point(16, 32);
     this.labelStartTime.Name = "labelStartTime";
     this.labelStartTime.Size = new System.Drawing.Size(104, 16);
     this.labelStartTime.TabIndex = 73;
     this.labelStartTime.Text = "Start Time";
     //
     // labelDay
     //
     this.labelDay.BackColor = System.Drawing.SystemColors.Control;
     this.labelDay.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.labelDay.ForeColor = System.Drawing.SystemColors.ControlText;
     this.labelDay.Location = new System.Drawing.Point(16, 8);
     this.labelDay.Name = "labelDay";
     this.labelDay.Size = new System.Drawing.Size(104, 16);
     this.labelDay.TabIndex = 72;
     this.labelDay.Text = "Day";
     //
     // labelBranch
     //
     this.labelBranch.BackColor = System.Drawing.SystemColors.Control;
     this.labelBranch.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.labelBranch.ForeColor = System.Drawing.SystemColors.ControlText;
     this.labelBranch.Location = new System.Drawing.Point(16, 56);
     this.labelBranch.Name = "labelBranch";
     this.labelBranch.Size = new System.Drawing.Size(96, 16);
     this.labelBranch.TabIndex = 71;
     this.labelBranch.Text = "Branch";
     //
     // labelClassLimit
     //
     this.labelClassLimit.BackColor = System.Drawing.SystemColors.Control;
     this.labelClassLimit.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.labelClassLimit.ForeColor = System.Drawing.SystemColors.ControlText;
     this.labelClassLimit.Location = new System.Drawing.Point(304, 8);
     this.labelClassLimit.Name = "labelClassLimit";
     this.labelClassLimit.Size = new System.Drawing.Size(96, 16);
     this.labelClassLimit.TabIndex = 80;
     this.labelClassLimit.Text = "Class Limit";
     //
     // textEditMaxNo
     //
     this.textEditMaxNo.EditValue = "0";
     this.textEditMaxNo.Location = new System.Drawing.Point(408, 8);
     this.textEditMaxNo.Name = "textEditMaxNo";
     //
     // textEditMaxNo.Properties
     //
     this.textEditMaxNo.Properties.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.textEditMaxNo.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.textEditMaxNo.Properties.Mask.EditMask = "f";
     this.textEditMaxNo.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.textEditMaxNo.Size = new System.Drawing.Size(96, 20);
     this.textEditMaxNo.TabIndex = 79;
     //
     // txtClassScheduleID
     //
     this.txtClassScheduleID.EditValue = "0";
     this.txtClassScheduleID.Location = new System.Drawing.Point(72, 56);
     this.txtClassScheduleID.Name = "txtClassScheduleID";
     this.txtClassScheduleID.Size = new System.Drawing.Size(160, 20);
     this.txtClassScheduleID.TabIndex = 95;
     this.txtClassScheduleID.Visible = false;
     //
     // frmClassSchedule
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(1, 4);
     this.ClientSize = new System.Drawing.Size(562, 218);
     this.Controls.Add(this.groupControl1);
     this.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Document, ((System.Byte)(0)));
     this.ForeColor = System.Drawing.SystemColors.Control;
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "frmClassSchedule";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text = "Class Schedule Information";
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.dateEditEndTime.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEditStartTime.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.comboBoxCommisionType.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.comboBoxInstructor.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.comboBoxHallNumber.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.comboBoxClassName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.comboBoxDay.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.comboBoxBranch.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControlFlagBox)).EndInit();
     this.panelControlFlagBox.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.checkEditFAllowStudet.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEditFUOB.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEditFReserve.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEditFFree.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEditFPeak.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditMaxNo.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtClassScheduleID.Properties)).EndInit();
     this.ResumeLayout(false);
 }
Example #4
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.btnViewAll           = new DevExpress.XtraEditors.SimpleButton();
     this.cmbBranch            = new DevExpress.XtraEditors.ImageComboBoxEdit();
     this.label25              = new System.Windows.Forms.Label();
     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.label2               = new System.Windows.Forms.Label();
     this.ddlStatus            = new DevExpress.XtraEditors.ImageComboBoxEdit();
     this.gridLeaveDetails     = new DevExpress.XtraGrid.GridControl();
     this.gridViewLeaveDetails = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn6          = 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.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.groupControl3        = new DevExpress.XtraEditors.GroupControl();
     ((System.ComponentModel.ISupportInitialize)(this.cmbBranch.Properties)).BeginInit();
     ((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.ddlStatus.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridLeaveDetails)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewLeaveDetails)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl3)).BeginInit();
     this.groupControl3.SuspendLayout();
     this.SuspendLayout();
     //
     // 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(557, 82);
     this.btnViewAll.Name        = "btnViewAll";
     this.btnViewAll.Size        = new System.Drawing.Size(86, 23);
     this.btnViewAll.TabIndex    = 201;
     this.btnViewAll.Text        = "View All";
     this.btnViewAll.Click      += new System.EventHandler(this.btnViewAll_Click);
     //
     // cmbBranch
     //
     this.cmbBranch.Location = new System.Drawing.Point(326, 82);
     this.cmbBranch.Name     = "cmbBranch";
     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(192, 24);
     this.cmbBranch.TabIndex              = 200;
     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(259, 82);
     this.label25.Name      = "label25";
     this.label25.Size      = new System.Drawing.Size(67, 19);
     this.label25.TabIndex  = 199;
     this.label25.Text      = "Branch";
     //
     // 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(19, 27);
     this.groupControl2.LookAndFeel.UseDefaultLookAndFeel = false;
     this.groupControl2.Name     = "groupControl2";
     this.groupControl2.Size     = new System.Drawing.Size(672, 46);
     this.groupControl2.TabIndex = 198;
     //
     // prevToMonth
     //
     this.prevToMonth.Location = new System.Drawing.Point(326, 18);
     this.prevToMonth.Name     = "prevToMonth";
     this.prevToMonth.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Style3D;
     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(87, 24);
     this.prevToMonth.TabIndex = 56;
     //
     // prevFromMonth
     //
     this.prevFromMonth.Location = new System.Drawing.Point(77, 18);
     this.prevFromMonth.Name     = "prevFromMonth";
     this.prevFromMonth.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Style3D;
     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(86, 24);
     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(538, 18);
     this.btnPrevGo.Name        = "btnPrevGo";
     this.btnPrevGo.Size        = new System.Drawing.Size(86, 23);
     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(288, 18);
     this.label5.Name      = "label5";
     this.label5.Size      = new System.Drawing.Size(29, 19);
     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(19, 18);
     this.label4.Name      = "label4";
     this.label4.Size      = new System.Drawing.Size(58, 19);
     this.label4.TabIndex  = 52;
     this.label4.Text      = "From";
     //
     // prevToYear
     //
     this.prevToYear.EditValue = "cbGIROStatus";
     this.prevToYear.Location  = new System.Drawing.Point(422, 18);
     this.prevToYear.Name      = "prevToYear";
     this.prevToYear.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Style3D;
     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(96, 24);
     this.prevToYear.TabIndex = 51;
     //
     // prevFromYear
     //
     this.prevFromYear.EditValue = "cbGIROStatus";
     this.prevFromYear.Location  = new System.Drawing.Point(173, 18);
     this.prevFromYear.Name      = "prevFromYear";
     this.prevFromYear.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Style3D;
     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(86, 24);
     this.prevFromYear.TabIndex = 50;
     //
     // 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, ((byte)(0)));
     this.label2.Location  = new System.Drawing.Point(29, 82);
     this.label2.Name      = "label2";
     this.label2.Size      = new System.Drawing.Size(77, 27);
     this.label2.TabIndex  = 197;
     this.label2.Text      = "Remarks";
     //
     // ddlStatus
     //
     this.ddlStatus.EditValue = 0;
     this.ddlStatus.Location  = new System.Drawing.Point(106, 82);
     this.ddlStatus.Name      = "ddlStatus";
     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 DevExpress.XtraEditors.Controls.ImageComboBoxItem[] {
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Active", 0, -1),
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Deleted", 1, -1)
     });
     this.ddlStatus.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.ddlStatus.Size                  = new System.Drawing.Size(134, 24);
     this.ddlStatus.TabIndex              = 196;
     this.ddlStatus.SelectedIndexChanged += new System.EventHandler(this.ddlStatus_SelectedIndexChanged);
     //
     // gridLeaveDetails
     //
     this.gridLeaveDetails.Dock     = System.Windows.Forms.DockStyle.Bottom;
     this.gridLeaveDetails.Location = new System.Drawing.Point(2, 36);
     this.gridLeaveDetails.LookAndFeel.UseDefaultLookAndFeel = false;
     this.gridLeaveDetails.MainView = this.gridViewLeaveDetails;
     this.gridLeaveDetails.Name     = "gridLeaveDetails";
     this.gridLeaveDetails.Size     = new System.Drawing.Size(988, 530);
     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.gridColumn6,
         this.gridColumn1,
         this.gridColumn2,
         this.gridColumn5,
         this.gridColumn7,
         this.gridColumn8,
         this.gridColumn9,
         this.gridColumn10,
         this.gridColumn11
     });
     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;
     //
     // gridColumn6
     //
     this.gridColumn6.Caption = "Date";
     this.gridColumn6.DisplayFormat.FormatString = "dd/MM/yyyy";
     this.gridColumn6.DisplayFormat.FormatType   = DevExpress.Utils.FormatType.Custom;
     this.gridColumn6.FieldName    = "dtDate";
     this.gridColumn6.Name         = "gridColumn6";
     this.gridColumn6.Visible      = true;
     this.gridColumn6.VisibleIndex = 0;
     this.gridColumn6.Width        = 97;
     //
     // gridColumn1
     //
     this.gridColumn1.Caption      = "Employee Id";
     this.gridColumn1.FieldName    = "nEmployeeID";
     this.gridColumn1.Name         = "gridColumn1";
     this.gridColumn1.Visible      = true;
     this.gridColumn1.VisibleIndex = 1;
     this.gridColumn1.Width        = 110;
     //
     // gridColumn2
     //
     this.gridColumn2.Caption      = "Name";
     this.gridColumn2.FieldName    = "strEmployeeName";
     this.gridColumn2.Name         = "gridColumn2";
     this.gridColumn2.Visible      = true;
     this.gridColumn2.VisibleIndex = 2;
     this.gridColumn2.Width        = 150;
     //
     // gridColumn5
     //
     this.gridColumn5.Caption   = "Roster ID";
     this.gridColumn5.FieldName = "nAppointmentId";
     this.gridColumn5.Name      = "gridColumn5";
     //
     // gridColumn7
     //
     this.gridColumn7.Caption = "Start Time";
     this.gridColumn7.DisplayFormat.FormatString = "hh:mm:ss tt";
     this.gridColumn7.DisplayFormat.FormatType   = DevExpress.Utils.FormatType.Custom;
     this.gridColumn7.FieldName    = "dtStartTime";
     this.gridColumn7.Name         = "gridColumn7";
     this.gridColumn7.Visible      = true;
     this.gridColumn7.VisibleIndex = 3;
     this.gridColumn7.Width        = 150;
     //
     // gridColumn8
     //
     this.gridColumn8.Caption = "End Time";
     this.gridColumn8.DisplayFormat.FormatString = "hh:mm:ss tt";
     this.gridColumn8.DisplayFormat.FormatType   = DevExpress.Utils.FormatType.Custom;
     this.gridColumn8.FieldName    = "dtEndTime";
     this.gridColumn8.Name         = "gridColumn8";
     this.gridColumn8.Visible      = true;
     this.gridColumn8.VisibleIndex = 4;
     this.gridColumn8.Width        = 150;
     //
     // gridColumn9
     //
     this.gridColumn9.Caption      = "Appointment Type";
     this.gridColumn9.FieldName    = "ApptType";
     this.gridColumn9.Name         = "gridColumn9";
     this.gridColumn9.Visible      = true;
     this.gridColumn9.VisibleIndex = 5;
     this.gridColumn9.Width        = 158;
     //
     // gridColumn10
     //
     this.gridColumn10.Caption      = "Remarks";
     this.gridColumn10.FieldName    = "ApptStatus";
     this.gridColumn10.Name         = "gridColumn10";
     this.gridColumn10.Visible      = true;
     this.gridColumn10.VisibleIndex = 6;
     this.gridColumn10.Width        = 152;
     //
     // gridColumn11
     //
     this.gridColumn11.Caption   = "nStatus";
     this.gridColumn11.FieldName = "nStatus";
     this.gridColumn11.Name      = "gridColumn11";
     //
     // groupControl3
     //
     this.groupControl3.Appearance.BackColor            = System.Drawing.SystemColors.Control;
     this.groupControl3.Appearance.Options.UseBackColor = true;
     this.groupControl3.Controls.Add(this.groupControl2);
     this.groupControl3.Controls.Add(this.label25);
     this.groupControl3.Controls.Add(this.btnViewAll);
     this.groupControl3.Controls.Add(this.label2);
     this.groupControl3.Controls.Add(this.ddlStatus);
     this.groupControl3.Controls.Add(this.cmbBranch);
     this.groupControl3.Controls.Add(this.gridLeaveDetails);
     this.groupControl3.Dock              = System.Windows.Forms.DockStyle.Fill;
     this.groupControl3.Location          = new System.Drawing.Point(0, 0);
     this.groupControl3.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.groupControl3.LookAndFeel.UseDefaultLookAndFeel = false;
     this.groupControl3.Name     = "groupControl3";
     this.groupControl3.Size     = new System.Drawing.Size(992, 568);
     this.groupControl3.TabIndex = 205;
     this.groupControl3.Text     = "Appointment Details";
     //
     // frmAppointment
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(6, 16);
     this.ClientSize        = new System.Drawing.Size(992, 568);
     this.Controls.Add(this.groupControl3);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
     this.Name            = "frmAppointment";
     this.Text            = "Appointment";
     this.WindowState     = System.Windows.Forms.FormWindowState.Maximized;
     this.Load           += new System.EventHandler(this.frmAppointment_Load);
     ((System.ComponentModel.ISupportInitialize)(this.cmbBranch.Properties)).EndInit();
     ((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.ddlStatus.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridLeaveDetails)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewLeaveDetails)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl3)).EndInit();
     this.groupControl3.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Example #5
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     this.MtMSalesGrid = 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.label63 = new System.Windows.Forms.Label();
     this.cmbCategory = new DevExpress.XtraEditors.ImageComboBoxEdit();
     this.PRINT1 = new DevExpress.XtraEditors.HyperLinkEdit();
     this.printingSystem1 = new DevExpress.XtraPrinting.PrintingSystem(this.components);
     this.printableComponentLink1 = new DevExpress.XtraPrinting.PrintableComponentLink(this.components);
     ((System.ComponentModel.ISupportInitialize)(this.MtMSalesGrid)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbCategory.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.PRINT1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.printingSystem1)).BeginInit();
     this.SuspendLayout();
     //
     // MtMSalesGrid
     //
     this.MtMSalesGrid.Cursor = System.Windows.Forms.Cursors.Default;
     this.MtMSalesGrid.Fields.AddRange(new DevExpress.XtraPivotGrid.PivotGridField[] {
                                                                                         this.pivotGridField1,
                                                                                         this.pivotGridField2,
                                                                                         this.pivotGridField3,
                                                                                         this.pivotGridField4});
     this.MtMSalesGrid.Location = new System.Drawing.Point(8, 40);
     this.MtMSalesGrid.Name = "MtMSalesGrid";
     this.MtMSalesGrid.OptionsCustomization.AllowDrag = false;
     this.MtMSalesGrid.OptionsCustomization.AllowExpand = false;
     this.MtMSalesGrid.OptionsCustomization.AllowSort = false;
     this.MtMSalesGrid.OptionsView.ShowDataHeaders = false;
     this.MtMSalesGrid.OptionsView.ShowFilterHeaders = false;
     this.MtMSalesGrid.Size = new System.Drawing.Size(960, 424);
     this.MtMSalesGrid.TabIndex = 0;
     //
     // pivotGridField1
     //
     this.pivotGridField1.Area = DevExpress.XtraPivotGrid.PivotArea.ColumnArea;
     this.pivotGridField1.AreaIndex = 0;
     this.pivotGridField1.Caption = "Year";
     this.pivotGridField1.FieldName = "Year";
     this.pivotGridField1.Name = "pivotGridField1";
     this.pivotGridField1.Options.AllowFilter = DevExpress.Utils.DefaultBoolean.False;
     this.pivotGridField1.Options.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     //
     // pivotGridField2
     //
     this.pivotGridField2.Area = DevExpress.XtraPivotGrid.PivotArea.RowArea;
     this.pivotGridField2.AreaIndex = 1;
     this.pivotGridField2.Caption = "Month";
     this.pivotGridField2.FieldName = "Month";
     this.pivotGridField2.Name = "pivotGridField2";
     //
     // pivotGridField3
     //
     this.pivotGridField3.Area = DevExpress.XtraPivotGrid.PivotArea.DataArea;
     this.pivotGridField3.AreaIndex = 0;
     this.pivotGridField3.EmptyValueText = "0";
     this.pivotGridField3.FieldName = "TotalAmount";
     this.pivotGridField3.Name = "pivotGridField3";
     //
     // pivotGridField4
     //
     this.pivotGridField4.Area = DevExpress.XtraPivotGrid.PivotArea.RowArea;
     this.pivotGridField4.AreaIndex = 0;
     this.pivotGridField4.Caption = "Category";
     this.pivotGridField4.FieldName = "strDescription";
     this.pivotGridField4.Name = "pivotGridField4";
     //
     // 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, ((System.Byte)(0)));
     this.label63.Location = new System.Drawing.Point(16, 8);
     this.label63.Name = "label63";
     this.label63.Size = new System.Drawing.Size(100, 16);
     this.label63.TabIndex = 38;
     this.label63.Text = "Category";
     //
     // cmbCategory
     //
     this.cmbCategory.EditValue = "cbGIROStatus";
     this.cmbCategory.Location = new System.Drawing.Point(96, 8);
     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.Properties.Items.AddRange(new object[] {
                                                                 new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Active", 1, -1),
                                                                 new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Inactive", 0, -1)});
     this.cmbCategory.Properties.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.cmbCategory.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.cmbCategory.Size = new System.Drawing.Size(176, 20);
     this.cmbCategory.TabIndex = 39;
     this.cmbCategory.SelectedValueChanged += new System.EventHandler(this.cmbCategory_SelectedValueChanged);
     //
     // PRINT1
     //
     this.PRINT1.EditValue = "PRINT";
     this.PRINT1.Location = new System.Drawing.Point(288, 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 = 140;
     this.PRINT1.OpenLink += new DevExpress.XtraEditors.Controls.OpenLinkEventHandler(this.PRINT1_OpenLink);
     //
     // printingSystem1
     //
     this.printingSystem1.Links.AddRange(new object[] {
                                                          this.printableComponentLink1});
     //
     // printableComponentLink1
     //
     this.printableComponentLink1.Component = this.MtMSalesGrid;
     this.printableComponentLink1.PageHeaderFooter = new DevExpress.XtraPrinting.PageHeaderFooter(new DevExpress.XtraPrinting.PageHeaderArea(new string[] {
                                                                                                                                                              "Month To Month Sales Report",
                                                                                                                                                              "",
                                                                                                                                                              "[Date Printed] [Time Printed]"}, new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.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, ((System.Byte)(134))), DevExpress.XtraPrinting.BrickAlignment.Near));
     this.printableComponentLink1.PrintingSystem = this.printingSystem1;
     this.printableComponentLink1.CreateDetailHeaderArea += new DevExpress.XtraPrinting.CreateAreaEventHandler(this.printableComponentLink1_CreateDetailHeaderArea);
     //
     // RPMtMSales
     //
     this.AutoScale = false;
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 14);
     this.ClientSize = new System.Drawing.Size(874, 470);
     this.Controls.Add(this.PRINT1);
     this.Controls.Add(this.cmbCategory);
     this.Controls.Add(this.label63);
     this.Controls.Add(this.MtMSalesGrid);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
     this.Name = "RPMtMSales";
     this.Text = "Month to Month Sales";
     this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
     this.Load += new System.EventHandler(this.XtraForm1_Load);
     ((System.ComponentModel.ISupportInitialize)(this.MtMSalesGrid)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbCategory.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.PRINT1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.printingSystem1)).EndInit();
     this.ResumeLayout(false);
 }
Example #6
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     DevExpress.XtraGrid.GridLevelNode gridLevelNode1 = new DevExpress.XtraGrid.GridLevelNode();
     DevExpress.XtraGrid.GridLevelNode gridLevelNode2 = new DevExpress.XtraGrid.GridLevelNode();
     DevExpress.XtraGrid.GridLevelNode gridLevelNode3 = new DevExpress.XtraGrid.GridLevelNode();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmManager));
     this.MainMenu1 = new System.Windows.Forms.MainMenu(this.components);
     this.MenuItem1 = new System.Windows.Forms.MenuItem();
     this.MenuItem2 = new System.Windows.Forms.MenuItem();
     this.MenuItem4 = new System.Windows.Forms.MenuItem();
     this.MenuItem6 = new System.Windows.Forms.MenuItem();
     this.MenuItem7 = new System.Windows.Forms.MenuItem();
     this.MenuItem8 = new System.Windows.Forms.MenuItem();
     this.MenuItem9 = new System.Windows.Forms.MenuItem();
     this.MenuItem10 = new System.Windows.Forms.MenuItem();
     this.MenuItem5 = new System.Windows.Forms.MenuItem();
     this.tabControlManager = new DevExpress.XtraTab.XtraTabControl();
     this.tabManagerOne = new DevExpress.XtraTab.XtraTabPage();
     this.lblOne_2 = new DevExpress.XtraEditors.SimpleButton();
     this.lblOne_1 = new DevExpress.XtraEditors.SimpleButton();
     this.groupIPPMaster = new DevExpress.XtraEditors.GroupControl();
     this.groupIPP = new DevExpress.XtraEditors.GroupControl();
     this.ComboBoxIPP = new DevExpress.XtraEditors.ImageComboBoxEdit();
     this.grpIPP2 = new DevExpress.XtraEditors.GroupControl();
     this.btnReset = new DevExpress.XtraEditors.SimpleButton();
     this.lkBranch = new DevExpress.XtraEditors.LookUpEdit();
     this.lkBank = new DevExpress.XtraEditors.LookUpEdit();
     this.IPPdtTo = new DevExpress.XtraEditors.DateEdit();
     this.IPPdtStart = new DevExpress.XtraEditors.DateEdit();
     this.btnSearch = new DevExpress.XtraEditors.SimpleButton();
     this.txtCreditCardScr = new DevExpress.XtraEditors.TextEdit();
     this.label4 = new System.Windows.Forms.Label();
     this.label3 = new System.Windows.Forms.Label();
     this.label2 = new System.Windows.Forms.Label();
     this.IPPlblDtTo = new System.Windows.Forms.Label();
     this.IPPlblDtFrom = new System.Windows.Forms.Label();
     this.btnReceiveIPP = new DevExpress.XtraEditors.SimpleButton();
     this.btnSendIPP = new DevExpress.XtraEditors.SimpleButton();
     this.btnUpdateIPP = new DevExpress.XtraEditors.SimpleButton();
     this.btnDeleteIPP = new DevExpress.XtraEditors.SimpleButton();
     this.btnNewIPP = new DevExpress.XtraEditors.SimpleButton();
     this.IPPGrid = new DevExpress.XtraGrid.GridControl();
     this.IPPGridView = new DevExpress.XtraGrid.Views.Grid.GridView();
     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.gridColumn8 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.hypReceipts = new System.Windows.Forms.Label();
     this.hypIPPDetails = new System.Windows.Forms.Label();
     this.GroupIPPDetails = new DevExpress.XtraEditors.GroupControl();
     this.strReferenceNo = new DevExpress.XtraEditors.TextEdit();
     this.label7 = new System.Windows.Forms.Label();
     this.IPPBankCode = new DevExpress.XtraEditors.LookUpEdit();
     this.IPPNMonths = new DevExpress.XtraEditors.ImageComboBoxEdit();
     this.IPPCCNo = new DevExpress.XtraEditors.TextEdit();
     this.IPPStatus = new DevExpress.XtraEditors.TextEdit();
     this.IPPDateRcv = new DevExpress.XtraEditors.TextEdit();
     this.IPPDateSent = new DevExpress.XtraEditors.TextEdit();
     this.IPPBranchCode = new DevExpress.XtraEditors.TextEdit();
     this.IPPCreatedDate = new DevExpress.XtraEditors.TextEdit();
     this.IPPLBL1 = new System.Windows.Forms.Label();
     this.IPPLBL16 = new System.Windows.Forms.Label();
     this.IPPMerchantNo = new DevExpress.XtraEditors.TextEdit();
     this.IPPLBL8 = new System.Windows.Forms.Label();
     this.IPPLBL14 = new System.Windows.Forms.Label();
     this.IPPLBL12 = new System.Windows.Forms.Label();
     this.IPPLBL13 = new System.Windows.Forms.Label();
     this.IPPLBL11 = new System.Windows.Forms.Label();
     this.IPPLBL10 = new System.Windows.Forms.Label();
     this.IPPLBL9 = new System.Windows.Forms.Label();
     this.IPPLBL7 = new System.Windows.Forms.Label();
     this.IPPAmount = new DevExpress.XtraEditors.TextEdit();
     this.IPPInterest = new DevExpress.XtraEditors.TextEdit();
     this.IPPNettAmount = new DevExpress.XtraEditors.TextEdit();
     this.IPPLBL5 = new System.Windows.Forms.Label();
     this.IPPLBL6 = new System.Windows.Forms.Label();
     this.IPPLBL4 = new System.Windows.Forms.Label();
     this.IPPLBL3 = new System.Windows.Forms.Label();
     this.IPPLBL2 = new System.Windows.Forms.Label();
     this.IPPMemberId = new DevExpress.XtraEditors.TextEdit();
     this.IPPMemberName = new DevExpress.XtraEditors.TextEdit();
     this.IPPId = new DevExpress.XtraEditors.TextEdit();
     this.groupIPPReceipt = new DevExpress.XtraEditors.GroupControl();
     this.btnReceiptUnlink = new DevExpress.XtraEditors.SimpleButton();
     this.btnReceiptLink = new DevExpress.XtraEditors.SimpleButton();
     this.gridReceipt = new DevExpress.XtraGrid.GridControl();
     this.IPPReceiptView = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumnIPPR = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnIPPR1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnIPPR2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnIPPR3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnIPPR4 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnIPPR5 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnIPPR6 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnIPPR7 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnIPPR8 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnIPPR9 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.label10 = new System.Windows.Forms.Label();
     this.IPPReceiptStatus = new DevExpress.XtraEditors.ImageComboBoxEdit();
     this.groupGIROMaster = new DevExpress.XtraEditors.GroupControl();
     this.xtraTabControl1 = new DevExpress.XtraTab.XtraTabControl();
     this.tabGiroDetails = new DevExpress.XtraTab.XtraTabPage();
     this.luedtBankBranch = new DevExpress.XtraEditors.LookUpEdit();
     this.luedtBank = new DevExpress.XtraEditors.LookUpEdit();
     this.luedtPackage = new DevExpress.XtraEditors.LookUpEdit();
     this.luedtBranch = new DevExpress.XtraEditors.LookUpEdit();
     this.label70 = new System.Windows.Forms.Label();
     this.txtPackageDesc = new DevExpress.XtraEditors.TextEdit();
     this.txtAccountNo = new DevExpress.XtraEditors.TextEdit();
     this.txtGIROId = new DevExpress.XtraEditors.TextEdit();
     this.txtRemark = new DevExpress.XtraEditors.MemoEdit();
     this.lblGiro_BankBranch = new System.Windows.Forms.Label();
     this.lblGiro_BankACNumber = new System.Windows.Forms.Label();
     this.lblGiro_BankCode = new System.Windows.Forms.Label();
     this.lblGiro_Remark = new System.Windows.Forms.Label();
     this.lblGiro_Package = new System.Windows.Forms.Label();
     this.lblGiro_Branch = new System.Windows.Forms.Label();
     this.lblGiro_MemberID = new System.Windows.Forms.Label();
     this.lblGiroID = new System.Windows.Forms.Label();
     this.tabGiroTrnsHistory = new DevExpress.XtraTab.XtraTabPage();
     this.GridTransaction = new DevExpress.XtraGrid.GridControl();
     this.gridView4 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.GroupGiro = new DevExpress.XtraEditors.GroupControl();
     this.comboBoxGiroStatus = new DevExpress.XtraEditors.ImageComboBoxEdit();
     this.label63 = new System.Windows.Forms.Label();
     this.btnImport = new DevExpress.XtraEditors.SimpleButton();
     this.btnGiroExport = new DevExpress.XtraEditors.SimpleButton();
     this.btnGiroUpdate = new DevExpress.XtraEditors.SimpleButton();
     this.btnGiroDelete = new DevExpress.XtraEditors.SimpleButton();
     this.btnGiroNew = new DevExpress.XtraEditors.SimpleButton();
     this.GiroGrid = new DevExpress.XtraGrid.GridControl();
     this.GIROGridView = 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.tabManagerTwo = new DevExpress.XtraTab.XtraTabPage();
     this.GrpPayroll = new DevExpress.XtraEditors.GroupControl();
     this.progressBarControl1 = new DevExpress.XtraEditors.ProgressBarControl();
     this.cbJob = new DevExpress.XtraEditors.ImageComboBoxEdit();
     this.label8 = new System.Windows.Forms.Label();
     this.grpGridExcel = new DevExpress.XtraEditors.GroupControl();
     this.gridExcel = new DevExpress.XtraGrid.GridControl();
     this.gridViewExcel = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn19 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.FirstPayDate = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn24 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn25 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn26 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn27 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn28 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn29 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn30 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn31 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn32 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn33 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn34 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn35 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn36 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.SecondPayDate = new DevExpress.XtraGrid.Columns.GridColumn();
     this.btnPayrollExport = new DevExpress.XtraEditors.SimpleButton();
     this.btnPayrollGenerate = new DevExpress.XtraEditors.SimpleButton();
     this.btnPayrollDelete = new DevExpress.XtraEditors.SimpleButton();
     this.comboBoxEditMTH = new DevExpress.XtraEditors.ComboBoxEdit();
     this.comboBoxEditYR = new DevExpress.XtraEditors.ComboBoxEdit();
     this.lblYear = new System.Windows.Forms.Label();
     this.lblMonth = new System.Windows.Forms.Label();
     this.cmbxPayroll = new DevExpress.XtraEditors.ComboBoxEdit();
     this.gridPayroll = new DevExpress.XtraGrid.GridControl();
     this.gridViewPayroll = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.nEmployeeID = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn9 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn17 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn18 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.dtFirstRunDate = new DevExpress.XtraGrid.Columns.GridColumn();
     this.nNormalOT = new DevExpress.XtraGrid.Columns.GridColumn();
     this.nPublicHolidayOT = new DevExpress.XtraGrid.Columns.GridColumn();
     this.nOffDayOT = new DevExpress.XtraGrid.Columns.GridColumn();
     this.nPartTimeWorkHours = new DevExpress.XtraGrid.Columns.GridColumn();
     this.nALEntitlementHours = new DevExpress.XtraGrid.Columns.GridColumn();
     this.nPHEntitlementHours = new DevExpress.XtraGrid.Columns.GridColumn();
     this.mServiceReimbursements = new DevExpress.XtraGrid.Columns.GridColumn();
     this.nTotalLateness = new DevExpress.XtraGrid.Columns.GridColumn();
     this.nUnpaidAL = new DevExpress.XtraGrid.Columns.GridColumn();
     this.nUnpaidTO = new DevExpress.XtraGrid.Columns.GridColumn();
     this.nUnpaidMedical = new DevExpress.XtraGrid.Columns.GridColumn();
     this.mCommission = new DevExpress.XtraGrid.Columns.GridColumn();
     this.mCommissionLatenessPenalty = new DevExpress.XtraGrid.Columns.GridColumn();
     this.dtSecondRunDate = new DevExpress.XtraGrid.Columns.GridColumn();
     this.tabManagerThree = new DevExpress.XtraTab.XtraTabPage();
     this.lblThree_2 = new DevExpress.XtraEditors.SimpleButton();
     this.lblThree_1 = new DevExpress.XtraEditors.SimpleButton();
     this.lblThree_3 = new DevExpress.XtraEditors.SimpleButton();
     this.grpClassSchedule = new DevExpress.XtraEditors.GroupControl();
     this.comboBoxBranch = new DevExpress.XtraEditors.LookUpEdit();
     this.btnRefreshClassSchedule = new DevExpress.XtraEditors.SimpleButton();
     this.lblPQBranch = new System.Windows.Forms.Label();
     this.lblSUN = new System.Windows.Forms.Label();
     this.panelSun = new System.Windows.Forms.Panel();
     this.panelSat = new System.Windows.Forms.Panel();
     this.lblFRI = new System.Windows.Forms.Label();
     this.lblTHU = new System.Windows.Forms.Label();
     this.lblWED = new System.Windows.Forms.Label();
     this.lblTUE = new System.Windows.Forms.Label();
     this.panelFri = new System.Windows.Forms.Panel();
     this.panelThu = new System.Windows.Forms.Panel();
     this.panelWed = new System.Windows.Forms.Panel();
     this.panelTue = new System.Windows.Forms.Panel();
     this.panelMon = new System.Windows.Forms.Panel();
     this.lblMON = new System.Windows.Forms.Label();
     this.btnPrintClassSchedule = new DevExpress.XtraEditors.SimpleButton();
     this.btnNewClassSchedule = new DevExpress.XtraEditors.SimpleButton();
     this.lblSAT = new System.Windows.Forms.Label();
     this.groupMemCard = new DevExpress.XtraEditors.GroupControl();
     this.grpRoadShow = new DevExpress.XtraEditors.GroupControl();
     this.tabManagerFour = new DevExpress.XtraTab.XtraTabPage();
     this.lblFour_2 = new DevExpress.XtraEditors.SimpleButton();
     this.lblFour_1 = new DevExpress.XtraEditors.SimpleButton();
     this.lblFour_3 = new DevExpress.XtraEditors.SimpleButton();
     this.lblFour_4 = new DevExpress.XtraEditors.SimpleButton();
     this.lblFour_5 = new DevExpress.XtraEditors.SimpleButton();
     this.panel2 = new System.Windows.Forms.Panel();
     this.tabManagerFive = new DevExpress.XtraTab.XtraTabPage();
     this.label6 = new System.Windows.Forms.Label();
     this.ReportPanel = new DevExpress.XtraEditors.PanelControl();
     this.lk_ReportView = new DevExpress.XtraEditors.LookUpEdit();
     this.lblFive_9 = new DevExpress.XtraEditors.SimpleButton();
     this.lblFive_10 = new DevExpress.XtraEditors.SimpleButton();
     this.lblFive_4 = new DevExpress.XtraEditors.SimpleButton();
     this.lblFive_2 = new DevExpress.XtraEditors.SimpleButton();
     this.lblFive_8 = new DevExpress.XtraEditors.SimpleButton();
     this.lblFive_7 = new DevExpress.XtraEditors.SimpleButton();
     this.lblFive_3 = new DevExpress.XtraEditors.SimpleButton();
     this.lblFive_6 = new DevExpress.XtraEditors.SimpleButton();
     this.lblFive_1 = new DevExpress.XtraEditors.SimpleButton();
     this.lblFive_5 = new DevExpress.XtraEditors.SimpleButton();
     this.tabManagerSix = new DevExpress.XtraTab.XtraTabPage();
     this.lk_MasterData = new DevExpress.XtraEditors.LookUpEdit();
     this.panel1 = new System.Windows.Forms.Panel();
     this.label1 = new System.Windows.Forms.Label();
     this.printingSystem1 = new DevExpress.XtraPrinting.PrintingSystem(this.components);
     this.barManager1 = new DevExpress.XtraBars.BarManager(this.components);
     this.bar1 = new DevExpress.XtraBars.Bar();
     this.bbiManagerLoginOut = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem1 = new DevExpress.XtraBars.BarButtonItem();
     this.barstaticCurrentLogin = new DevExpress.XtraBars.BarButtonItem();
     this.barAndDockingController1 = new DevExpress.XtraBars.BarAndDockingController(this.components);
     this.barDockControlTop = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlBottom = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlLeft = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlRight = new DevExpress.XtraBars.BarDockControl();
     this.bbiManagerTimeCard = new DevExpress.XtraBars.BarButtonItem();
     this.printDocument1 = new System.Drawing.Printing.PrintDocument();
     this.openFileDialog1 = new System.Windows.Forms.OpenFileDialog();
     this.gridColumnPGE3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnPGE2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnPGE1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.mdPGE_txtNQuantity = new DevExpress.XtraEditors.TextEdit();
     this.mdPGE_txtStrPackageCode = new DevExpress.XtraEditors.ImageComboBoxEdit();
     this.mdPGE_cdStrPackageGroupCode = new DevExpress.XtraEditors.ImageComboBoxEdit();
     this.mdPGE_lblNQuantity = new System.Windows.Forms.Label();
     this.mdPGE_lblStrPackageCode = new System.Windows.Forms.Label();
     this.mdPGE_lblStrPackageGroupCode = new System.Windows.Forms.Label();
     this.folderBrowserDialog1 = new System.Windows.Forms.FolderBrowserDialog();
     this.defaultLookAndFeel1 = new DevExpress.LookAndFeel.DefaultLookAndFeel(this.components);
     this.label5 = new System.Windows.Forms.Label();
     this.toolTipController1 = new DevExpress.Utils.ToolTipController(this.components);
     ((System.ComponentModel.ISupportInitialize)(this.tabControlManager)).BeginInit();
     this.tabControlManager.SuspendLayout();
     this.tabManagerOne.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupIPPMaster)).BeginInit();
     this.groupIPPMaster.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupIPP)).BeginInit();
     this.groupIPP.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ComboBoxIPP.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.grpIPP2)).BeginInit();
     this.grpIPP2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.lkBranch.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkBank.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPdtTo.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPdtTo.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPdtStart.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPdtStart.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCreditCardScr.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPGrid)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPGridView)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.GroupIPPDetails)).BeginInit();
     this.GroupIPPDetails.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.strReferenceNo.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPBankCode.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPNMonths.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPCCNo.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPStatus.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPDateRcv.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPDateSent.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPBranchCode.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPCreatedDate.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPMerchantNo.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPAmount.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPInterest.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPNettAmount.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPMemberId.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPMemberName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPId.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupIPPReceipt)).BeginInit();
     this.groupIPPReceipt.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridReceipt)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPReceiptView)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPReceiptStatus.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupGIROMaster)).BeginInit();
     this.groupGIROMaster.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).BeginInit();
     this.xtraTabControl1.SuspendLayout();
     this.tabGiroDetails.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.luedtBankBranch.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.luedtBank.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.luedtPackage.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.luedtBranch.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPackageDesc.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtAccountNo.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtGIROId.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtRemark.Properties)).BeginInit();
     this.tabGiroTrnsHistory.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.GridTransaction)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.GroupGiro)).BeginInit();
     this.GroupGiro.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.comboBoxGiroStatus.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.GiroGrid)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.GIROGridView)).BeginInit();
     this.tabManagerTwo.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.GrpPayroll)).BeginInit();
     this.GrpPayroll.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.progressBarControl1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbJob.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.grpGridExcel)).BeginInit();
     this.grpGridExcel.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridExcel)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewExcel)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.comboBoxEditMTH.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.comboBoxEditYR.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbxPayroll.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridPayroll)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewPayroll)).BeginInit();
     this.tabManagerThree.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grpClassSchedule)).BeginInit();
     this.grpClassSchedule.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.comboBoxBranch.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupMemCard)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.grpRoadShow)).BeginInit();
     this.tabManagerFour.SuspendLayout();
     this.tabManagerFive.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ReportPanel)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_ReportView.Properties)).BeginInit();
     this.tabManagerSix.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.lk_MasterData.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.printingSystem1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.barManager1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.barAndDockingController1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.mdPGE_txtNQuantity.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.mdPGE_txtStrPackageCode.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.mdPGE_cdStrPackageGroupCode.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // MainMenu1
     //
     this.MainMenu1.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
     this.MenuItem1,
     this.MenuItem4,
     this.MenuItem5});
     //
     // MenuItem1
     //
     this.MenuItem1.Index = 0;
     this.MenuItem1.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
     this.MenuItem2});
     this.MenuItem1.Text = "File";
     //
     // MenuItem2
     //
     this.MenuItem2.Index = 0;
     this.MenuItem2.Text = "Quit";
     //
     // MenuItem4
     //
     this.MenuItem4.Index = 1;
     this.MenuItem4.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
     this.MenuItem6,
     this.MenuItem7,
     this.MenuItem8,
     this.MenuItem9,
     this.MenuItem10});
     this.MenuItem4.Text = "Tools";
     //
     // MenuItem6
     //
     this.MenuItem6.Index = 0;
     this.MenuItem6.Text = "Change Password";
     //
     // MenuItem7
     //
     this.MenuItem7.Index = 1;
     this.MenuItem7.Text = "Block Membership ID";
     //
     // MenuItem8
     //
     this.MenuItem8.Index = 2;
     this.MenuItem8.Text = "Reset Membership ID";
     //
     // MenuItem9
     //
     this.MenuItem9.Index = 3;
     this.MenuItem9.Text = "Re-print receipt";
     //
     // MenuItem10
     //
     this.MenuItem10.Index = 4;
     this.MenuItem10.Text = "Open Carton";
     //
     // MenuItem5
     //
     this.MenuItem5.Index = 2;
     this.MenuItem5.Text = "Help";
     //
     // tabControlManager
     //
     this.tabControlManager.Appearance.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tabControlManager.Appearance.ForeColor = System.Drawing.Color.Transparent;
     this.tabControlManager.Appearance.Options.UseFont = true;
     this.tabControlManager.Appearance.Options.UseForeColor = true;
     this.tabControlManager.AppearancePage.Header.Font = new System.Drawing.Font("Tahoma", 10.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tabControlManager.AppearancePage.Header.Options.UseFont = true;
     this.tabControlManager.Cursor = System.Windows.Forms.Cursors.Arrow;
     this.tabControlManager.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tabControlManager.ImeMode = System.Windows.Forms.ImeMode.On;
     this.tabControlManager.Location = new System.Drawing.Point(0, 40);
     this.tabControlManager.LookAndFeel.UseDefaultLookAndFeel = false;
     this.tabControlManager.Name = "tabControlManager";
     this.tabControlManager.PaintStyleName = "Skin";
     this.tabControlManager.SelectedTabPage = this.tabManagerOne;
     this.tabControlManager.Size = new System.Drawing.Size(1016, 672);
     this.tabControlManager.TabIndex = 5;
     this.tabControlManager.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
     this.tabManagerOne,
     this.tabManagerTwo,
     this.tabManagerThree,
     this.tabManagerFour,
     this.tabManagerFive,
     this.tabManagerSix});
     this.tabControlManager.Text = "tabAccount";
     this.tabControlManager.Click += new System.EventHandler(this.tabControlManager_Click);
     //
     // tabManagerOne
     //
     this.tabManagerOne.Appearance.Header.Font = new System.Drawing.Font("Tahoma", 10.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tabManagerOne.Appearance.Header.Options.UseFont = true;
     this.tabManagerOne.Appearance.PageClient.BackColor = System.Drawing.Color.DimGray;
     this.tabManagerOne.Appearance.PageClient.Options.UseBackColor = true;
     this.tabManagerOne.Controls.Add(this.lblOne_2);
     this.tabManagerOne.Controls.Add(this.lblOne_1);
     this.tabManagerOne.Controls.Add(this.groupIPPMaster);
     this.tabManagerOne.Controls.Add(this.groupGIROMaster);
     this.tabManagerOne.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tabManagerOne.Name = "tabManagerOne";
     this.tabManagerOne.PageVisible = false;
     this.tabManagerOne.Size = new System.Drawing.Size(1007, 637);
     this.tabManagerOne.Text = "Account";
     //
     // lblOne_2
     //
     this.lblOne_2.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.lblOne_2.Appearance.ForeColor = System.Drawing.Color.MediumBlue;
     this.lblOne_2.Appearance.Options.UseFont = true;
     this.lblOne_2.Appearance.Options.UseForeColor = true;
     this.lblOne_2.Location = new System.Drawing.Point(152, 0);
     this.lblOne_2.Name = "lblOne_2";
     this.lblOne_2.Size = new System.Drawing.Size(138, 23);
     this.lblOne_2.TabIndex = 144;
     this.lblOne_2.Text = "GIRO";
     this.lblOne_2.Click += new System.EventHandler(this.lblOne_2_Click);
     //
     // lblOne_1
     //
     this.lblOne_1.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.lblOne_1.Appearance.ForeColor = System.Drawing.Color.MediumBlue;
     this.lblOne_1.Appearance.Options.UseFont = true;
     this.lblOne_1.Appearance.Options.UseForeColor = true;
     this.lblOne_1.Location = new System.Drawing.Point(8, 0);
     this.lblOne_1.Name = "lblOne_1";
     this.lblOne_1.Size = new System.Drawing.Size(138, 23);
     this.lblOne_1.TabIndex = 143;
     this.lblOne_1.Text = "IPP";
     this.lblOne_1.Click += new System.EventHandler(this.lblOne_1_Click);
     //
     // groupIPPMaster
     //
     this.groupIPPMaster.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowOnly;
     this.groupIPPMaster.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.groupIPPMaster.Controls.Add(this.groupIPP);
     this.groupIPPMaster.Controls.Add(this.hypReceipts);
     this.groupIPPMaster.Controls.Add(this.hypIPPDetails);
     this.groupIPPMaster.Controls.Add(this.GroupIPPDetails);
     this.groupIPPMaster.Controls.Add(this.groupIPPReceipt);
     this.groupIPPMaster.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.groupIPPMaster.Location = new System.Drawing.Point(0, 29);
     this.groupIPPMaster.Name = "groupIPPMaster";
     this.groupIPPMaster.ShowCaption = false;
     this.groupIPPMaster.Size = new System.Drawing.Size(1007, 608);
     this.toolTipController1.SetSuperTip(this.groupIPPMaster, null);
     this.groupIPPMaster.TabIndex = 20;
     this.groupIPPMaster.Text = "GroupControl3";
     //
     // groupIPP
     //
     this.groupIPP.Appearance.BackColor = System.Drawing.SystemColors.Control;
     this.groupIPP.Appearance.Options.UseBackColor = true;
     this.groupIPP.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowOnly;
     this.groupIPP.Controls.Add(this.ComboBoxIPP);
     this.groupIPP.Controls.Add(this.grpIPP2);
     this.groupIPP.Controls.Add(this.btnReceiveIPP);
     this.groupIPP.Controls.Add(this.btnSendIPP);
     this.groupIPP.Controls.Add(this.btnUpdateIPP);
     this.groupIPP.Controls.Add(this.btnDeleteIPP);
     this.groupIPP.Controls.Add(this.btnNewIPP);
     this.groupIPP.Controls.Add(this.IPPGrid);
     this.groupIPP.Location = new System.Drawing.Point(4, 0);
     this.groupIPP.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.groupIPP.LookAndFeel.UseDefaultLookAndFeel = false;
     this.groupIPP.Name = "groupIPP";
     this.groupIPP.Size = new System.Drawing.Size(996, 290);
     this.toolTipController1.SetSuperTip(this.groupIPP, null);
     this.groupIPP.TabIndex = 16;
     this.groupIPP.Text = "IPP";
     //
     // ComboBoxIPP
     //
     this.ComboBoxIPP.Location = new System.Drawing.Point(8, 56);
     this.ComboBoxIPP.Name = "ComboBoxIPP";
     this.ComboBoxIPP.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.ComboBoxIPP.Properties.Items.AddRange(new DevExpress.XtraEditors.Controls.ImageComboBoxItem[] {
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Show All", null, -1),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Not Sent", 0, -1),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Sent, Not Received", 1, -1),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Success", 2, -1)});
     this.ComboBoxIPP.Size = new System.Drawing.Size(136, 20);
     this.ComboBoxIPP.TabIndex = 130;
     this.ComboBoxIPP.SelectedIndexChanged += new System.EventHandler(this.ComboBoxIPP_SelectedIndexChanged);
     //
     // grpIPP2
     //
     this.grpIPP2.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowOnly;
     this.grpIPP2.Controls.Add(this.btnReset);
     this.grpIPP2.Controls.Add(this.lkBranch);
     this.grpIPP2.Controls.Add(this.lkBank);
     this.grpIPP2.Controls.Add(this.IPPdtTo);
     this.grpIPP2.Controls.Add(this.IPPdtStart);
     this.grpIPP2.Controls.Add(this.btnSearch);
     this.grpIPP2.Controls.Add(this.txtCreditCardScr);
     this.grpIPP2.Controls.Add(this.label4);
     this.grpIPP2.Controls.Add(this.label3);
     this.grpIPP2.Controls.Add(this.label2);
     this.grpIPP2.Controls.Add(this.IPPlblDtTo);
     this.grpIPP2.Controls.Add(this.IPPlblDtFrom);
     this.grpIPP2.Location = new System.Drawing.Point(0, 16);
     this.grpIPP2.LookAndFeel.UseDefaultLookAndFeel = false;
     this.grpIPP2.Name = "grpIPP2";
     this.grpIPP2.ShowCaption = false;
     this.grpIPP2.Size = new System.Drawing.Size(1000, 34);
     this.toolTipController1.SetSuperTip(this.grpIPP2, null);
     this.grpIPP2.TabIndex = 128;
     this.grpIPP2.Text = "groupControl4";
     //
     // btnReset
     //
     this.btnReset.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.btnReset.Appearance.Options.UseFont = true;
     this.btnReset.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnReset.Location = new System.Drawing.Point(928, 8);
     this.btnReset.Name = "btnReset";
     this.btnReset.Size = new System.Drawing.Size(56, 20);
     this.btnReset.TabIndex = 148;
     this.btnReset.Text = "Reset";
     this.btnReset.Click += new System.EventHandler(this.btnReset_Click);
     //
     // lkBranch
     //
     this.lkBranch.Location = new System.Drawing.Point(608, 8);
     this.lkBranch.Name = "lkBranch";
     this.lkBranch.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Style3D;
     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(64, 22);
     this.lkBranch.TabIndex = 147;
     //
     // lkBank
     //
     this.lkBank.Location = new System.Drawing.Point(336, 8);
     this.lkBank.Name = "lkBank";
     this.lkBank.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Style3D;
     this.lkBank.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lkBank.Size = new System.Drawing.Size(216, 22);
     this.lkBank.TabIndex = 146;
     //
     // IPPdtTo
     //
     this.IPPdtTo.EditValue = new System.DateTime(2006, 5, 19, 0, 0, 0, 0);
     this.IPPdtTo.Location = new System.Drawing.Point(200, 8);
     this.IPPdtTo.Name = "IPPdtTo";
     this.IPPdtTo.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Style3D;
     this.IPPdtTo.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.IPPdtTo.Properties.DisplayFormat.FormatString = "dd/MM/yyyy";
     this.IPPdtTo.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.IPPdtTo.Properties.EditFormat.FormatString = "dd/MM/yyyy";
     this.IPPdtTo.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.IPPdtTo.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.IPPdtTo.Properties.Mask.EditMask = "dd/MM/yyyy";
     this.IPPdtTo.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.IPPdtTo.Size = new System.Drawing.Size(96, 22);
     this.IPPdtTo.TabIndex = 138;
     //
     // IPPdtStart
     //
     this.IPPdtStart.EditValue = new System.DateTime(2006, 5, 19, 0, 0, 0, 0);
     this.IPPdtStart.Location = new System.Drawing.Point(80, 8);
     this.IPPdtStart.Name = "IPPdtStart";
     this.IPPdtStart.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Style3D;
     this.IPPdtStart.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.IPPdtStart.Properties.DisplayFormat.FormatString = "dd/MM/yyyy";
     this.IPPdtStart.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.IPPdtStart.Properties.EditFormat.FormatString = "dd/MM/yyyy";
     this.IPPdtStart.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.IPPdtStart.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.IPPdtStart.Properties.Mask.EditMask = "dd/MM/yyyy";
     this.IPPdtStart.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.IPPdtStart.Size = new System.Drawing.Size(96, 22);
     this.IPPdtStart.TabIndex = 137;
     //
     // btnSearch
     //
     this.btnSearch.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.btnSearch.Appearance.Options.UseFont = true;
     this.btnSearch.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnSearch.Location = new System.Drawing.Point(864, 8);
     this.btnSearch.Name = "btnSearch";
     this.btnSearch.Size = new System.Drawing.Size(56, 20);
     this.btnSearch.TabIndex = 135;
     this.btnSearch.Text = "Search";
     this.btnSearch.Click += new System.EventHandler(this.btnSearch_Click);
     //
     // txtCreditCardScr
     //
     this.txtCreditCardScr.EditValue = "";
     this.txtCreditCardScr.Location = new System.Drawing.Point(760, 8);
     this.txtCreditCardScr.Name = "txtCreditCardScr";
     this.txtCreditCardScr.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtCreditCardScr.Properties.Appearance.Options.UseFont = true;
     this.txtCreditCardScr.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Style3D;
     this.txtCreditCardScr.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.txtCreditCardScr.Size = new System.Drawing.Size(96, 22);
     this.txtCreditCardScr.TabIndex = 134;
     //
     // label4
     //
     this.label4.BackColor = System.Drawing.Color.Transparent;
     this.label4.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label4.Location = new System.Drawing.Point(680, 8);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(88, 16);
     this.toolTipController1.SetSuperTip(this.label4, null);
     this.label4.TabIndex = 132;
     this.label4.Text = "Credit Card";
     this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // 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, ((byte)(0)));
     this.label3.Location = new System.Drawing.Point(552, 8);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(56, 16);
     this.toolTipController1.SetSuperTip(this.label3, null);
     this.label3.TabIndex = 131;
     this.label3.Text = "Branch";
     this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // label2
     //
     this.label2.BackColor = System.Drawing.Color.Transparent;
     this.label2.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label2.Location = new System.Drawing.Point(296, 8);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(40, 16);
     this.toolTipController1.SetSuperTip(this.label2, null);
     this.label2.TabIndex = 130;
     this.label2.Text = "Bank";
     this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // IPPlblDtTo
     //
     this.IPPlblDtTo.BackColor = System.Drawing.Color.Transparent;
     this.IPPlblDtTo.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.IPPlblDtTo.Location = new System.Drawing.Point(176, 8);
     this.IPPlblDtTo.Name = "IPPlblDtTo";
     this.IPPlblDtTo.Size = new System.Drawing.Size(24, 16);
     this.toolTipController1.SetSuperTip(this.IPPlblDtTo, null);
     this.IPPlblDtTo.TabIndex = 125;
     this.IPPlblDtTo.Text = "To";
     this.IPPlblDtTo.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // IPPlblDtFrom
     //
     this.IPPlblDtFrom.BackColor = System.Drawing.Color.Transparent;
     this.IPPlblDtFrom.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.IPPlblDtFrom.Location = new System.Drawing.Point(8, 8);
     this.IPPlblDtFrom.Name = "IPPlblDtFrom";
     this.IPPlblDtFrom.Size = new System.Drawing.Size(72, 16);
     this.toolTipController1.SetSuperTip(this.IPPlblDtFrom, null);
     this.IPPlblDtFrom.TabIndex = 124;
     this.IPPlblDtFrom.Text = "Date From";
     this.IPPlblDtFrom.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // btnReceiveIPP
     //
     this.btnReceiveIPP.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.btnReceiveIPP.Appearance.Options.UseFont = true;
     this.btnReceiveIPP.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnReceiveIPP.Enabled = false;
     this.btnReceiveIPP.Location = new System.Drawing.Point(408, 56);
     this.btnReceiveIPP.Name = "btnReceiveIPP";
     this.btnReceiveIPP.Size = new System.Drawing.Size(62, 20);
     this.btnReceiveIPP.TabIndex = 13;
     this.btnReceiveIPP.Text = "Receive";
     this.btnReceiveIPP.Click += new System.EventHandler(this.btnReceiveIPP_Click);
     //
     // btnSendIPP
     //
     this.btnSendIPP.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.btnSendIPP.Appearance.Options.UseFont = true;
     this.btnSendIPP.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnSendIPP.Enabled = false;
     this.btnSendIPP.Location = new System.Drawing.Point(344, 56);
     this.btnSendIPP.Name = "btnSendIPP";
     this.btnSendIPP.Size = new System.Drawing.Size(62, 20);
     this.btnSendIPP.TabIndex = 12;
     this.btnSendIPP.Text = "Send";
     this.btnSendIPP.Click += new System.EventHandler(this.btnSendIPP_Click);
     //
     // btnUpdateIPP
     //
     this.btnUpdateIPP.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.btnUpdateIPP.Appearance.Options.UseFont = true;
     this.btnUpdateIPP.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnUpdateIPP.Location = new System.Drawing.Point(216, 56);
     this.btnUpdateIPP.Name = "btnUpdateIPP";
     this.btnUpdateIPP.Size = new System.Drawing.Size(62, 20);
     this.btnUpdateIPP.TabIndex = 10;
     this.btnUpdateIPP.Text = "Update";
     this.btnUpdateIPP.Click += new System.EventHandler(this.btnUpdateIPP_Click);
     //
     // btnDeleteIPP
     //
     this.btnDeleteIPP.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.btnDeleteIPP.Appearance.Options.UseFont = true;
     this.btnDeleteIPP.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnDeleteIPP.Location = new System.Drawing.Point(280, 56);
     this.btnDeleteIPP.Name = "btnDeleteIPP";
     this.btnDeleteIPP.Size = new System.Drawing.Size(62, 20);
     this.btnDeleteIPP.TabIndex = 5;
     this.btnDeleteIPP.Text = "Delete";
     this.btnDeleteIPP.Click += new System.EventHandler(this.btnDeleteIPP_Click);
     //
     // btnNewIPP
     //
     this.btnNewIPP.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.btnNewIPP.Appearance.Options.UseFont = true;
     this.btnNewIPP.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnNewIPP.Location = new System.Drawing.Point(152, 56);
     this.btnNewIPP.Name = "btnNewIPP";
     this.btnNewIPP.Size = new System.Drawing.Size(62, 20);
     this.btnNewIPP.TabIndex = 2;
     this.btnNewIPP.Text = "New";
     this.btnNewIPP.Click += new System.EventHandler(this.btnNewIPP_Click);
     //
     // IPPGrid
     //
     this.IPPGrid.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.IPPGrid.EmbeddedNavigator.Cursor = System.Windows.Forms.Cursors.Arrow;
     this.IPPGrid.EmbeddedNavigator.Name = "";
     gridLevelNode1.RelationName = "Level1";
     this.IPPGrid.LevelTree.Nodes.AddRange(new DevExpress.XtraGrid.GridLevelNode[] {
     gridLevelNode1});
     this.IPPGrid.Location = new System.Drawing.Point(2, 80);
     this.IPPGrid.LookAndFeel.UseDefaultLookAndFeel = false;
     this.IPPGrid.MainView = this.IPPGridView;
     this.IPPGrid.Name = "IPPGrid";
     this.IPPGrid.Size = new System.Drawing.Size(992, 208);
     this.IPPGrid.TabIndex = 0;
     this.IPPGrid.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.IPPGridView});
     //
     // IPPGridView
     //
     this.IPPGridView.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn10,
     this.gridColumn11,
     this.gridColumn12,
     this.gridColumn13,
     this.gridColumn14,
     this.gridColumn15,
     this.gridColumn16,
     this.gridColumn8});
     this.IPPGridView.GridControl = this.IPPGrid;
     this.IPPGridView.Name = "IPPGridView";
     this.IPPGridView.OptionsBehavior.Editable = false;
     this.IPPGridView.OptionsCustomization.AllowFilter = false;
     this.IPPGridView.OptionsFilter.AllowColumnMRUFilterList = false;
     this.IPPGridView.OptionsFilter.AllowMRUFilterList = false;
     this.IPPGridView.OptionsView.ShowGroupPanel = false;
     this.IPPGridView.FocusedRowChanged += new DevExpress.XtraGrid.Views.Base.FocusedRowChangedEventHandler(this.IPPGridView_FocusedRowChanged);
     this.IPPGridView.Click += new System.EventHandler(this.IPPGridView_Click);
     //
     // gridColumn10
     //
     this.gridColumn10.Caption = "ID";
     this.gridColumn10.FieldName = "nIPPID";
     this.gridColumn10.Name = "gridColumn10";
     this.gridColumn10.Visible = true;
     this.gridColumn10.VisibleIndex = 0;
     //
     // gridColumn11
     //
     this.gridColumn11.Caption = "Date Created";
     this.gridColumn11.FieldName = "dtDate";
     this.gridColumn11.Name = "gridColumn11";
     this.gridColumn11.Visible = true;
     this.gridColumn11.VisibleIndex = 6;
     //
     // gridColumn12
     //
     this.gridColumn12.Caption = "Member Id";
     this.gridColumn12.FieldName = "strMembershipID";
     this.gridColumn12.Name = "gridColumn12";
     this.gridColumn12.Visible = true;
     this.gridColumn12.VisibleIndex = 1;
     //
     // gridColumn13
     //
     this.gridColumn13.Caption = "Member Name";
     this.gridColumn13.FieldName = "strMemberName";
     this.gridColumn13.Name = "gridColumn13";
     this.gridColumn13.Visible = true;
     this.gridColumn13.VisibleIndex = 2;
     //
     // gridColumn14
     //
     this.gridColumn14.Caption = "Bank";
     this.gridColumn14.FieldName = "strBankDesc";
     this.gridColumn14.Name = "gridColumn14";
     this.gridColumn14.Visible = true;
     this.gridColumn14.VisibleIndex = 3;
     //
     // gridColumn15
     //
     this.gridColumn15.Caption = "Credit Card No.";
     this.gridColumn15.DisplayFormat.FormatString = "####-####-####-####";
     this.gridColumn15.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Custom;
     this.gridColumn15.FieldName = "strCreditCardNo";
     this.gridColumn15.GroupFormat.FormatString = "####-####-####-####";
     this.gridColumn15.GroupFormat.FormatType = DevExpress.Utils.FormatType.Custom;
     this.gridColumn15.MinWidth = 24;
     this.gridColumn15.Name = "gridColumn15";
     this.gridColumn15.Visible = true;
     this.gridColumn15.VisibleIndex = 4;
     //
     // gridColumn16
     //
     this.gridColumn16.Caption = "No. of Months";
     this.gridColumn16.FieldName = "nMonths";
     this.gridColumn16.Name = "gridColumn16";
     this.gridColumn16.Visible = true;
     this.gridColumn16.VisibleIndex = 5;
     //
     // gridColumn8
     //
     this.gridColumn8.Caption = "gridColumn8";
     this.gridColumn8.FieldName = "strIPP";
     this.gridColumn8.Name = "gridColumn8";
     //
     // hypReceipts
     //
     this.hypReceipts.AutoSize = true;
     this.hypReceipts.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.hypReceipts.Location = new System.Drawing.Point(128, 296);
     this.hypReceipts.Name = "hypReceipts";
     this.hypReceipts.Size = new System.Drawing.Size(83, 16);
     this.toolTipController1.SetSuperTip(this.hypReceipts, null);
     this.hypReceipts.TabIndex = 13;
     this.hypReceipts.Text = "RECEIPTS";
     this.hypReceipts.Click += new System.EventHandler(this.hypReceipts_Click);
     //
     // hypIPPDetails
     //
     this.hypIPPDetails.AutoSize = true;
     this.hypIPPDetails.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Underline))), System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.hypIPPDetails.Location = new System.Drawing.Point(16, 296);
     this.hypIPPDetails.Name = "hypIPPDetails";
     this.hypIPPDetails.Size = new System.Drawing.Size(99, 16);
     this.toolTipController1.SetSuperTip(this.hypIPPDetails, null);
     this.hypIPPDetails.TabIndex = 10;
     this.hypIPPDetails.Text = "IPP DETAILS";
     this.hypIPPDetails.Click += new System.EventHandler(this.hypIPPDetails_Click);
     //
     // GroupIPPDetails
     //
     this.GroupIPPDetails.Appearance.BackColor = System.Drawing.SystemColors.Control;
     this.GroupIPPDetails.Appearance.Options.UseBackColor = true;
     this.GroupIPPDetails.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowOnly;
     this.GroupIPPDetails.Controls.Add(this.strReferenceNo);
     this.GroupIPPDetails.Controls.Add(this.label7);
     this.GroupIPPDetails.Controls.Add(this.IPPBankCode);
     this.GroupIPPDetails.Controls.Add(this.IPPNMonths);
     this.GroupIPPDetails.Controls.Add(this.IPPCCNo);
     this.GroupIPPDetails.Controls.Add(this.IPPStatus);
     this.GroupIPPDetails.Controls.Add(this.IPPDateRcv);
     this.GroupIPPDetails.Controls.Add(this.IPPDateSent);
     this.GroupIPPDetails.Controls.Add(this.IPPBranchCode);
     this.GroupIPPDetails.Controls.Add(this.IPPCreatedDate);
     this.GroupIPPDetails.Controls.Add(this.IPPLBL1);
     this.GroupIPPDetails.Controls.Add(this.IPPLBL16);
     this.GroupIPPDetails.Controls.Add(this.IPPMerchantNo);
     this.GroupIPPDetails.Controls.Add(this.IPPLBL8);
     this.GroupIPPDetails.Controls.Add(this.IPPLBL14);
     this.GroupIPPDetails.Controls.Add(this.IPPLBL12);
     this.GroupIPPDetails.Controls.Add(this.IPPLBL13);
     this.GroupIPPDetails.Controls.Add(this.IPPLBL11);
     this.GroupIPPDetails.Controls.Add(this.IPPLBL10);
     this.GroupIPPDetails.Controls.Add(this.IPPLBL9);
     this.GroupIPPDetails.Controls.Add(this.IPPLBL7);
     this.GroupIPPDetails.Controls.Add(this.IPPAmount);
     this.GroupIPPDetails.Controls.Add(this.IPPInterest);
     this.GroupIPPDetails.Controls.Add(this.IPPNettAmount);
     this.GroupIPPDetails.Controls.Add(this.IPPLBL5);
     this.GroupIPPDetails.Controls.Add(this.IPPLBL6);
     this.GroupIPPDetails.Controls.Add(this.IPPLBL4);
     this.GroupIPPDetails.Controls.Add(this.IPPLBL3);
     this.GroupIPPDetails.Controls.Add(this.IPPLBL2);
     this.GroupIPPDetails.Controls.Add(this.IPPMemberId);
     this.GroupIPPDetails.Controls.Add(this.IPPMemberName);
     this.GroupIPPDetails.Controls.Add(this.IPPId);
     this.GroupIPPDetails.ImeMode = System.Windows.Forms.ImeMode.On;
     this.GroupIPPDetails.Location = new System.Drawing.Point(8, 320);
     this.GroupIPPDetails.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.GroupIPPDetails.LookAndFeel.UseDefaultLookAndFeel = false;
     this.GroupIPPDetails.Name = "GroupIPPDetails";
     this.GroupIPPDetails.Size = new System.Drawing.Size(992, 240);
     this.toolTipController1.SetSuperTip(this.GroupIPPDetails, null);
     this.GroupIPPDetails.TabIndex = 14;
     this.GroupIPPDetails.Text = "IPP Details";
     //
     // strReferenceNo
     //
     this.strReferenceNo.EditValue = "";
     this.strReferenceNo.Location = new System.Drawing.Point(600, 200);
     this.strReferenceNo.Name = "strReferenceNo";
     this.strReferenceNo.Size = new System.Drawing.Size(168, 20);
     this.strReferenceNo.TabIndex = 150;
     //
     // label7
     //
     this.label7.AutoSize = true;
     this.label7.BackColor = System.Drawing.Color.Transparent;
     this.label7.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label7.Location = new System.Drawing.Point(424, 200);
     this.label7.Name = "label7";
     this.label7.Size = new System.Drawing.Size(141, 16);
     this.toolTipController1.SetSuperTip(this.label7, null);
     this.label7.TabIndex = 149;
     this.label7.Text = "Reference Number  :";
     //
     // IPPBankCode
     //
     this.IPPBankCode.Location = new System.Drawing.Point(600, 128);
     this.IPPBankCode.Name = "IPPBankCode";
     this.IPPBankCode.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.IPPBankCode.Size = new System.Drawing.Size(168, 20);
     this.IPPBankCode.TabIndex = 145;
     this.IPPBankCode.EditValueChanged += new System.EventHandler(this.IPPBankCode_EditValueChanged);
     //
     // IPPNMonths
     //
     this.IPPNMonths.Location = new System.Drawing.Point(600, 176);
     this.IPPNMonths.Name = "IPPNMonths";
     this.IPPNMonths.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.IPPNMonths.Size = new System.Drawing.Size(168, 20);
     this.IPPNMonths.TabIndex = 144;
     //
     // IPPCCNo
     //
     this.IPPCCNo.AllowDrop = true;
     this.IPPCCNo.EditValue = "";
     this.IPPCCNo.Location = new System.Drawing.Point(600, 152);
     this.IPPCCNo.Name = "IPPCCNo";
     this.IPPCCNo.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.IPPCCNo.Properties.Appearance.Options.UseFont = true;
     this.IPPCCNo.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.IPPCCNo.Properties.Mask.BeepOnError = true;
     this.IPPCCNo.Properties.Mask.EditMask = "\\d{4}-\\d{4}-\\d{4}-\\d{4}";
     this.IPPCCNo.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Regular;
     this.IPPCCNo.Properties.Mask.SaveLiteral = false;
     this.IPPCCNo.Properties.Mask.UseMaskAsDisplayFormat = true;
     this.IPPCCNo.Properties.MaxLength = 19;
     this.IPPCCNo.Size = new System.Drawing.Size(168, 20);
     this.IPPCCNo.TabIndex = 143;
     //
     // IPPStatus
     //
     this.IPPStatus.EditValue = "";
     this.IPPStatus.Enabled = false;
     this.IPPStatus.Location = new System.Drawing.Point(600, 104);
     this.IPPStatus.Name = "IPPStatus";
     this.IPPStatus.Properties.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.IPPStatus.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.IPPStatus.Properties.Appearance.ForeColor = System.Drawing.Color.Black;
     this.IPPStatus.Properties.Appearance.Options.UseBackColor = true;
     this.IPPStatus.Properties.Appearance.Options.UseFont = true;
     this.IPPStatus.Properties.Appearance.Options.UseForeColor = true;
     this.IPPStatus.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.IPPStatus.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.IPPStatus.Properties.ReadOnly = true;
     this.IPPStatus.ShowToolTips = false;
     this.IPPStatus.Size = new System.Drawing.Size(168, 18);
     this.IPPStatus.TabIndex = 141;
     //
     // IPPDateRcv
     //
     this.IPPDateRcv.EditValue = "";
     this.IPPDateRcv.Enabled = false;
     this.IPPDateRcv.Location = new System.Drawing.Point(600, 80);
     this.IPPDateRcv.Name = "IPPDateRcv";
     this.IPPDateRcv.Properties.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.IPPDateRcv.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.IPPDateRcv.Properties.Appearance.ForeColor = System.Drawing.Color.Black;
     this.IPPDateRcv.Properties.Appearance.Options.UseBackColor = true;
     this.IPPDateRcv.Properties.Appearance.Options.UseFont = true;
     this.IPPDateRcv.Properties.Appearance.Options.UseForeColor = true;
     this.IPPDateRcv.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.IPPDateRcv.Properties.DisplayFormat.FormatString = "d";
     this.IPPDateRcv.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.IPPDateRcv.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.IPPDateRcv.Properties.Mask.EditMask = "dd/MM/yyyy";
     this.IPPDateRcv.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.DateTime;
     this.IPPDateRcv.Properties.ReadOnly = true;
     this.IPPDateRcv.ShowToolTips = false;
     this.IPPDateRcv.Size = new System.Drawing.Size(168, 18);
     this.IPPDateRcv.TabIndex = 140;
     //
     // IPPDateSent
     //
     this.IPPDateSent.EditValue = "";
     this.IPPDateSent.Enabled = false;
     this.IPPDateSent.Location = new System.Drawing.Point(600, 56);
     this.IPPDateSent.Name = "IPPDateSent";
     this.IPPDateSent.Properties.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.IPPDateSent.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.IPPDateSent.Properties.Appearance.ForeColor = System.Drawing.Color.Black;
     this.IPPDateSent.Properties.Appearance.Options.UseBackColor = true;
     this.IPPDateSent.Properties.Appearance.Options.UseFont = true;
     this.IPPDateSent.Properties.Appearance.Options.UseForeColor = true;
     this.IPPDateSent.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.IPPDateSent.Properties.DisplayFormat.FormatString = "d";
     this.IPPDateSent.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.IPPDateSent.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.IPPDateSent.Properties.Mask.EditMask = "dd/MM/yyyy";
     this.IPPDateSent.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.DateTime;
     this.IPPDateSent.Properties.ReadOnly = true;
     this.IPPDateSent.ShowToolTips = false;
     this.IPPDateSent.Size = new System.Drawing.Size(168, 18);
     this.IPPDateSent.TabIndex = 139;
     //
     // IPPBranchCode
     //
     this.IPPBranchCode.EditValue = "";
     this.IPPBranchCode.Enabled = false;
     this.IPPBranchCode.Location = new System.Drawing.Point(184, 128);
     this.IPPBranchCode.Name = "IPPBranchCode";
     this.IPPBranchCode.Properties.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.IPPBranchCode.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.IPPBranchCode.Properties.Appearance.ForeColor = System.Drawing.Color.Black;
     this.IPPBranchCode.Properties.Appearance.Options.UseBackColor = true;
     this.IPPBranchCode.Properties.Appearance.Options.UseFont = true;
     this.IPPBranchCode.Properties.Appearance.Options.UseForeColor = true;
     this.IPPBranchCode.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.IPPBranchCode.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.IPPBranchCode.Properties.ReadOnly = true;
     this.IPPBranchCode.Size = new System.Drawing.Size(168, 18);
     this.IPPBranchCode.TabIndex = 138;
     //
     // IPPCreatedDate
     //
     this.IPPCreatedDate.EditValue = "";
     this.IPPCreatedDate.Enabled = false;
     this.IPPCreatedDate.Location = new System.Drawing.Point(184, 56);
     this.IPPCreatedDate.Name = "IPPCreatedDate";
     this.IPPCreatedDate.Properties.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.IPPCreatedDate.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.IPPCreatedDate.Properties.Appearance.ForeColor = System.Drawing.Color.Black;
     this.IPPCreatedDate.Properties.Appearance.Options.UseBackColor = true;
     this.IPPCreatedDate.Properties.Appearance.Options.UseFont = true;
     this.IPPCreatedDate.Properties.Appearance.Options.UseForeColor = true;
     this.IPPCreatedDate.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.IPPCreatedDate.Properties.DisplayFormat.FormatString = "d";
     this.IPPCreatedDate.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.IPPCreatedDate.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.IPPCreatedDate.Properties.Mask.EditMask = "dd/MM/yyyy";
     this.IPPCreatedDate.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.DateTime;
     this.IPPCreatedDate.Properties.ReadOnly = true;
     this.IPPCreatedDate.Size = new System.Drawing.Size(168, 18);
     this.IPPCreatedDate.TabIndex = 137;
     //
     // IPPLBL1
     //
     this.IPPLBL1.AutoSize = true;
     this.IPPLBL1.BackColor = System.Drawing.Color.Transparent;
     this.IPPLBL1.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.IPPLBL1.Location = new System.Drawing.Point(32, 32);
     this.IPPLBL1.Name = "IPPLBL1";
     this.IPPLBL1.Size = new System.Drawing.Size(55, 16);
     this.toolTipController1.SetSuperTip(this.IPPLBL1, null);
     this.IPPLBL1.TabIndex = 136;
     this.IPPLBL1.Text = "IPP Id :";
     //
     // IPPLBL16
     //
     this.IPPLBL16.AutoSize = true;
     this.IPPLBL16.BackColor = System.Drawing.Color.Transparent;
     this.IPPLBL16.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.IPPLBL16.Location = new System.Drawing.Point(32, 128);
     this.IPPLBL16.Name = "IPPLBL16";
     this.IPPLBL16.Size = new System.Drawing.Size(98, 16);
     this.toolTipController1.SetSuperTip(this.IPPLBL16, null);
     this.IPPLBL16.TabIndex = 135;
     this.IPPLBL16.Text = "Branch Code :";
     //
     // IPPMerchantNo
     //
     this.IPPMerchantNo.EditValue = "";
     this.IPPMerchantNo.Enabled = false;
     this.IPPMerchantNo.Location = new System.Drawing.Point(184, 152);
     this.IPPMerchantNo.Name = "IPPMerchantNo";
     this.IPPMerchantNo.Properties.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.IPPMerchantNo.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.IPPMerchantNo.Properties.Appearance.ForeColor = System.Drawing.Color.Black;
     this.IPPMerchantNo.Properties.Appearance.Options.UseBackColor = true;
     this.IPPMerchantNo.Properties.Appearance.Options.UseFont = true;
     this.IPPMerchantNo.Properties.Appearance.Options.UseForeColor = true;
     this.IPPMerchantNo.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.IPPMerchantNo.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.IPPMerchantNo.Properties.ReadOnly = true;
     this.IPPMerchantNo.Size = new System.Drawing.Size(166, 18);
     this.IPPMerchantNo.TabIndex = 133;
     //
     // IPPLBL8
     //
     this.IPPLBL8.AutoSize = true;
     this.IPPLBL8.BackColor = System.Drawing.Color.Transparent;
     this.IPPLBL8.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.IPPLBL8.Location = new System.Drawing.Point(32, 152);
     this.IPPLBL8.Name = "IPPLBL8";
     this.IPPLBL8.Size = new System.Drawing.Size(99, 16);
     this.toolTipController1.SetSuperTip(this.IPPLBL8, null);
     this.IPPLBL8.TabIndex = 132;
     this.IPPLBL8.Text = "Merchant No :";
     //
     // IPPLBL14
     //
     this.IPPLBL14.AutoSize = true;
     this.IPPLBL14.BackColor = System.Drawing.Color.Transparent;
     this.IPPLBL14.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.IPPLBL14.Location = new System.Drawing.Point(424, 104);
     this.IPPLBL14.Name = "IPPLBL14";
     this.IPPLBL14.Size = new System.Drawing.Size(60, 16);
     this.toolTipController1.SetSuperTip(this.IPPLBL14, null);
     this.IPPLBL14.TabIndex = 131;
     this.IPPLBL14.Text = "Status :";
     //
     // IPPLBL12
     //
     this.IPPLBL12.AutoSize = true;
     this.IPPLBL12.BackColor = System.Drawing.Color.Transparent;
     this.IPPLBL12.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.IPPLBL12.Location = new System.Drawing.Point(424, 56);
     this.IPPLBL12.Name = "IPPLBL12";
     this.IPPLBL12.Size = new System.Drawing.Size(135, 16);
     this.toolTipController1.SetSuperTip(this.IPPLBL12, null);
     this.IPPLBL12.TabIndex = 130;
     this.IPPLBL12.Text = "Date Sent to Bank :";
     //
     // IPPLBL13
     //
     this.IPPLBL13.AutoSize = true;
     this.IPPLBL13.BackColor = System.Drawing.Color.Transparent;
     this.IPPLBL13.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.IPPLBL13.Location = new System.Drawing.Point(424, 80);
     this.IPPLBL13.Name = "IPPLBL13";
     this.IPPLBL13.Size = new System.Drawing.Size(151, 16);
     this.toolTipController1.SetSuperTip(this.IPPLBL13, null);
     this.IPPLBL13.TabIndex = 129;
     this.IPPLBL13.Text = "Date Received Reply :";
     //
     // IPPLBL11
     //
     this.IPPLBL11.AutoSize = true;
     this.IPPLBL11.BackColor = System.Drawing.Color.Transparent;
     this.IPPLBL11.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.IPPLBL11.Location = new System.Drawing.Point(424, 32);
     this.IPPLBL11.Name = "IPPLBL11";
     this.IPPLBL11.Size = new System.Drawing.Size(100, 16);
     this.toolTipController1.SetSuperTip(this.IPPLBL11, null);
     this.IPPLBL11.TabIndex = 128;
     this.IPPLBL11.Text = "Nett Amount :";
     //
     // IPPLBL10
     //
     this.IPPLBL10.AutoSize = true;
     this.IPPLBL10.BackColor = System.Drawing.Color.Transparent;
     this.IPPLBL10.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.IPPLBL10.Location = new System.Drawing.Point(32, 200);
     this.IPPLBL10.Name = "IPPLBL10";
     this.IPPLBL10.Size = new System.Drawing.Size(71, 16);
     this.toolTipController1.SetSuperTip(this.IPPLBL10, null);
     this.IPPLBL10.TabIndex = 127;
     this.IPPLBL10.Text = "Interest :";
     //
     // IPPLBL9
     //
     this.IPPLBL9.AutoSize = true;
     this.IPPLBL9.BackColor = System.Drawing.Color.Transparent;
     this.IPPLBL9.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.IPPLBL9.Location = new System.Drawing.Point(32, 176);
     this.IPPLBL9.Name = "IPPLBL9";
     this.IPPLBL9.Size = new System.Drawing.Size(68, 16);
     this.toolTipController1.SetSuperTip(this.IPPLBL9, null);
     this.IPPLBL9.TabIndex = 126;
     this.IPPLBL9.Text = "Amount :";
     this.IPPLBL9.TextAlign = System.Drawing.ContentAlignment.TopCenter;
     //
     // IPPLBL7
     //
     this.IPPLBL7.AutoSize = true;
     this.IPPLBL7.BackColor = System.Drawing.Color.Transparent;
     this.IPPLBL7.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.IPPLBL7.Location = new System.Drawing.Point(424, 176);
     this.IPPLBL7.Name = "IPPLBL7";
     this.IPPLBL7.Size = new System.Drawing.Size(139, 16);
     this.toolTipController1.SetSuperTip(this.IPPLBL7, null);
     this.IPPLBL7.TabIndex = 125;
     this.IPPLBL7.Text = "Number of Months  :";
     //
     // IPPAmount
     //
     this.IPPAmount.EditValue = "";
     this.IPPAmount.Enabled = false;
     this.IPPAmount.Location = new System.Drawing.Point(184, 176);
     this.IPPAmount.Name = "IPPAmount";
     this.IPPAmount.Properties.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.IPPAmount.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.IPPAmount.Properties.Appearance.ForeColor = System.Drawing.Color.Black;
     this.IPPAmount.Properties.Appearance.Options.UseBackColor = true;
     this.IPPAmount.Properties.Appearance.Options.UseFont = true;
     this.IPPAmount.Properties.Appearance.Options.UseForeColor = true;
     this.IPPAmount.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.IPPAmount.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.IPPAmount.Properties.ReadOnly = true;
     this.IPPAmount.Size = new System.Drawing.Size(166, 18);
     this.IPPAmount.TabIndex = 124;
     //
     // IPPInterest
     //
     this.IPPInterest.EditValue = "";
     this.IPPInterest.Enabled = false;
     this.IPPInterest.Location = new System.Drawing.Point(184, 200);
     this.IPPInterest.Name = "IPPInterest";
     this.IPPInterest.Properties.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.IPPInterest.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.IPPInterest.Properties.Appearance.ForeColor = System.Drawing.Color.Black;
     this.IPPInterest.Properties.Appearance.Options.UseBackColor = true;
     this.IPPInterest.Properties.Appearance.Options.UseFont = true;
     this.IPPInterest.Properties.Appearance.Options.UseForeColor = true;
     this.IPPInterest.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.IPPInterest.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.IPPInterest.Properties.ReadOnly = true;
     this.IPPInterest.Size = new System.Drawing.Size(166, 18);
     this.IPPInterest.TabIndex = 123;
     //
     // IPPNettAmount
     //
     this.IPPNettAmount.EditValue = "";
     this.IPPNettAmount.Enabled = false;
     this.IPPNettAmount.Location = new System.Drawing.Point(600, 32);
     this.IPPNettAmount.Name = "IPPNettAmount";
     this.IPPNettAmount.Properties.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.IPPNettAmount.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.IPPNettAmount.Properties.Appearance.ForeColor = System.Drawing.Color.Black;
     this.IPPNettAmount.Properties.Appearance.Options.UseBackColor = true;
     this.IPPNettAmount.Properties.Appearance.Options.UseFont = true;
     this.IPPNettAmount.Properties.Appearance.Options.UseForeColor = true;
     this.IPPNettAmount.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.IPPNettAmount.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.IPPNettAmount.Properties.ReadOnly = true;
     this.IPPNettAmount.Size = new System.Drawing.Size(166, 18);
     this.IPPNettAmount.TabIndex = 122;
     //
     // IPPLBL5
     //
     this.IPPLBL5.AutoSize = true;
     this.IPPLBL5.BackColor = System.Drawing.Color.Transparent;
     this.IPPLBL5.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.IPPLBL5.Location = new System.Drawing.Point(424, 128);
     this.IPPLBL5.Name = "IPPLBL5";
     this.IPPLBL5.Size = new System.Drawing.Size(84, 16);
     this.toolTipController1.SetSuperTip(this.IPPLBL5, null);
     this.IPPLBL5.TabIndex = 121;
     this.IPPLBL5.Text = "Bank Code :";
     //
     // IPPLBL6
     //
     this.IPPLBL6.AutoSize = true;
     this.IPPLBL6.BackColor = System.Drawing.Color.Transparent;
     this.IPPLBL6.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.IPPLBL6.Location = new System.Drawing.Point(424, 152);
     this.IPPLBL6.Name = "IPPLBL6";
     this.IPPLBL6.Size = new System.Drawing.Size(114, 16);
     this.toolTipController1.SetSuperTip(this.IPPLBL6, null);
     this.IPPLBL6.TabIndex = 120;
     this.IPPLBL6.Text = "Credit Card No. :";
     //
     // IPPLBL4
     //
     this.IPPLBL4.AutoSize = true;
     this.IPPLBL4.BackColor = System.Drawing.Color.Transparent;
     this.IPPLBL4.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.IPPLBL4.Location = new System.Drawing.Point(32, 104);
     this.IPPLBL4.Name = "IPPLBL4";
     this.IPPLBL4.Size = new System.Drawing.Size(108, 16);
     this.toolTipController1.SetSuperTip(this.IPPLBL4, null);
     this.IPPLBL4.TabIndex = 119;
     this.IPPLBL4.Text = "Member Name :";
     //
     // IPPLBL3
     //
     this.IPPLBL3.AutoSize = true;
     this.IPPLBL3.BackColor = System.Drawing.Color.Transparent;
     this.IPPLBL3.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.IPPLBL3.Location = new System.Drawing.Point(32, 80);
     this.IPPLBL3.Name = "IPPLBL3";
     this.IPPLBL3.Size = new System.Drawing.Size(86, 16);
     this.toolTipController1.SetSuperTip(this.IPPLBL3, null);
     this.IPPLBL3.TabIndex = 118;
     this.IPPLBL3.Text = "Member Id :";
     //
     // IPPLBL2
     //
     this.IPPLBL2.AutoSize = true;
     this.IPPLBL2.BackColor = System.Drawing.Color.Transparent;
     this.IPPLBL2.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.IPPLBL2.Location = new System.Drawing.Point(32, 56);
     this.IPPLBL2.Name = "IPPLBL2";
     this.IPPLBL2.Size = new System.Drawing.Size(104, 16);
     this.toolTipController1.SetSuperTip(this.IPPLBL2, null);
     this.IPPLBL2.TabIndex = 117;
     this.IPPLBL2.Text = "Date Created :";
     this.IPPLBL2.TextAlign = System.Drawing.ContentAlignment.TopCenter;
     //
     // IPPMemberId
     //
     this.IPPMemberId.EditValue = "";
     this.IPPMemberId.Enabled = false;
     this.IPPMemberId.Location = new System.Drawing.Point(184, 80);
     this.IPPMemberId.Name = "IPPMemberId";
     this.IPPMemberId.Properties.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.IPPMemberId.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.IPPMemberId.Properties.Appearance.ForeColor = System.Drawing.Color.Black;
     this.IPPMemberId.Properties.Appearance.Options.UseBackColor = true;
     this.IPPMemberId.Properties.Appearance.Options.UseFont = true;
     this.IPPMemberId.Properties.Appearance.Options.UseForeColor = true;
     this.IPPMemberId.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.IPPMemberId.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.IPPMemberId.Properties.ReadOnly = true;
     this.IPPMemberId.Size = new System.Drawing.Size(168, 18);
     this.IPPMemberId.TabIndex = 115;
     //
     // IPPMemberName
     //
     this.IPPMemberName.EditValue = "";
     this.IPPMemberName.Enabled = false;
     this.IPPMemberName.Location = new System.Drawing.Point(184, 104);
     this.IPPMemberName.Name = "IPPMemberName";
     this.IPPMemberName.Properties.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.IPPMemberName.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.IPPMemberName.Properties.Appearance.ForeColor = System.Drawing.Color.Black;
     this.IPPMemberName.Properties.Appearance.Options.UseBackColor = true;
     this.IPPMemberName.Properties.Appearance.Options.UseFont = true;
     this.IPPMemberName.Properties.Appearance.Options.UseForeColor = true;
     this.IPPMemberName.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.IPPMemberName.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.IPPMemberName.Properties.ReadOnly = true;
     this.IPPMemberName.Size = new System.Drawing.Size(168, 18);
     this.IPPMemberName.TabIndex = 114;
     //
     // IPPId
     //
     this.IPPId.EditValue = "";
     this.IPPId.Enabled = false;
     this.IPPId.Location = new System.Drawing.Point(184, 32);
     this.IPPId.Name = "IPPId";
     this.IPPId.Properties.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.IPPId.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.IPPId.Properties.Appearance.ForeColor = System.Drawing.Color.Black;
     this.IPPId.Properties.Appearance.Options.UseBackColor = true;
     this.IPPId.Properties.Appearance.Options.UseFont = true;
     this.IPPId.Properties.Appearance.Options.UseForeColor = true;
     this.IPPId.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.IPPId.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.IPPId.Properties.ReadOnly = true;
     this.IPPId.Size = new System.Drawing.Size(168, 18);
     this.IPPId.TabIndex = 113;
     //
     // groupIPPReceipt
     //
     this.groupIPPReceipt.Appearance.BackColor = System.Drawing.SystemColors.Control;
     this.groupIPPReceipt.Appearance.Options.UseBackColor = true;
     this.groupIPPReceipt.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowOnly;
     this.groupIPPReceipt.Controls.Add(this.btnReceiptUnlink);
     this.groupIPPReceipt.Controls.Add(this.btnReceiptLink);
     this.groupIPPReceipt.Controls.Add(this.gridReceipt);
     this.groupIPPReceipt.Controls.Add(this.label10);
     this.groupIPPReceipt.Controls.Add(this.IPPReceiptStatus);
     this.groupIPPReceipt.ImeMode = System.Windows.Forms.ImeMode.On;
     this.groupIPPReceipt.Location = new System.Drawing.Point(8, 320);
     this.groupIPPReceipt.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.groupIPPReceipt.LookAndFeel.UseDefaultLookAndFeel = false;
     this.groupIPPReceipt.Name = "groupIPPReceipt";
     this.groupIPPReceipt.Size = new System.Drawing.Size(992, 240);
     this.toolTipController1.SetSuperTip(this.groupIPPReceipt, null);
     this.groupIPPReceipt.TabIndex = 17;
     this.groupIPPReceipt.Text = "Receipt Entry";
     //
     // btnReceiptUnlink
     //
     this.btnReceiptUnlink.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.btnReceiptUnlink.Appearance.Options.UseFont = true;
     this.btnReceiptUnlink.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnReceiptUnlink.Location = new System.Drawing.Point(272, 24);
     this.btnReceiptUnlink.Name = "btnReceiptUnlink";
     this.btnReceiptUnlink.Size = new System.Drawing.Size(67, 20);
     this.btnReceiptUnlink.TabIndex = 128;
     this.btnReceiptUnlink.Text = "Unlink";
     this.btnReceiptUnlink.Click += new System.EventHandler(this.btnReceiptUnlink_Click);
     //
     // btnReceiptLink
     //
     this.btnReceiptLink.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.btnReceiptLink.Appearance.Options.UseFont = true;
     this.btnReceiptLink.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnReceiptLink.Enabled = false;
     this.btnReceiptLink.Location = new System.Drawing.Point(200, 24);
     this.btnReceiptLink.Name = "btnReceiptLink";
     this.btnReceiptLink.Size = new System.Drawing.Size(67, 20);
     this.btnReceiptLink.TabIndex = 127;
     this.btnReceiptLink.Text = "Link";
     this.btnReceiptLink.Click += new System.EventHandler(this.btnReceiptLink_Click);
     //
     // gridReceipt
     //
     this.gridReceipt.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.gridReceipt.EmbeddedNavigator.Name = "";
     gridLevelNode2.RelationName = "Level1";
     this.gridReceipt.LevelTree.Nodes.AddRange(new DevExpress.XtraGrid.GridLevelNode[] {
     gridLevelNode2});
     this.gridReceipt.Location = new System.Drawing.Point(2, 54);
     this.gridReceipt.LookAndFeel.UseDefaultLookAndFeel = false;
     this.gridReceipt.MainView = this.IPPReceiptView;
     this.gridReceipt.Name = "gridReceipt";
     this.gridReceipt.Size = new System.Drawing.Size(988, 184);
     this.gridReceipt.TabIndex = 126;
     this.gridReceipt.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.IPPReceiptView});
     //
     // IPPReceiptView
     //
     this.IPPReceiptView.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumnIPPR,
     this.gridColumnIPPR1,
     this.gridColumnIPPR2,
     this.gridColumnIPPR3,
     this.gridColumnIPPR4,
     this.gridColumnIPPR5,
     this.gridColumnIPPR6,
     this.gridColumnIPPR7,
     this.gridColumnIPPR8,
     this.gridColumnIPPR9});
     this.IPPReceiptView.GridControl = this.gridReceipt;
     this.IPPReceiptView.Name = "IPPReceiptView";
     this.IPPReceiptView.OptionsBehavior.Editable = false;
     this.IPPReceiptView.OptionsCustomization.AllowFilter = false;
     this.IPPReceiptView.OptionsCustomization.AllowSort = false;
     this.IPPReceiptView.OptionsView.ShowFilterPanelMode = DevExpress.XtraGrid.Views.Base.ShowFilterPanelMode.Never;
     this.IPPReceiptView.OptionsView.ShowGroupPanel = false;
     //
     // gridColumnIPPR
     //
     this.gridColumnIPPR.Caption = "IPP ID";
     this.gridColumnIPPR.FieldName = "nIPPID";
     this.gridColumnIPPR.Name = "gridColumnIPPR";
     //
     // gridColumnIPPR1
     //
     this.gridColumnIPPR1.Caption = "Date";
     this.gridColumnIPPR1.FieldName = "dtDate";
     this.gridColumnIPPR1.Name = "gridColumnIPPR1";
     this.gridColumnIPPR1.Visible = true;
     this.gridColumnIPPR1.VisibleIndex = 0;
     this.gridColumnIPPR1.Width = 109;
     //
     // gridColumnIPPR2
     //
     this.gridColumnIPPR2.Caption = "Receipt No";
     this.gridColumnIPPR2.FieldName = "strReceiptNo";
     this.gridColumnIPPR2.Name = "gridColumnIPPR2";
     this.gridColumnIPPR2.Visible = true;
     this.gridColumnIPPR2.VisibleIndex = 1;
     this.gridColumnIPPR2.Width = 109;
     //
     // gridColumnIPPR3
     //
     this.gridColumnIPPR3.Caption = "Category";
     this.gridColumnIPPR3.FieldName = "Category";
     this.gridColumnIPPR3.Name = "gridColumnIPPR3";
     this.gridColumnIPPR3.Visible = true;
     this.gridColumnIPPR3.VisibleIndex = 2;
     this.gridColumnIPPR3.Width = 109;
     //
     // gridColumnIPPR4
     //
     this.gridColumnIPPR4.Caption = "Nett";
     this.gridColumnIPPR4.FieldName = "mNettAmount";
     this.gridColumnIPPR4.Name = "gridColumnIPPR4";
     this.gridColumnIPPR4.Visible = true;
     this.gridColumnIPPR4.VisibleIndex = 3;
     this.gridColumnIPPR4.Width = 109;
     //
     // gridColumnIPPR5
     //
     this.gridColumnIPPR5.Caption = "GST";
     this.gridColumnIPPR5.FieldName = "mGSTAmount";
     this.gridColumnIPPR5.Name = "gridColumnIPPR5";
     this.gridColumnIPPR5.Visible = true;
     this.gridColumnIPPR5.VisibleIndex = 4;
     this.gridColumnIPPR5.Width = 64;
     //
     // gridColumnIPPR6
     //
     this.gridColumnIPPR6.Caption = "Total";
     this.gridColumnIPPR6.FieldName = "mTotalAmount";
     this.gridColumnIPPR6.Name = "gridColumnIPPR6";
     this.gridColumnIPPR6.Visible = true;
     this.gridColumnIPPR6.VisibleIndex = 5;
     this.gridColumnIPPR6.Width = 123;
     //
     // gridColumnIPPR7
     //
     this.gridColumnIPPR7.Caption = "O/S Amount";
     this.gridColumnIPPR7.FieldName = "mGSTAmount";
     this.gridColumnIPPR7.Name = "gridColumnIPPR7";
     this.gridColumnIPPR7.Visible = true;
     this.gridColumnIPPR7.VisibleIndex = 6;
     this.gridColumnIPPR7.Width = 85;
     //
     // gridColumnIPPR8
     //
     this.gridColumnIPPR8.Caption = "Member";
     this.gridColumnIPPR8.FieldName = "SalesPerson";
     this.gridColumnIPPR8.Name = "gridColumnIPPR8";
     this.gridColumnIPPR8.Visible = true;
     this.gridColumnIPPR8.VisibleIndex = 7;
     this.gridColumnIPPR8.Width = 167;
     //
     // gridColumnIPPR9
     //
     this.gridColumnIPPR9.Caption = "Payment ID";
     this.gridColumnIPPR9.FieldName = "nPaymentID";
     this.gridColumnIPPR9.Name = "gridColumnIPPR9";
     this.gridColumnIPPR9.Visible = true;
     this.gridColumnIPPR9.VisibleIndex = 8;
     //
     // label10
     //
     this.label10.BackColor = System.Drawing.Color.Transparent;
     this.label10.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label10.Location = new System.Drawing.Point(16, 24);
     this.label10.Name = "label10";
     this.label10.Size = new System.Drawing.Size(56, 16);
     this.toolTipController1.SetSuperTip(this.label10, null);
     this.label10.TabIndex = 125;
     this.label10.Text = "Status";
     this.label10.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // IPPReceiptStatus
     //
     this.IPPReceiptStatus.EditValue = 0;
     this.IPPReceiptStatus.Location = new System.Drawing.Point(80, 24);
     this.IPPReceiptStatus.Name = "IPPReceiptStatus";
     this.IPPReceiptStatus.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.IPPReceiptStatus.Properties.Items.AddRange(new DevExpress.XtraEditors.Controls.ImageComboBoxItem[] {
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Linked", 0, -1),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Unlink", 1, -1)});
     this.IPPReceiptStatus.Size = new System.Drawing.Size(100, 20);
     this.IPPReceiptStatus.TabIndex = 24;
     this.IPPReceiptStatus.SelectedIndexChanged += new System.EventHandler(this.IPPReceiptStatus_SelectedIndexChanged);
     //
     // groupGIROMaster
     //
     this.groupGIROMaster.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowOnly;
     this.groupGIROMaster.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.groupGIROMaster.Controls.Add(this.xtraTabControl1);
     this.groupGIROMaster.Controls.Add(this.GroupGiro);
     this.groupGIROMaster.ImeMode = System.Windows.Forms.ImeMode.On;
     this.groupGIROMaster.Location = new System.Drawing.Point(0, 32);
     this.groupGIROMaster.Name = "groupGIROMaster";
     this.groupGIROMaster.Size = new System.Drawing.Size(1007, 608);
     this.toolTipController1.SetSuperTip(this.groupGIROMaster, null);
     this.groupGIROMaster.TabIndex = 24;
     //
     // xtraTabControl1
     //
     this.xtraTabControl1.AppearancePage.Header.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xtraTabControl1.AppearancePage.Header.Options.UseFont = true;
     this.xtraTabControl1.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.xtraTabControl1.Location = new System.Drawing.Point(0, 344);
     this.xtraTabControl1.LookAndFeel.UseDefaultLookAndFeel = false;
     this.xtraTabControl1.Name = "xtraTabControl1";
     this.xtraTabControl1.SelectedTabPage = this.tabGiroDetails;
     this.xtraTabControl1.Size = new System.Drawing.Size(1007, 264);
     this.xtraTabControl1.TabIndex = 36;
     this.xtraTabControl1.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
     this.tabGiroDetails,
     this.tabGiroTrnsHistory});
     this.xtraTabControl1.Text = "xtraTabControl1";
     //
     // tabGiroDetails
     //
     this.tabGiroDetails.Controls.Add(this.luedtBankBranch);
     this.tabGiroDetails.Controls.Add(this.luedtBank);
     this.tabGiroDetails.Controls.Add(this.luedtPackage);
     this.tabGiroDetails.Controls.Add(this.luedtBranch);
     this.tabGiroDetails.Controls.Add(this.label70);
     this.tabGiroDetails.Controls.Add(this.txtPackageDesc);
     this.tabGiroDetails.Controls.Add(this.txtAccountNo);
     this.tabGiroDetails.Controls.Add(this.txtGIROId);
     this.tabGiroDetails.Controls.Add(this.txtRemark);
     this.tabGiroDetails.Controls.Add(this.lblGiro_BankBranch);
     this.tabGiroDetails.Controls.Add(this.lblGiro_BankACNumber);
     this.tabGiroDetails.Controls.Add(this.lblGiro_BankCode);
     this.tabGiroDetails.Controls.Add(this.lblGiro_Remark);
     this.tabGiroDetails.Controls.Add(this.lblGiro_Package);
     this.tabGiroDetails.Controls.Add(this.lblGiro_Branch);
     this.tabGiroDetails.Controls.Add(this.lblGiro_MemberID);
     this.tabGiroDetails.Controls.Add(this.lblGiroID);
     this.tabGiroDetails.Name = "tabGiroDetails";
     this.tabGiroDetails.Size = new System.Drawing.Size(998, 230);
     this.tabGiroDetails.Text = "Giro Details";
     //
     // luedtBankBranch
     //
     this.luedtBankBranch.Location = new System.Drawing.Point(520, 40);
     this.luedtBankBranch.Name = "luedtBankBranch";
     this.luedtBankBranch.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.luedtBankBranch.Size = new System.Drawing.Size(184, 20);
     this.luedtBankBranch.TabIndex = 142;
     //
     // luedtBank
     //
     this.luedtBank.Location = new System.Drawing.Point(520, 16);
     this.luedtBank.Name = "luedtBank";
     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(184, 20);
     this.luedtBank.TabIndex = 141;
     //
     // luedtPackage
     //
     this.luedtPackage.Location = new System.Drawing.Point(176, 88);
     this.luedtPackage.Name = "luedtPackage";
     this.luedtPackage.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.luedtPackage.Size = new System.Drawing.Size(184, 20);
     this.luedtPackage.TabIndex = 140;
     //
     // luedtBranch
     //
     this.luedtBranch.Location = new System.Drawing.Point(176, 64);
     this.luedtBranch.Name = "luedtBranch";
     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(184, 20);
     this.luedtBranch.TabIndex = 139;
     //
     // label70
     //
     this.label70.BackColor = System.Drawing.Color.Transparent;
     this.label70.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label70.Location = new System.Drawing.Point(32, 112);
     this.label70.Name = "label70";
     this.label70.Size = new System.Drawing.Size(144, 16);
     this.toolTipController1.SetSuperTip(this.label70, null);
     this.label70.TabIndex = 119;
     this.label70.Text = "Package Description";
     this.label70.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // txtPackageDesc
     //
     this.txtPackageDesc.EditValue = "";
     this.txtPackageDesc.ImeMode = System.Windows.Forms.ImeMode.On;
     this.txtPackageDesc.Location = new System.Drawing.Point(176, 112);
     this.txtPackageDesc.Name = "txtPackageDesc";
     this.txtPackageDesc.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtPackageDesc.Properties.Appearance.Options.UseFont = true;
     this.txtPackageDesc.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.txtPackageDesc.Size = new System.Drawing.Size(184, 20);
     this.txtPackageDesc.TabIndex = 117;
     //
     // txtAccountNo
     //
     this.txtAccountNo.EditValue = "";
     this.txtAccountNo.ImeMode = System.Windows.Forms.ImeMode.On;
     this.txtAccountNo.Location = new System.Drawing.Point(520, 64);
     this.txtAccountNo.Name = "txtAccountNo";
     this.txtAccountNo.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtAccountNo.Properties.Appearance.Options.UseFont = true;
     this.txtAccountNo.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.txtAccountNo.Size = new System.Drawing.Size(184, 20);
     this.txtAccountNo.TabIndex = 116;
     //
     // txtGIROId
     //
     this.txtGIROId.EditValue = "";
     this.txtGIROId.ImeMode = System.Windows.Forms.ImeMode.On;
     this.txtGIROId.Location = new System.Drawing.Point(176, 16);
     this.txtGIROId.Name = "txtGIROId";
     this.txtGIROId.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtGIROId.Properties.Appearance.Options.UseFont = true;
     this.txtGIROId.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.txtGIROId.Size = new System.Drawing.Size(184, 20);
     this.txtGIROId.TabIndex = 111;
     //
     // txtRemark
     //
     this.txtRemark.EditValue = "";
     this.txtRemark.Location = new System.Drawing.Point(176, 136);
     this.txtRemark.Name = "txtRemark";
     this.txtRemark.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtRemark.Properties.Appearance.Options.UseFont = true;
     this.txtRemark.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.txtRemark.Size = new System.Drawing.Size(528, 56);
     this.txtRemark.TabIndex = 110;
     //
     // lblGiro_BankBranch
     //
     this.lblGiro_BankBranch.BackColor = System.Drawing.Color.Transparent;
     this.lblGiro_BankBranch.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblGiro_BankBranch.Location = new System.Drawing.Point(392, 40);
     this.lblGiro_BankBranch.Name = "lblGiro_BankBranch";
     this.lblGiro_BankBranch.Size = new System.Drawing.Size(128, 16);
     this.toolTipController1.SetSuperTip(this.lblGiro_BankBranch, null);
     this.lblGiro_BankBranch.TabIndex = 101;
     this.lblGiro_BankBranch.Text = "Bank Branch";
     this.lblGiro_BankBranch.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // lblGiro_BankACNumber
     //
     this.lblGiro_BankACNumber.BackColor = System.Drawing.Color.Transparent;
     this.lblGiro_BankACNumber.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblGiro_BankACNumber.Location = new System.Drawing.Point(392, 64);
     this.lblGiro_BankACNumber.Name = "lblGiro_BankACNumber";
     this.lblGiro_BankACNumber.Size = new System.Drawing.Size(128, 16);
     this.toolTipController1.SetSuperTip(this.lblGiro_BankACNumber, null);
     this.lblGiro_BankACNumber.TabIndex = 100;
     this.lblGiro_BankACNumber.Text = "Account Number";
     this.lblGiro_BankACNumber.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // lblGiro_BankCode
     //
     this.lblGiro_BankCode.BackColor = System.Drawing.Color.Transparent;
     this.lblGiro_BankCode.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblGiro_BankCode.Location = new System.Drawing.Point(392, 16);
     this.lblGiro_BankCode.Name = "lblGiro_BankCode";
     this.lblGiro_BankCode.Size = new System.Drawing.Size(128, 16);
     this.toolTipController1.SetSuperTip(this.lblGiro_BankCode, null);
     this.lblGiro_BankCode.TabIndex = 99;
     this.lblGiro_BankCode.Text = "Bank Code/Name";
     this.lblGiro_BankCode.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // lblGiro_Remark
     //
     this.lblGiro_Remark.BackColor = System.Drawing.Color.Transparent;
     this.lblGiro_Remark.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblGiro_Remark.Location = new System.Drawing.Point(32, 144);
     this.lblGiro_Remark.Name = "lblGiro_Remark";
     this.lblGiro_Remark.Size = new System.Drawing.Size(128, 16);
     this.toolTipController1.SetSuperTip(this.lblGiro_Remark, null);
     this.lblGiro_Remark.TabIndex = 98;
     this.lblGiro_Remark.Text = "Remark";
     this.lblGiro_Remark.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // lblGiro_Package
     //
     this.lblGiro_Package.BackColor = System.Drawing.Color.Transparent;
     this.lblGiro_Package.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblGiro_Package.Location = new System.Drawing.Point(32, 88);
     this.lblGiro_Package.Name = "lblGiro_Package";
     this.lblGiro_Package.Size = new System.Drawing.Size(144, 16);
     this.toolTipController1.SetSuperTip(this.lblGiro_Package, null);
     this.lblGiro_Package.TabIndex = 97;
     this.lblGiro_Package.Text = "Package";
     this.lblGiro_Package.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // lblGiro_Branch
     //
     this.lblGiro_Branch.BackColor = System.Drawing.Color.Transparent;
     this.lblGiro_Branch.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblGiro_Branch.Location = new System.Drawing.Point(32, 64);
     this.lblGiro_Branch.Name = "lblGiro_Branch";
     this.lblGiro_Branch.Size = new System.Drawing.Size(144, 16);
     this.toolTipController1.SetSuperTip(this.lblGiro_Branch, null);
     this.lblGiro_Branch.TabIndex = 96;
     this.lblGiro_Branch.Text = "Branch";
     this.lblGiro_Branch.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // lblGiro_MemberID
     //
     this.lblGiro_MemberID.BackColor = System.Drawing.Color.Transparent;
     this.lblGiro_MemberID.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblGiro_MemberID.Location = new System.Drawing.Point(32, 40);
     this.lblGiro_MemberID.Name = "lblGiro_MemberID";
     this.lblGiro_MemberID.Size = new System.Drawing.Size(144, 16);
     this.toolTipController1.SetSuperTip(this.lblGiro_MemberID, null);
     this.lblGiro_MemberID.TabIndex = 95;
     this.lblGiro_MemberID.Text = "Member ID /Name";
     this.lblGiro_MemberID.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // lblGiroID
     //
     this.lblGiroID.BackColor = System.Drawing.Color.Transparent;
     this.lblGiroID.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblGiroID.Location = new System.Drawing.Point(32, 16);
     this.lblGiroID.Name = "lblGiroID";
     this.lblGiroID.Size = new System.Drawing.Size(144, 16);
     this.toolTipController1.SetSuperTip(this.lblGiroID, null);
     this.lblGiroID.TabIndex = 93;
     this.lblGiroID.Text = "Giro ID";
     this.lblGiroID.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // tabGiroTrnsHistory
     //
     this.tabGiroTrnsHistory.Controls.Add(this.GridTransaction);
     this.tabGiroTrnsHistory.Name = "tabGiroTrnsHistory";
     this.tabGiroTrnsHistory.Size = new System.Drawing.Size(998, 230);
     this.tabGiroTrnsHistory.Text = "Transaction History";
     //
     // GridTransaction
     //
     this.GridTransaction.Dock = System.Windows.Forms.DockStyle.Fill;
     this.GridTransaction.EmbeddedNavigator.Name = "";
     this.GridTransaction.Location = new System.Drawing.Point(0, 0);
     this.GridTransaction.LookAndFeel.UseDefaultLookAndFeel = false;
     this.GridTransaction.MainView = this.gridView4;
     this.GridTransaction.Name = "GridTransaction";
     this.GridTransaction.Size = new System.Drawing.Size(998, 230);
     this.GridTransaction.TabIndex = 0;
     this.GridTransaction.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridView4});
     //
     // gridView4
     //
     this.gridView4.GridControl = this.GridTransaction;
     this.gridView4.Name = "gridView4";
     this.gridView4.OptionsBehavior.Editable = false;
     this.gridView4.OptionsCustomization.AllowFilter = false;
     this.gridView4.OptionsCustomization.AllowSort = false;
     //
     // GroupGiro
     //
     this.GroupGiro.Appearance.BackColor = System.Drawing.SystemColors.Control;
     this.GroupGiro.Appearance.Options.UseBackColor = true;
     this.GroupGiro.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowOnly;
     this.GroupGiro.Controls.Add(this.comboBoxGiroStatus);
     this.GroupGiro.Controls.Add(this.label63);
     this.GroupGiro.Controls.Add(this.btnImport);
     this.GroupGiro.Controls.Add(this.btnGiroExport);
     this.GroupGiro.Controls.Add(this.btnGiroUpdate);
     this.GroupGiro.Controls.Add(this.btnGiroDelete);
     this.GroupGiro.Controls.Add(this.btnGiroNew);
     this.GroupGiro.Controls.Add(this.GiroGrid);
     this.GroupGiro.ImeMode = System.Windows.Forms.ImeMode.On;
     this.GroupGiro.Location = new System.Drawing.Point(4, 0);
     this.GroupGiro.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.GroupGiro.LookAndFeel.UseDefaultLookAndFeel = false;
     this.GroupGiro.Name = "GroupGiro";
     this.GroupGiro.Size = new System.Drawing.Size(996, 336);
     this.toolTipController1.SetSuperTip(this.GroupGiro, null);
     this.GroupGiro.TabIndex = 19;
     this.GroupGiro.Text = "GIRO";
     //
     // comboBoxGiroStatus
     //
     this.comboBoxGiroStatus.EditValue = 1;
     this.comboBoxGiroStatus.Location = new System.Drawing.Point(8, 40);
     this.comboBoxGiroStatus.Name = "comboBoxGiroStatus";
     this.comboBoxGiroStatus.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.comboBoxGiroStatus.Properties.Items.AddRange(new DevExpress.XtraEditors.Controls.ImageComboBoxItem[] {
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Pending Approval", 1, -1),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Active", 2, -1),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Rejected", 3, -1),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Deleted", 4, -1)});
     this.comboBoxGiroStatus.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.comboBoxGiroStatus.Size = new System.Drawing.Size(128, 20);
     this.comboBoxGiroStatus.TabIndex = 35;
     this.comboBoxGiroStatus.SelectedIndexChanged += new System.EventHandler(this.comboBoxGiroStatus_SelectedIndexChanged);
     //
     // 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(8, 24);
     this.label63.Name = "label63";
     this.label63.Size = new System.Drawing.Size(100, 16);
     this.toolTipController1.SetSuperTip(this.label63, null);
     this.label63.TabIndex = 34;
     this.label63.Text = "Filter by Status";
     //
     // btnImport
     //
     this.btnImport.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.btnImport.Appearance.Options.UseFont = true;
     this.btnImport.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnImport.Location = new System.Drawing.Point(264, 48);
     this.btnImport.Name = "btnImport";
     this.btnImport.Size = new System.Drawing.Size(72, 18);
     this.btnImport.TabIndex = 12;
     this.btnImport.Text = "Import";
     this.btnImport.Click += new System.EventHandler(this.btnImport_Click);
     //
     // btnGiroExport
     //
     this.btnGiroExport.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.btnGiroExport.Appearance.Options.UseFont = true;
     this.btnGiroExport.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnGiroExport.Location = new System.Drawing.Point(192, 48);
     this.btnGiroExport.Name = "btnGiroExport";
     this.btnGiroExport.Size = new System.Drawing.Size(64, 18);
     this.btnGiroExport.TabIndex = 11;
     this.btnGiroExport.Text = "Export";
     this.btnGiroExport.Click += new System.EventHandler(this.btnGiroExport_Click);
     //
     // btnGiroUpdate
     //
     this.btnGiroUpdate.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.btnGiroUpdate.Appearance.Options.UseFont = true;
     this.btnGiroUpdate.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnGiroUpdate.Location = new System.Drawing.Point(344, 24);
     this.btnGiroUpdate.Name = "btnGiroUpdate";
     this.btnGiroUpdate.Size = new System.Drawing.Size(64, 18);
     this.btnGiroUpdate.TabIndex = 10;
     this.btnGiroUpdate.Text = "Update";
     this.btnGiroUpdate.Click += new System.EventHandler(this.btnGiroUpdate_Click);
     //
     // btnGiroDelete
     //
     this.btnGiroDelete.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.btnGiroDelete.Appearance.Options.UseFont = true;
     this.btnGiroDelete.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnGiroDelete.Location = new System.Drawing.Point(264, 24);
     this.btnGiroDelete.Name = "btnGiroDelete";
     this.btnGiroDelete.Size = new System.Drawing.Size(72, 18);
     this.btnGiroDelete.TabIndex = 5;
     this.btnGiroDelete.Text = "Delete";
     this.btnGiroDelete.Click += new System.EventHandler(this.btnGiroDelete_Click);
     //
     // btnGiroNew
     //
     this.btnGiroNew.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.btnGiroNew.Appearance.Options.UseFont = true;
     this.btnGiroNew.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnGiroNew.Location = new System.Drawing.Point(192, 24);
     this.btnGiroNew.Name = "btnGiroNew";
     this.btnGiroNew.Size = new System.Drawing.Size(64, 18);
     this.btnGiroNew.TabIndex = 2;
     this.btnGiroNew.Text = "New";
     this.btnGiroNew.Click += new System.EventHandler(this.btnGiroNew_Click);
     //
     // GiroGrid
     //
     this.GiroGrid.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.GiroGrid.EmbeddedNavigator.Name = "";
     gridLevelNode3.RelationName = "Level1";
     this.GiroGrid.LevelTree.Nodes.AddRange(new DevExpress.XtraGrid.GridLevelNode[] {
     gridLevelNode3});
     this.GiroGrid.Location = new System.Drawing.Point(2, 78);
     this.GiroGrid.LookAndFeel.UseDefaultLookAndFeel = false;
     this.GiroGrid.MainView = this.GIROGridView;
     this.GiroGrid.Name = "GiroGrid";
     this.GiroGrid.Size = new System.Drawing.Size(992, 256);
     this.GiroGrid.TabIndex = 0;
     this.GiroGrid.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.GIROGridView});
     //
     // GIROGridView
     //
     this.GIROGridView.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn1,
     this.gridColumn2,
     this.gridColumn3,
     this.gridColumn4,
     this.gridColumn5,
     this.gridColumn6,
     this.gridColumn7});
     this.GIROGridView.GridControl = this.GiroGrid;
     this.GIROGridView.Name = "GIROGridView";
     this.GIROGridView.OptionsBehavior.Editable = false;
     this.GIROGridView.OptionsCustomization.AllowFilter = false;
     this.GIROGridView.OptionsSelection.MultiSelect = true;
     this.GIROGridView.OptionsView.ShowGroupPanel = false;
     //
     // gridColumn1
     //
     this.gridColumn1.Caption = "Giro Id";
     this.gridColumn1.FieldName = "nGIRORefID";
     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 = "Member ID";
     this.gridColumn3.FieldName = "strMembershipID";
     this.gridColumn3.Name = "gridColumn3";
     this.gridColumn3.Visible = true;
     this.gridColumn3.VisibleIndex = 2;
     //
     // gridColumn4
     //
     this.gridColumn4.Caption = "Member Name";
     this.gridColumn4.FieldName = "strMemberName";
     this.gridColumn4.Name = "gridColumn4";
     this.gridColumn4.Visible = true;
     this.gridColumn4.VisibleIndex = 3;
     //
     // gridColumn5
     //
     this.gridColumn5.Caption = "Branch";
     this.gridColumn5.FieldName = "strBranchCode";
     this.gridColumn5.Name = "gridColumn5";
     this.gridColumn5.Visible = true;
     this.gridColumn5.VisibleIndex = 4;
     //
     // gridColumn6
     //
     this.gridColumn6.Caption = "Package Code";
     this.gridColumn6.FieldName = "strPackageCode";
     this.gridColumn6.Name = "gridColumn6";
     this.gridColumn6.Visible = true;
     this.gridColumn6.VisibleIndex = 5;
     //
     // gridColumn7
     //
     this.gridColumn7.Caption = "Package Description";
     this.gridColumn7.FieldName = "strDescription";
     this.gridColumn7.Name = "gridColumn7";
     this.gridColumn7.Visible = true;
     this.gridColumn7.VisibleIndex = 6;
     //
     // tabManagerTwo
     //
     this.tabManagerTwo.Controls.Add(this.GrpPayroll);
     this.tabManagerTwo.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tabManagerTwo.Name = "tabManagerTwo";
     this.tabManagerTwo.PageVisible = false;
     this.tabManagerTwo.Size = new System.Drawing.Size(1007, 637);
     this.tabManagerTwo.Text = "Payroll";
     //
     // GrpPayroll
     //
     this.GrpPayroll.Appearance.BackColor = System.Drawing.SystemColors.Control;
     this.GrpPayroll.Appearance.Options.UseBackColor = true;
     this.GrpPayroll.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowOnly;
     this.GrpPayroll.Controls.Add(this.progressBarControl1);
     this.GrpPayroll.Controls.Add(this.cbJob);
     this.GrpPayroll.Controls.Add(this.label8);
     this.GrpPayroll.Controls.Add(this.grpGridExcel);
     this.GrpPayroll.Controls.Add(this.btnPayrollExport);
     this.GrpPayroll.Controls.Add(this.btnPayrollGenerate);
     this.GrpPayroll.Controls.Add(this.btnPayrollDelete);
     this.GrpPayroll.Controls.Add(this.comboBoxEditMTH);
     this.GrpPayroll.Controls.Add(this.comboBoxEditYR);
     this.GrpPayroll.Controls.Add(this.lblYear);
     this.GrpPayroll.Controls.Add(this.lblMonth);
     this.GrpPayroll.Controls.Add(this.cmbxPayroll);
     this.GrpPayroll.Controls.Add(this.gridPayroll);
     this.GrpPayroll.Location = new System.Drawing.Point(0, 0);
     this.GrpPayroll.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.GrpPayroll.LookAndFeel.UseDefaultLookAndFeel = false;
     this.GrpPayroll.Name = "GrpPayroll";
     this.GrpPayroll.Size = new System.Drawing.Size(994, 616);
     this.toolTipController1.SetSuperTip(this.GrpPayroll, null);
     this.GrpPayroll.TabIndex = 0;
     this.GrpPayroll.Text = "PAYROLL";
     //
     // progressBarControl1
     //
     this.progressBarControl1.Location = new System.Drawing.Point(784, 24);
     this.progressBarControl1.Name = "progressBarControl1";
     this.progressBarControl1.Properties.ShowTitle = true;
     this.progressBarControl1.Size = new System.Drawing.Size(200, 16);
     this.progressBarControl1.TabIndex = 17;
     this.progressBarControl1.Visible = false;
     //
     // cbJob
     //
     this.cbJob.Location = new System.Drawing.Point(432, 24);
     this.cbJob.Name = "cbJob";
     this.cbJob.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Style3D;
     this.cbJob.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cbJob.Size = new System.Drawing.Size(128, 22);
     this.cbJob.TabIndex = 16;
     this.cbJob.SelectedIndexChanged += new System.EventHandler(this.cbJob_SelectedIndexChanged);
     //
     // label8
     //
     this.label8.BackColor = System.Drawing.Color.Transparent;
     this.label8.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label8.ForeColor = System.Drawing.Color.Black;
     this.label8.Location = new System.Drawing.Point(344, 24);
     this.label8.Name = "label8";
     this.label8.Size = new System.Drawing.Size(72, 16);
     this.toolTipController1.SetSuperTip(this.label8, null);
     this.label8.TabIndex = 15;
     this.label8.Text = "Job Position";
     //
     // grpGridExcel
     //
     this.grpGridExcel.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowOnly;
     this.grpGridExcel.Controls.Add(this.gridExcel);
     this.grpGridExcel.Location = new System.Drawing.Point(72, 144);
     this.grpGridExcel.Name = "grpGridExcel";
     this.grpGridExcel.Size = new System.Drawing.Size(544, 176);
     this.toolTipController1.SetSuperTip(this.grpGridExcel, null);
     this.grpGridExcel.TabIndex = 13;
     this.grpGridExcel.Text = "groupControl1";
     this.grpGridExcel.Visible = false;
     //
     // gridExcel
     //
     this.gridExcel.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.gridExcel.EmbeddedNavigator.Name = "";
     this.gridExcel.Location = new System.Drawing.Point(2, 30);
     this.gridExcel.MainView = this.gridViewExcel;
     this.gridExcel.Name = "gridExcel";
     this.gridExcel.Size = new System.Drawing.Size(540, 144);
     this.gridExcel.TabIndex = 12;
     this.gridExcel.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewExcel});
     this.gridExcel.Visible = false;
     //
     // gridViewExcel
     //
     this.gridViewExcel.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn19,
     this.FirstPayDate,
     this.gridColumn24,
     this.gridColumn25,
     this.gridColumn26,
     this.gridColumn27,
     this.gridColumn28,
     this.gridColumn29,
     this.gridColumn30,
     this.gridColumn31,
     this.gridColumn32,
     this.gridColumn33,
     this.gridColumn34,
     this.gridColumn35,
     this.gridColumn36,
     this.SecondPayDate});
     this.gridViewExcel.GridControl = this.gridExcel;
     this.gridViewExcel.Name = "gridViewExcel";
     this.gridViewExcel.OptionsBehavior.Editable = false;
     this.gridViewExcel.OptionsCustomization.AllowFilter = false;
     this.gridViewExcel.OptionsView.ColumnAutoWidth = false;
     this.gridViewExcel.OptionsView.ShowGroupPanel = false;
     //
     // gridColumn19
     //
     this.gridColumn19.Caption = "Emp ID";
     this.gridColumn19.FieldName = "nEmployeeID";
     this.gridColumn19.Name = "gridColumn19";
     this.gridColumn19.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
     this.gridColumn19.Visible = true;
     this.gridColumn19.VisibleIndex = 0;
     this.gridColumn19.Width = 68;
     //
     // FirstPayDate
     //
     this.FirstPayDate.Caption = "Payroll Date";
     this.FirstPayDate.FieldName = "dtFirstRunDate";
     this.FirstPayDate.Name = "FirstPayDate";
     this.FirstPayDate.Visible = true;
     this.FirstPayDate.VisibleIndex = 1;
     this.FirstPayDate.Width = 76;
     //
     // gridColumn24
     //
     this.gridColumn24.Caption = "OT-1.5 (HRS)";
     this.gridColumn24.FieldName = "nNormalOT";
     this.gridColumn24.Name = "gridColumn24";
     this.gridColumn24.Visible = true;
     this.gridColumn24.VisibleIndex = 2;
     this.gridColumn24.Width = 77;
     //
     // gridColumn25
     //
     this.gridColumn25.Caption = "OT-1.0 (DAYS)";
     this.gridColumn25.FieldName = "nPublicHolidayOT";
     this.gridColumn25.Name = "gridColumn25";
     this.gridColumn25.Visible = true;
     this.gridColumn25.VisibleIndex = 3;
     this.gridColumn25.Width = 83;
     //
     // gridColumn26
     //
     this.gridColumn26.Caption = "OT-2.0 (DAYS)";
     this.gridColumn26.FieldName = "nOffDayOT";
     this.gridColumn26.Name = "gridColumn26";
     this.gridColumn26.Visible = true;
     this.gridColumn26.VisibleIndex = 4;
     this.gridColumn26.Width = 82;
     //
     // gridColumn27
     //
     this.gridColumn27.Caption = "Part-Time Salary (HRS)";
     this.gridColumn27.FieldName = "nPartTimeWorkHours";
     this.gridColumn27.Name = "gridColumn27";
     this.gridColumn27.Visible = true;
     this.gridColumn27.VisibleIndex = 5;
     this.gridColumn27.Width = 85;
     //
     // gridColumn28
     //
     this.gridColumn28.Caption = "AL Entitlement (HRS)";
     this.gridColumn28.FieldName = "nALEntitlementHours";
     this.gridColumn28.Name = "gridColumn28";
     this.gridColumn28.Visible = true;
     this.gridColumn28.VisibleIndex = 6;
     this.gridColumn28.Width = 77;
     //
     // gridColumn29
     //
     this.gridColumn29.Caption = "PH Entitlement (HRS)";
     this.gridColumn29.FieldName = "nPHEntitlementHours";
     this.gridColumn29.Name = "gridColumn29";
     this.gridColumn29.Visible = true;
     this.gridColumn29.VisibleIndex = 7;
     this.gridColumn29.Width = 64;
     //
     // gridColumn30
     //
     this.gridColumn30.Caption = "Service Reimbursement (AMT)";
     this.gridColumn30.FieldName = "mServiceReimbursements";
     this.gridColumn30.Name = "gridColumn30";
     this.gridColumn30.Visible = true;
     this.gridColumn30.VisibleIndex = 8;
     this.gridColumn30.Width = 74;
     //
     // gridColumn31
     //
     this.gridColumn31.Caption = "Lateness (HRS)";
     this.gridColumn31.FieldName = "nTotalLateness";
     this.gridColumn31.Name = "gridColumn31";
     this.gridColumn31.Visible = true;
     this.gridColumn31.VisibleIndex = 9;
     this.gridColumn31.Width = 61;
     //
     // gridColumn32
     //
     this.gridColumn32.Caption = "Unpaid AL (DAYS)";
     this.gridColumn32.FieldName = "nUnpaidAL";
     this.gridColumn32.Name = "gridColumn32";
     this.gridColumn32.Visible = true;
     this.gridColumn32.VisibleIndex = 10;
     this.gridColumn32.Width = 78;
     //
     // gridColumn33
     //
     this.gridColumn33.Caption = "Unpaid T/O (HRS)";
     this.gridColumn33.FieldName = "nUnpaidTO";
     this.gridColumn33.Name = "gridColumn33";
     this.gridColumn33.Visible = true;
     this.gridColumn33.VisibleIndex = 11;
     this.gridColumn33.Width = 74;
     //
     // gridColumn34
     //
     this.gridColumn34.Caption = "Unpaid Medical Absent (DAYS)";
     this.gridColumn34.FieldName = "nUnpaidMedical";
     this.gridColumn34.Name = "gridColumn34";
     this.gridColumn34.Visible = true;
     this.gridColumn34.VisibleIndex = 12;
     this.gridColumn34.Width = 83;
     //
     // gridColumn35
     //
     this.gridColumn35.Caption = "Commision (AMT)";
     this.gridColumn35.FieldName = "mCommission";
     this.gridColumn35.Name = "gridColumn35";
     this.gridColumn35.Width = 50;
     //
     // gridColumn36
     //
     this.gridColumn36.Caption = "Commission Lateness Penalty (AMT)";
     this.gridColumn36.FieldName = "nTotalLateness";
     this.gridColumn36.Name = "gridColumn36";
     this.gridColumn36.Width = 109;
     //
     // SecondPayDate
     //
     this.SecondPayDate.Caption = "Payroll Date";
     this.SecondPayDate.FieldName = "dtSecondRunDate";
     this.SecondPayDate.Name = "SecondPayDate";
     //
     // btnPayrollExport
     //
     this.btnPayrollExport.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.btnPayrollExport.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.btnPayrollExport.Appearance.Options.UseBackColor = true;
     this.btnPayrollExport.Appearance.Options.UseFont = true;
     this.btnPayrollExport.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnPayrollExport.Location = new System.Drawing.Point(648, 24);
     this.btnPayrollExport.Name = "btnPayrollExport";
     this.btnPayrollExport.Size = new System.Drawing.Size(56, 20);
     this.btnPayrollExport.TabIndex = 9;
     this.btnPayrollExport.Text = "Export";
     this.btnPayrollExport.Click += new System.EventHandler(this.btnPayrollExport_Click);
     //
     // btnPayrollGenerate
     //
     this.btnPayrollGenerate.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.btnPayrollGenerate.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.btnPayrollGenerate.Appearance.Options.UseBackColor = true;
     this.btnPayrollGenerate.Appearance.Options.UseFont = true;
     this.btnPayrollGenerate.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnPayrollGenerate.Location = new System.Drawing.Point(568, 24);
     this.btnPayrollGenerate.Name = "btnPayrollGenerate";
     this.btnPayrollGenerate.Size = new System.Drawing.Size(64, 20);
     this.btnPayrollGenerate.TabIndex = 8;
     this.btnPayrollGenerate.Text = "Generate";
     this.btnPayrollGenerate.Click += new System.EventHandler(this.btnPayrollGenerate_Click);
     //
     // btnPayrollDelete
     //
     this.btnPayrollDelete.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.btnPayrollDelete.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.btnPayrollDelete.Appearance.Options.UseBackColor = true;
     this.btnPayrollDelete.Appearance.Options.UseFont = true;
     this.btnPayrollDelete.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnPayrollDelete.ImeMode = System.Windows.Forms.ImeMode.On;
     this.btnPayrollDelete.Location = new System.Drawing.Point(720, 24);
     this.btnPayrollDelete.Name = "btnPayrollDelete";
     this.btnPayrollDelete.Size = new System.Drawing.Size(56, 20);
     this.btnPayrollDelete.TabIndex = 7;
     this.btnPayrollDelete.Text = "Delete";
     this.btnPayrollDelete.Click += new System.EventHandler(this.btnPayrollDelete_Click);
     //
     // comboBoxEditMTH
     //
     this.comboBoxEditMTH.EditValue = "1";
     this.comboBoxEditMTH.Location = new System.Drawing.Point(288, 24);
     this.comboBoxEditMTH.Name = "comboBoxEditMTH";
     this.comboBoxEditMTH.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Style3D;
     this.comboBoxEditMTH.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.comboBoxEditMTH.Properties.Items.AddRange(new object[] {
     "1",
     "2",
     "3",
     "4",
     "5",
     "6",
     "7",
     "8",
     "9",
     "10",
     "11",
     "12"});
     this.comboBoxEditMTH.Properties.PopupSizeable = true;
     this.comboBoxEditMTH.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
     this.comboBoxEditMTH.Size = new System.Drawing.Size(48, 22);
     this.comboBoxEditMTH.TabIndex = 6;
     this.comboBoxEditMTH.SelectedIndexChanged += new System.EventHandler(this.comboBoxEditMTH_SelectedIndexChanged);
     //
     // comboBoxEditYR
     //
     this.comboBoxEditYR.EditValue = "2006";
     this.comboBoxEditYR.Location = new System.Drawing.Point(176, 24);
     this.comboBoxEditYR.Name = "comboBoxEditYR";
     this.comboBoxEditYR.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Style3D;
     this.comboBoxEditYR.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.comboBoxEditYR.Properties.Items.AddRange(new object[] {
     "1990",
     "1991",
     "1992",
     "1993",
     "1994",
     "1995",
     "1996",
     "1997",
     "1998",
     "1999",
     "2000",
     "2001",
     "2002",
     "2003",
     "2004",
     "2005",
     "2006",
     "2007",
     "2008",
     "2009",
     "2010",
     "2011",
     "2012",
     "2013",
     "2014",
     "2015",
     "2016",
     "2017",
     "2018",
     "2019",
     "2020",
     "2021",
     "2022",
     "2023",
     "2024",
     "2025",
     "2026",
     "2027",
     "2028",
     "2029",
     "2030"});
     this.comboBoxEditYR.Properties.PopupSizeable = true;
     this.comboBoxEditYR.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
     this.comboBoxEditYR.Size = new System.Drawing.Size(64, 22);
     this.comboBoxEditYR.TabIndex = 5;
     this.comboBoxEditYR.SelectedValueChanged += new System.EventHandler(this.comboBoxEditYR_SelectedValueChanged);
     //
     // lblYear
     //
     this.lblYear.BackColor = System.Drawing.Color.Transparent;
     this.lblYear.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblYear.ForeColor = System.Drawing.Color.Black;
     this.lblYear.Location = new System.Drawing.Point(136, 24);
     this.lblYear.Name = "lblYear";
     this.lblYear.Size = new System.Drawing.Size(56, 16);
     this.toolTipController1.SetSuperTip(this.lblYear, null);
     this.lblYear.TabIndex = 4;
     this.lblYear.Text = "Year";
     //
     // lblMonth
     //
     this.lblMonth.BackColor = System.Drawing.Color.Transparent;
     this.lblMonth.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblMonth.Location = new System.Drawing.Point(248, 24);
     this.lblMonth.Name = "lblMonth";
     this.lblMonth.Size = new System.Drawing.Size(48, 16);
     this.toolTipController1.SetSuperTip(this.lblMonth, null);
     this.lblMonth.TabIndex = 3;
     this.lblMonth.Text = "Month";
     //
     // cmbxPayroll
     //
     this.cmbxPayroll.EditValue = "First Run";
     this.cmbxPayroll.Location = new System.Drawing.Point(8, 24);
     this.cmbxPayroll.Name = "cmbxPayroll";
     this.cmbxPayroll.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Style3D;
     this.cmbxPayroll.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cmbxPayroll.Properties.Items.AddRange(new object[] {
     "First Run",
     "Second Run"});
     this.cmbxPayroll.Properties.PopupSizeable = true;
     this.cmbxPayroll.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
     this.cmbxPayroll.Size = new System.Drawing.Size(120, 22);
     this.cmbxPayroll.TabIndex = 2;
     this.cmbxPayroll.SelectedValueChanged += new System.EventHandler(this.cmbxPayroll_SelectedValueChanged);
     //
     // gridPayroll
     //
     this.gridPayroll.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.gridPayroll.EmbeddedNavigator.Name = "";
     this.gridPayroll.Location = new System.Drawing.Point(2, 62);
     this.gridPayroll.MainView = this.gridViewPayroll;
     this.gridPayroll.Name = "gridPayroll";
     this.gridPayroll.Size = new System.Drawing.Size(990, 552);
     this.gridPayroll.TabIndex = 11;
     this.gridPayroll.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewPayroll});
     //
     // gridViewPayroll
     //
     this.gridViewPayroll.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.nEmployeeID,
     this.gridColumn9,
     this.gridColumn17,
     this.gridColumn18,
     this.dtFirstRunDate,
     this.nNormalOT,
     this.nPublicHolidayOT,
     this.nOffDayOT,
     this.nPartTimeWorkHours,
     this.nALEntitlementHours,
     this.nPHEntitlementHours,
     this.mServiceReimbursements,
     this.nTotalLateness,
     this.nUnpaidAL,
     this.nUnpaidTO,
     this.nUnpaidMedical,
     this.mCommission,
     this.mCommissionLatenessPenalty,
     this.dtSecondRunDate});
     this.gridViewPayroll.GridControl = this.gridPayroll;
     this.gridViewPayroll.HorzScrollVisibility = DevExpress.XtraGrid.Views.Base.ScrollVisibility.Always;
     this.gridViewPayroll.Name = "gridViewPayroll";
     this.gridViewPayroll.OptionsBehavior.Editable = false;
     this.gridViewPayroll.OptionsCustomization.AllowFilter = false;
     this.gridViewPayroll.OptionsView.ColumnAutoWidth = false;
     this.gridViewPayroll.OptionsView.ShowGroupPanel = false;
     this.gridViewPayroll.VertScrollVisibility = DevExpress.XtraGrid.Views.Base.ScrollVisibility.Always;
     this.gridViewPayroll.Click += new System.EventHandler(this.gridViewPayroll_Click);
     //
     // nEmployeeID
     //
     this.nEmployeeID.Caption = "Emp ID";
     this.nEmployeeID.FieldName = "nEmployeeID";
     this.nEmployeeID.Name = "nEmployeeID";
     this.nEmployeeID.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
     this.nEmployeeID.Visible = true;
     this.nEmployeeID.VisibleIndex = 0;
     this.nEmployeeID.Width = 68;
     //
     // gridColumn9
     //
     this.gridColumn9.Caption = "Name";
     this.gridColumn9.FieldName = "strEmployeeName";
     this.gridColumn9.Name = "gridColumn9";
     this.gridColumn9.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
     this.gridColumn9.Visible = true;
     this.gridColumn9.VisibleIndex = 1;
     //
     // gridColumn17
     //
     this.gridColumn17.Caption = "Job Title";
     this.gridColumn17.FieldName = "strJobPosition";
     this.gridColumn17.Name = "gridColumn17";
     this.gridColumn17.Visible = true;
     this.gridColumn17.VisibleIndex = 2;
     //
     // gridColumn18
     //
     this.gridColumn18.Caption = "Branch";
     this.gridColumn18.FieldName = "strBranchCode";
     this.gridColumn18.Name = "gridColumn18";
     this.gridColumn18.Visible = true;
     this.gridColumn18.VisibleIndex = 3;
     //
     // dtFirstRunDate
     //
     this.dtFirstRunDate.Caption = "Payroll Date";
     this.dtFirstRunDate.FieldName = "dtFirstRunDate";
     this.dtFirstRunDate.Name = "dtFirstRunDate";
     this.dtFirstRunDate.Width = 76;
     //
     // nNormalOT
     //
     this.nNormalOT.Caption = "OT-1.5 (HRS)";
     this.nNormalOT.FieldName = "nNormalOT";
     this.nNormalOT.Name = "nNormalOT";
     this.nNormalOT.Visible = true;
     this.nNormalOT.VisibleIndex = 4;
     this.nNormalOT.Width = 77;
     //
     // nPublicHolidayOT
     //
     this.nPublicHolidayOT.Caption = "OT-1.0 (DAYS)";
     this.nPublicHolidayOT.FieldName = "nPublicHolidayOT";
     this.nPublicHolidayOT.Name = "nPublicHolidayOT";
     this.nPublicHolidayOT.Visible = true;
     this.nPublicHolidayOT.VisibleIndex = 5;
     this.nPublicHolidayOT.Width = 83;
     //
     // nOffDayOT
     //
     this.nOffDayOT.Caption = "OT-2.0 (DAYS)";
     this.nOffDayOT.FieldName = "nOffDayOT";
     this.nOffDayOT.Name = "nOffDayOT";
     this.nOffDayOT.Visible = true;
     this.nOffDayOT.VisibleIndex = 6;
     this.nOffDayOT.Width = 82;
     //
     // nPartTimeWorkHours
     //
     this.nPartTimeWorkHours.Caption = "Part-Time Salary (HRS)";
     this.nPartTimeWorkHours.FieldName = "nPartTimeWorkHours";
     this.nPartTimeWorkHours.Name = "nPartTimeWorkHours";
     this.nPartTimeWorkHours.Visible = true;
     this.nPartTimeWorkHours.VisibleIndex = 7;
     this.nPartTimeWorkHours.Width = 85;
     //
     // nALEntitlementHours
     //
     this.nALEntitlementHours.Caption = "AL Entitlement (HRS)";
     this.nALEntitlementHours.FieldName = "nALEntitlementHours";
     this.nALEntitlementHours.Name = "nALEntitlementHours";
     this.nALEntitlementHours.Visible = true;
     this.nALEntitlementHours.VisibleIndex = 8;
     this.nALEntitlementHours.Width = 77;
     //
     // nPHEntitlementHours
     //
     this.nPHEntitlementHours.Caption = "PH Entitlement (HRS)";
     this.nPHEntitlementHours.FieldName = "nPHEntitlementHours";
     this.nPHEntitlementHours.Name = "nPHEntitlementHours";
     this.nPHEntitlementHours.Visible = true;
     this.nPHEntitlementHours.VisibleIndex = 9;
     this.nPHEntitlementHours.Width = 64;
     //
     // mServiceReimbursements
     //
     this.mServiceReimbursements.Caption = "Service Reimbursement (AMT)";
     this.mServiceReimbursements.FieldName = "mServiceReimbursements";
     this.mServiceReimbursements.Name = "mServiceReimbursements";
     this.mServiceReimbursements.Visible = true;
     this.mServiceReimbursements.VisibleIndex = 10;
     this.mServiceReimbursements.Width = 74;
     //
     // nTotalLateness
     //
     this.nTotalLateness.Caption = "Lateness (HRS)";
     this.nTotalLateness.FieldName = "nTotalLateness";
     this.nTotalLateness.Name = "nTotalLateness";
     this.nTotalLateness.Visible = true;
     this.nTotalLateness.VisibleIndex = 11;
     this.nTotalLateness.Width = 61;
     //
     // nUnpaidAL
     //
     this.nUnpaidAL.Caption = "Unpaid AL (DAYS)";
     this.nUnpaidAL.FieldName = "nUnpaidAL";
     this.nUnpaidAL.Name = "nUnpaidAL";
     this.nUnpaidAL.Visible = true;
     this.nUnpaidAL.VisibleIndex = 12;
     this.nUnpaidAL.Width = 78;
     //
     // nUnpaidTO
     //
     this.nUnpaidTO.Caption = "Unpaid T/O (HRS)";
     this.nUnpaidTO.FieldName = "nUnpaidTO";
     this.nUnpaidTO.Name = "nUnpaidTO";
     this.nUnpaidTO.Visible = true;
     this.nUnpaidTO.VisibleIndex = 13;
     this.nUnpaidTO.Width = 74;
     //
     // nUnpaidMedical
     //
     this.nUnpaidMedical.Caption = "Unpaid Medical Absent (DAYS)";
     this.nUnpaidMedical.FieldName = "nUnpaidMedical";
     this.nUnpaidMedical.Name = "nUnpaidMedical";
     this.nUnpaidMedical.Visible = true;
     this.nUnpaidMedical.VisibleIndex = 14;
     this.nUnpaidMedical.Width = 83;
     //
     // mCommission
     //
     this.mCommission.Caption = "Commision (AMT)";
     this.mCommission.FieldName = "mCommission";
     this.mCommission.Name = "mCommission";
     this.mCommission.Width = 50;
     //
     // mCommissionLatenessPenalty
     //
     this.mCommissionLatenessPenalty.Caption = "Commission Lateness Penalty (AMT)";
     this.mCommissionLatenessPenalty.FieldName = "nTotalLateness";
     this.mCommissionLatenessPenalty.Name = "mCommissionLatenessPenalty";
     this.mCommissionLatenessPenalty.Width = 109;
     //
     // dtSecondRunDate
     //
     this.dtSecondRunDate.Caption = "Payroll Date";
     this.dtSecondRunDate.FieldName = "dtSecondRunDate";
     this.dtSecondRunDate.Name = "dtSecondRunDate";
     //
     // tabManagerThree
     //
     this.tabManagerThree.Appearance.PageClient.BackColor = System.Drawing.Color.DimGray;
     this.tabManagerThree.Appearance.PageClient.Options.UseBackColor = true;
     this.tabManagerThree.Controls.Add(this.lblThree_2);
     this.tabManagerThree.Controls.Add(this.lblThree_1);
     this.tabManagerThree.Controls.Add(this.lblThree_3);
     this.tabManagerThree.Controls.Add(this.grpClassSchedule);
     this.tabManagerThree.Controls.Add(this.groupMemCard);
     this.tabManagerThree.Controls.Add(this.grpRoadShow);
     this.tabManagerThree.Name = "tabManagerThree";
     this.tabManagerThree.PageVisible = false;
     this.tabManagerThree.Size = new System.Drawing.Size(1007, 637);
     this.tabManagerThree.Text = "Operation";
     //
     // lblThree_2
     //
     this.lblThree_2.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.lblThree_2.Appearance.ForeColor = System.Drawing.Color.MediumBlue;
     this.lblThree_2.Appearance.Options.UseFont = true;
     this.lblThree_2.Appearance.Options.UseForeColor = true;
     this.lblThree_2.Location = new System.Drawing.Point(152, 0);
     this.lblThree_2.Name = "lblThree_2";
     this.lblThree_2.Size = new System.Drawing.Size(138, 23);
     this.lblThree_2.TabIndex = 144;
     this.lblThree_2.Text = "Member Card";
     this.lblThree_2.Click += new System.EventHandler(this.lblThree_2_Click);
     //
     // lblThree_1
     //
     this.lblThree_1.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.lblThree_1.Appearance.ForeColor = System.Drawing.Color.MediumBlue;
     this.lblThree_1.Appearance.Options.UseFont = true;
     this.lblThree_1.Appearance.Options.UseForeColor = true;
     this.lblThree_1.Location = new System.Drawing.Point(8, 0);
     this.lblThree_1.Name = "lblThree_1";
     this.lblThree_1.Size = new System.Drawing.Size(138, 23);
     this.lblThree_1.TabIndex = 143;
     this.lblThree_1.Text = "Class Schedule";
     this.lblThree_1.Click += new System.EventHandler(this.lblThree_1_Click);
     //
     // lblThree_3
     //
     this.lblThree_3.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.lblThree_3.Appearance.ForeColor = System.Drawing.Color.MediumBlue;
     this.lblThree_3.Appearance.Options.UseFont = true;
     this.lblThree_3.Appearance.Options.UseForeColor = true;
     this.lblThree_3.Location = new System.Drawing.Point(296, 0);
     this.lblThree_3.Name = "lblThree_3";
     this.lblThree_3.Size = new System.Drawing.Size(138, 23);
     this.lblThree_3.TabIndex = 145;
     this.lblThree_3.Text = "Admin Operation";
     this.lblThree_3.Click += new System.EventHandler(this.lblThree_3_Click);
     //
     // grpClassSchedule
     //
     this.grpClassSchedule.Appearance.BackColor = System.Drawing.SystemColors.Control;
     this.grpClassSchedule.Appearance.ForeColor = System.Drawing.Color.Black;
     this.grpClassSchedule.Appearance.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.grpClassSchedule.Appearance.Options.UseBackColor = true;
     this.grpClassSchedule.Appearance.Options.UseForeColor = true;
     this.grpClassSchedule.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.grpClassSchedule.AppearanceCaption.Options.UseFont = true;
     this.grpClassSchedule.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowOnly;
     this.grpClassSchedule.Controls.Add(this.comboBoxBranch);
     this.grpClassSchedule.Controls.Add(this.btnRefreshClassSchedule);
     this.grpClassSchedule.Controls.Add(this.lblPQBranch);
     this.grpClassSchedule.Controls.Add(this.lblSUN);
     this.grpClassSchedule.Controls.Add(this.panelSun);
     this.grpClassSchedule.Controls.Add(this.panelSat);
     this.grpClassSchedule.Controls.Add(this.lblFRI);
     this.grpClassSchedule.Controls.Add(this.lblTHU);
     this.grpClassSchedule.Controls.Add(this.lblWED);
     this.grpClassSchedule.Controls.Add(this.lblTUE);
     this.grpClassSchedule.Controls.Add(this.panelFri);
     this.grpClassSchedule.Controls.Add(this.panelThu);
     this.grpClassSchedule.Controls.Add(this.panelWed);
     this.grpClassSchedule.Controls.Add(this.panelTue);
     this.grpClassSchedule.Controls.Add(this.panelMon);
     this.grpClassSchedule.Controls.Add(this.lblMON);
     this.grpClassSchedule.Controls.Add(this.btnPrintClassSchedule);
     this.grpClassSchedule.Controls.Add(this.btnNewClassSchedule);
     this.grpClassSchedule.Controls.Add(this.lblSAT);
     this.grpClassSchedule.Location = new System.Drawing.Point(16, 32);
     this.grpClassSchedule.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.grpClassSchedule.LookAndFeel.UseDefaultLookAndFeel = false;
     this.grpClassSchedule.Name = "grpClassSchedule";
     this.grpClassSchedule.Size = new System.Drawing.Size(996, 592);
     this.toolTipController1.SetSuperTip(this.grpClassSchedule, null);
     this.grpClassSchedule.TabIndex = 5;
     this.grpClassSchedule.Text = "Class Schedule";
     //
     // comboBoxBranch
     //
     this.comboBoxBranch.Location = new System.Drawing.Point(16, 40);
     this.comboBoxBranch.Name = "comboBoxBranch";
     this.comboBoxBranch.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.comboBoxBranch.Size = new System.Drawing.Size(104, 20);
     this.comboBoxBranch.TabIndex = 122;
     this.comboBoxBranch.EditValueChanged += new System.EventHandler(this.comboBoxBranch_SelectedValueChanged);
     //
     // btnRefreshClassSchedule
     //
     this.btnRefreshClassSchedule.Appearance.BackColor = System.Drawing.SystemColors.Control;
     this.btnRefreshClassSchedule.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnRefreshClassSchedule.Appearance.ForeColor = System.Drawing.Color.Black;
     this.btnRefreshClassSchedule.Appearance.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.btnRefreshClassSchedule.Appearance.Options.UseBackColor = true;
     this.btnRefreshClassSchedule.Appearance.Options.UseFont = true;
     this.btnRefreshClassSchedule.Appearance.Options.UseForeColor = true;
     this.btnRefreshClassSchedule.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnRefreshClassSchedule.Location = new System.Drawing.Point(16, 112);
     this.btnRefreshClassSchedule.LookAndFeel.UseDefaultLookAndFeel = false;
     this.btnRefreshClassSchedule.Name = "btnRefreshClassSchedule";
     this.btnRefreshClassSchedule.Size = new System.Drawing.Size(104, 20);
     this.btnRefreshClassSchedule.TabIndex = 121;
     this.btnRefreshClassSchedule.Text = "Refresh";
     this.btnRefreshClassSchedule.Click += new System.EventHandler(this.btnRefreshClassSchedule_Click);
     //
     // lblPQBranch
     //
     this.lblPQBranch.BackColor = System.Drawing.Color.Transparent;
     this.lblPQBranch.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblPQBranch.Location = new System.Drawing.Point(16, 24);
     this.lblPQBranch.Name = "lblPQBranch";
     this.lblPQBranch.Size = new System.Drawing.Size(100, 16);
     this.toolTipController1.SetSuperTip(this.lblPQBranch, null);
     this.lblPQBranch.TabIndex = 33;
     this.lblPQBranch.Text = "Filter by Branch";
     //
     // lblSUN
     //
     this.lblSUN.BackColor = System.Drawing.Color.PowderBlue;
     this.lblSUN.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.lblSUN.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblSUN.Location = new System.Drawing.Point(760, 24);
     this.lblSUN.Name = "lblSUN";
     this.lblSUN.Size = new System.Drawing.Size(104, 16);
     this.toolTipController1.SetSuperTip(this.lblSUN, null);
     this.lblSUN.TabIndex = 30;
     this.lblSUN.Text = "SUN";
     //
     // panelSun
     //
     this.panelSun.BackColor = System.Drawing.Color.White;
     this.panelSun.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.panelSun.Location = new System.Drawing.Point(760, 40);
     this.panelSun.Name = "panelSun";
     this.panelSun.Size = new System.Drawing.Size(104, 512);
     this.toolTipController1.SetSuperTip(this.panelSun, null);
     this.panelSun.TabIndex = 28;
     //
     // panelSat
     //
     this.panelSat.BackColor = System.Drawing.Color.White;
     this.panelSat.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.panelSat.Location = new System.Drawing.Point(656, 40);
     this.panelSat.Name = "panelSat";
     this.panelSat.Size = new System.Drawing.Size(104, 512);
     this.toolTipController1.SetSuperTip(this.panelSat, null);
     this.panelSat.TabIndex = 27;
     //
     // lblFRI
     //
     this.lblFRI.BackColor = System.Drawing.Color.PowderBlue;
     this.lblFRI.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.lblFRI.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblFRI.Location = new System.Drawing.Point(552, 24);
     this.lblFRI.Name = "lblFRI";
     this.lblFRI.Size = new System.Drawing.Size(104, 16);
     this.toolTipController1.SetSuperTip(this.lblFRI, null);
     this.lblFRI.TabIndex = 26;
     this.lblFRI.Text = "FRI";
     //
     // lblTHU
     //
     this.lblTHU.BackColor = System.Drawing.Color.PowderBlue;
     this.lblTHU.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.lblTHU.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblTHU.Location = new System.Drawing.Point(448, 24);
     this.lblTHU.Name = "lblTHU";
     this.lblTHU.Size = new System.Drawing.Size(104, 16);
     this.toolTipController1.SetSuperTip(this.lblTHU, null);
     this.lblTHU.TabIndex = 25;
     this.lblTHU.Text = "THU";
     //
     // lblWED
     //
     this.lblWED.BackColor = System.Drawing.Color.PowderBlue;
     this.lblWED.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.lblWED.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblWED.Location = new System.Drawing.Point(344, 24);
     this.lblWED.Name = "lblWED";
     this.lblWED.Size = new System.Drawing.Size(104, 16);
     this.toolTipController1.SetSuperTip(this.lblWED, null);
     this.lblWED.TabIndex = 24;
     this.lblWED.Text = "WED";
     //
     // lblTUE
     //
     this.lblTUE.BackColor = System.Drawing.Color.PowderBlue;
     this.lblTUE.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.lblTUE.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblTUE.Location = new System.Drawing.Point(240, 24);
     this.lblTUE.Name = "lblTUE";
     this.lblTUE.Size = new System.Drawing.Size(104, 16);
     this.toolTipController1.SetSuperTip(this.lblTUE, null);
     this.lblTUE.TabIndex = 23;
     this.lblTUE.Text = "TUE";
     //
     // panelFri
     //
     this.panelFri.BackColor = System.Drawing.Color.White;
     this.panelFri.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.panelFri.Location = new System.Drawing.Point(552, 40);
     this.panelFri.Name = "panelFri";
     this.panelFri.Size = new System.Drawing.Size(104, 512);
     this.toolTipController1.SetSuperTip(this.panelFri, null);
     this.panelFri.TabIndex = 18;
     //
     // panelThu
     //
     this.panelThu.BackColor = System.Drawing.Color.White;
     this.panelThu.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.panelThu.Location = new System.Drawing.Point(448, 40);
     this.panelThu.Name = "panelThu";
     this.panelThu.Size = new System.Drawing.Size(104, 512);
     this.toolTipController1.SetSuperTip(this.panelThu, null);
     this.panelThu.TabIndex = 17;
     //
     // panelWed
     //
     this.panelWed.BackColor = System.Drawing.Color.White;
     this.panelWed.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.panelWed.Location = new System.Drawing.Point(344, 40);
     this.panelWed.Name = "panelWed";
     this.panelWed.Size = new System.Drawing.Size(104, 512);
     this.toolTipController1.SetSuperTip(this.panelWed, null);
     this.panelWed.TabIndex = 16;
     //
     // panelTue
     //
     this.panelTue.BackColor = System.Drawing.Color.White;
     this.panelTue.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.panelTue.Location = new System.Drawing.Point(240, 40);
     this.panelTue.Name = "panelTue";
     this.panelTue.Size = new System.Drawing.Size(104, 512);
     this.toolTipController1.SetSuperTip(this.panelTue, null);
     this.panelTue.TabIndex = 15;
     //
     // panelMon
     //
     this.panelMon.BackColor = System.Drawing.Color.White;
     this.panelMon.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.panelMon.Location = new System.Drawing.Point(136, 40);
     this.panelMon.Name = "panelMon";
     this.panelMon.Size = new System.Drawing.Size(104, 512);
     this.toolTipController1.SetSuperTip(this.panelMon, null);
     this.panelMon.TabIndex = 14;
     //
     // lblMON
     //
     this.lblMON.BackColor = System.Drawing.Color.PowderBlue;
     this.lblMON.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.lblMON.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblMON.Location = new System.Drawing.Point(136, 24);
     this.lblMON.Name = "lblMON";
     this.lblMON.Size = new System.Drawing.Size(104, 16);
     this.toolTipController1.SetSuperTip(this.lblMON, null);
     this.lblMON.TabIndex = 12;
     this.lblMON.Text = "MON";
     //
     // btnPrintClassSchedule
     //
     this.btnPrintClassSchedule.Appearance.BackColor = System.Drawing.SystemColors.Control;
     this.btnPrintClassSchedule.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnPrintClassSchedule.Appearance.ForeColor = System.Drawing.Color.Black;
     this.btnPrintClassSchedule.Appearance.Options.UseBackColor = true;
     this.btnPrintClassSchedule.Appearance.Options.UseFont = true;
     this.btnPrintClassSchedule.Appearance.Options.UseForeColor = true;
     this.btnPrintClassSchedule.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnPrintClassSchedule.Location = new System.Drawing.Point(16, 88);
     this.btnPrintClassSchedule.Name = "btnPrintClassSchedule";
     this.btnPrintClassSchedule.Size = new System.Drawing.Size(104, 20);
     this.btnPrintClassSchedule.TabIndex = 11;
     this.btnPrintClassSchedule.Text = "Print";
     this.btnPrintClassSchedule.Click += new System.EventHandler(this.btnPrintClassSchedule_Click);
     //
     // btnNewClassSchedule
     //
     this.btnNewClassSchedule.Appearance.BackColor = System.Drawing.SystemColors.Control;
     this.btnNewClassSchedule.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnNewClassSchedule.Appearance.ForeColor = System.Drawing.Color.Black;
     this.btnNewClassSchedule.Appearance.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.btnNewClassSchedule.Appearance.Options.UseBackColor = true;
     this.btnNewClassSchedule.Appearance.Options.UseFont = true;
     this.btnNewClassSchedule.Appearance.Options.UseForeColor = true;
     this.btnNewClassSchedule.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnNewClassSchedule.Location = new System.Drawing.Point(16, 64);
     this.btnNewClassSchedule.LookAndFeel.UseDefaultLookAndFeel = false;
     this.btnNewClassSchedule.Name = "btnNewClassSchedule";
     this.btnNewClassSchedule.Size = new System.Drawing.Size(104, 20);
     this.btnNewClassSchedule.TabIndex = 8;
     this.btnNewClassSchedule.Text = "New";
     this.btnNewClassSchedule.Click += new System.EventHandler(this.btnNewClassSchedule_Click);
     //
     // lblSAT
     //
     this.lblSAT.BackColor = System.Drawing.Color.PowderBlue;
     this.lblSAT.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.lblSAT.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblSAT.Location = new System.Drawing.Point(656, 24);
     this.lblSAT.Name = "lblSAT";
     this.lblSAT.Size = new System.Drawing.Size(104, 16);
     this.toolTipController1.SetSuperTip(this.lblSAT, null);
     this.lblSAT.TabIndex = 29;
     this.lblSAT.Text = "SAT";
     //
     // groupMemCard
     //
     this.groupMemCard.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowOnly;
     this.groupMemCard.Location = new System.Drawing.Point(16, 32);
     this.groupMemCard.Name = "groupMemCard";
     this.groupMemCard.Size = new System.Drawing.Size(1000, 592);
     this.toolTipController1.SetSuperTip(this.groupMemCard, null);
     this.groupMemCard.TabIndex = 127;
     //
     // grpRoadShow
     //
     this.grpRoadShow.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowOnly;
     this.grpRoadShow.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.grpRoadShow.Location = new System.Drawing.Point(16, 32);
     this.grpRoadShow.LookAndFeel.UseDefaultLookAndFeel = false;
     this.grpRoadShow.Name = "grpRoadShow";
     this.grpRoadShow.Size = new System.Drawing.Size(984, 592);
     this.toolTipController1.SetSuperTip(this.grpRoadShow, null);
     this.grpRoadShow.TabIndex = 129;
     //
     // tabManagerFour
     //
     this.tabManagerFour.Controls.Add(this.lblFour_2);
     this.tabManagerFour.Controls.Add(this.lblFour_1);
     this.tabManagerFour.Controls.Add(this.lblFour_3);
     this.tabManagerFour.Controls.Add(this.lblFour_4);
     this.tabManagerFour.Controls.Add(this.lblFour_5);
     this.tabManagerFour.Controls.Add(this.panel2);
     this.tabManagerFour.Name = "tabManagerFour";
     this.tabManagerFour.PageVisible = false;
     this.tabManagerFour.Size = new System.Drawing.Size(1007, 637);
     this.tabManagerFour.Text = "Human Resource";
     //
     // lblFour_2
     //
     this.lblFour_2.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.lblFour_2.Appearance.ForeColor = System.Drawing.Color.MediumBlue;
     this.lblFour_2.Appearance.Options.UseFont = true;
     this.lblFour_2.Appearance.Options.UseForeColor = true;
     this.lblFour_2.Location = new System.Drawing.Point(152, 0);
     this.lblFour_2.Name = "lblFour_2";
     this.lblFour_2.Size = new System.Drawing.Size(138, 23);
     this.lblFour_2.TabIndex = 144;
     this.lblFour_2.Text = "TimeSheet";
     this.lblFour_2.Click += new System.EventHandler(this.lblFour_2_Click);
     //
     // lblFour_1
     //
     this.lblFour_1.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.lblFour_1.Appearance.ForeColor = System.Drawing.Color.MediumBlue;
     this.lblFour_1.Appearance.Options.UseFont = true;
     this.lblFour_1.Appearance.Options.UseForeColor = true;
     this.lblFour_1.Location = new System.Drawing.Point(8, 0);
     this.lblFour_1.Name = "lblFour_1";
     this.lblFour_1.Size = new System.Drawing.Size(138, 23);
     this.lblFour_1.TabIndex = 143;
     this.lblFour_1.Text = "Roster";
     this.lblFour_1.Click += new System.EventHandler(this.lblFour_1_Click);
     //
     // lblFour_3
     //
     this.lblFour_3.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.lblFour_3.Appearance.ForeColor = System.Drawing.Color.MediumBlue;
     this.lblFour_3.Appearance.Options.UseFont = true;
     this.lblFour_3.Appearance.Options.UseForeColor = true;
     this.lblFour_3.Location = new System.Drawing.Point(296, 0);
     this.lblFour_3.Name = "lblFour_3";
     this.lblFour_3.Size = new System.Drawing.Size(138, 23);
     this.lblFour_3.TabIndex = 145;
     this.lblFour_3.Text = "OverTime";
     this.lblFour_3.Click += new System.EventHandler(this.lblFour_3_Click);
     //
     // lblFour_4
     //
     this.lblFour_4.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.lblFour_4.Appearance.ForeColor = System.Drawing.Color.MediumBlue;
     this.lblFour_4.Appearance.Options.UseFont = true;
     this.lblFour_4.Appearance.Options.UseForeColor = true;
     this.lblFour_4.Location = new System.Drawing.Point(440, 0);
     this.lblFour_4.Name = "lblFour_4";
     this.lblFour_4.Size = new System.Drawing.Size(138, 23);
     this.lblFour_4.TabIndex = 146;
     this.lblFour_4.Text = "Leave";
     this.lblFour_4.Click += new System.EventHandler(this.lblFour_4_Click);
     //
     // lblFour_5
     //
     this.lblFour_5.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.lblFour_5.Appearance.ForeColor = System.Drawing.Color.MediumBlue;
     this.lblFour_5.Appearance.Options.UseFont = true;
     this.lblFour_5.Appearance.Options.UseForeColor = true;
     this.lblFour_5.Location = new System.Drawing.Point(584, 0);
     this.lblFour_5.Name = "lblFour_5";
     this.lblFour_5.Size = new System.Drawing.Size(138, 23);
     this.lblFour_5.TabIndex = 147;
     this.lblFour_5.Text = "Appointment";
     this.lblFour_5.Click += new System.EventHandler(this.lblFour_5_Click);
     //
     // panel2
     //
     this.panel2.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("panel2.BackgroundImage")));
     this.panel2.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.panel2.Location = new System.Drawing.Point(0, 32);
     this.panel2.Name = "panel2";
     this.panel2.Size = new System.Drawing.Size(1000, 600);
     this.toolTipController1.SetSuperTip(this.panel2, null);
     this.panel2.TabIndex = 125;
     //
     // tabManagerFive
     //
     this.tabManagerFive.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tabManagerFive.BackgroundImage")));
     this.tabManagerFive.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.tabManagerFive.Controls.Add(this.label6);
     this.tabManagerFive.Controls.Add(this.ReportPanel);
     this.tabManagerFive.Controls.Add(this.lk_ReportView);
     this.tabManagerFive.Controls.Add(this.lblFive_9);
     this.tabManagerFive.Controls.Add(this.lblFive_10);
     this.tabManagerFive.Controls.Add(this.lblFive_4);
     this.tabManagerFive.Controls.Add(this.lblFive_2);
     this.tabManagerFive.Controls.Add(this.lblFive_8);
     this.tabManagerFive.Controls.Add(this.lblFive_7);
     this.tabManagerFive.Controls.Add(this.lblFive_3);
     this.tabManagerFive.Controls.Add(this.lblFive_6);
     this.tabManagerFive.Controls.Add(this.lblFive_1);
     this.tabManagerFive.Controls.Add(this.lblFive_5);
     this.tabManagerFive.Name = "tabManagerFive";
     this.tabManagerFive.PageVisible = false;
     this.tabManagerFive.Size = new System.Drawing.Size(1007, 637);
     this.tabManagerFive.Text = "Report";
     //
     // label6
     //
     this.label6.Font = new System.Drawing.Font("Monotype Corsiva", 9F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))), System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label6.ForeColor = System.Drawing.SystemColors.Desktop;
     this.label6.Location = new System.Drawing.Point(16, 32);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(61, 16);
     this.toolTipController1.SetSuperTip(this.label6, null);
     this.label6.TabIndex = 57;
     this.label6.Text = "Option >>";
     //
     // ReportPanel
     //
     this.ReportPanel.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowOnly;
     this.ReportPanel.Location = new System.Drawing.Point(8, 56);
     this.ReportPanel.Name = "ReportPanel";
     this.ReportPanel.Size = new System.Drawing.Size(984, 560);
     this.toolTipController1.SetSuperTip(this.ReportPanel, null);
     this.ReportPanel.TabIndex = 28;
     //
     // lk_ReportView
     //
     this.lk_ReportView.Location = new System.Drawing.Point(88, 32);
     this.lk_ReportView.Name = "lk_ReportView";
     this.lk_ReportView.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lk_ReportView.Properties.Appearance.Options.UseFont = true;
     this.lk_ReportView.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Style3D;
     this.lk_ReportView.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lk_ReportView.Properties.NullText = "";
     this.lk_ReportView.Size = new System.Drawing.Size(272, 22);
     this.lk_ReportView.TabIndex = 53;
     this.lk_ReportView.EditValueChanged += new System.EventHandler(this.lk_ReportView_EditValueChanged);
     this.lk_ReportView.DoubleClick += new System.EventHandler(this.lk_ReportView_EditValueChanged);
     //
     // lblFive_9
     //
     this.lblFive_9.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.lblFive_9.Appearance.ForeColor = System.Drawing.Color.MediumBlue;
     this.lblFive_9.Appearance.Options.UseFont = true;
     this.lblFive_9.Appearance.Options.UseForeColor = true;
     this.lblFive_9.Location = new System.Drawing.Point(712, 0);
     this.lblFive_9.Name = "lblFive_9";
     this.lblFive_9.Size = new System.Drawing.Size(80, 23);
     this.lblFive_9.TabIndex = 152;
     this.lblFive_9.Text = "Leave";
     this.lblFive_9.Click += new System.EventHandler(this.lblFive_9_Click);
     //
     // lblFive_10
     //
     this.lblFive_10.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.lblFive_10.Appearance.ForeColor = System.Drawing.Color.MediumBlue;
     this.lblFive_10.Appearance.Options.UseFont = true;
     this.lblFive_10.Appearance.Options.UseForeColor = true;
     this.lblFive_10.Location = new System.Drawing.Point(800, 0);
     this.lblFive_10.Name = "lblFive_10";
     this.lblFive_10.Size = new System.Drawing.Size(80, 23);
     this.lblFive_10.TabIndex = 153;
     this.lblFive_10.Text = "Member";
     this.lblFive_10.Click += new System.EventHandler(this.lblFive_10_Click);
     //
     // lblFive_4
     //
     this.lblFive_4.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.lblFive_4.Appearance.ForeColor = System.Drawing.Color.MediumBlue;
     this.lblFive_4.Appearance.Options.UseFont = true;
     this.lblFive_4.Appearance.Options.UseForeColor = true;
     this.lblFive_4.Location = new System.Drawing.Point(272, 0);
     this.lblFive_4.Name = "lblFive_4";
     this.lblFive_4.Size = new System.Drawing.Size(80, 23);
     this.lblFive_4.TabIndex = 147;
     this.lblFive_4.Text = "Promotion";
     this.lblFive_4.Click += new System.EventHandler(this.lblFive_4_Click);
     //
     // lblFive_2
     //
     this.lblFive_2.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.lblFive_2.Appearance.ForeColor = System.Drawing.Color.MediumBlue;
     this.lblFive_2.Appearance.Options.UseFont = true;
     this.lblFive_2.Appearance.Options.UseForeColor = true;
     this.lblFive_2.Location = new System.Drawing.Point(96, 0);
     this.lblFive_2.Name = "lblFive_2";
     this.lblFive_2.Size = new System.Drawing.Size(80, 23);
     this.lblFive_2.TabIndex = 145;
     this.lblFive_2.Text = "Attendance";
     this.lblFive_2.Click += new System.EventHandler(this.lblFive_2_Click);
     //
     // lblFive_8
     //
     this.lblFive_8.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.lblFive_8.Appearance.ForeColor = System.Drawing.Color.MediumBlue;
     this.lblFive_8.Appearance.Options.UseFont = true;
     this.lblFive_8.Appearance.Options.UseForeColor = true;
     this.lblFive_8.Location = new System.Drawing.Point(624, 0);
     this.lblFive_8.Name = "lblFive_8";
     this.lblFive_8.Size = new System.Drawing.Size(80, 23);
     this.lblFive_8.TabIndex = 151;
     this.lblFive_8.Text = "Stock";
     this.lblFive_8.Click += new System.EventHandler(this.lblFive_8_Click);
     //
     // lblFive_7
     //
     this.lblFive_7.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.lblFive_7.Appearance.ForeColor = System.Drawing.Color.MediumBlue;
     this.lblFive_7.Appearance.Options.UseFont = true;
     this.lblFive_7.Appearance.Options.UseForeColor = true;
     this.lblFive_7.Location = new System.Drawing.Point(536, 0);
     this.lblFive_7.Name = "lblFive_7";
     this.lblFive_7.Size = new System.Drawing.Size(80, 23);
     this.lblFive_7.TabIndex = 150;
     this.lblFive_7.Text = "Voice";
     this.lblFive_7.Click += new System.EventHandler(this.lblFive_7_Click);
     //
     // lblFive_3
     //
     this.lblFive_3.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.lblFive_3.Appearance.ForeColor = System.Drawing.Color.MediumBlue;
     this.lblFive_3.Appearance.Options.UseFont = true;
     this.lblFive_3.Appearance.Options.UseForeColor = true;
     this.lblFive_3.Location = new System.Drawing.Point(184, 0);
     this.lblFive_3.Name = "lblFive_3";
     this.lblFive_3.Size = new System.Drawing.Size(80, 23);
     this.lblFive_3.TabIndex = 146;
     this.lblFive_3.Text = "Operation";
     this.lblFive_3.Click += new System.EventHandler(this.lblFive_3_Click);
     //
     // lblFive_6
     //
     this.lblFive_6.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.lblFive_6.Appearance.ForeColor = System.Drawing.Color.MediumBlue;
     this.lblFive_6.Appearance.Options.UseFont = true;
     this.lblFive_6.Appearance.Options.UseForeColor = true;
     this.lblFive_6.Location = new System.Drawing.Point(448, 0);
     this.lblFive_6.Name = "lblFive_6";
     this.lblFive_6.Size = new System.Drawing.Size(80, 23);
     this.lblFive_6.TabIndex = 149;
     this.lblFive_6.Text = "Staff";
     this.lblFive_6.Click += new System.EventHandler(this.lblFive_6_Click);
     //
     // lblFive_1
     //
     this.lblFive_1.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.lblFive_1.Appearance.ForeColor = System.Drawing.Color.MediumBlue;
     this.lblFive_1.Appearance.Options.UseFont = true;
     this.lblFive_1.Appearance.Options.UseForeColor = true;
     this.lblFive_1.Location = new System.Drawing.Point(8, 0);
     this.lblFive_1.Name = "lblFive_1";
     this.lblFive_1.Size = new System.Drawing.Size(80, 23);
     this.lblFive_1.TabIndex = 144;
     this.lblFive_1.Text = "Sales";
     this.lblFive_1.Click += new System.EventHandler(this.lblFive_1_Click);
     //
     // lblFive_5
     //
     this.lblFive_5.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.lblFive_5.Appearance.ForeColor = System.Drawing.Color.MediumBlue;
     this.lblFive_5.Appearance.Options.UseFont = true;
     this.lblFive_5.Appearance.Options.UseForeColor = true;
     this.lblFive_5.Location = new System.Drawing.Point(360, 0);
     this.lblFive_5.Name = "lblFive_5";
     this.lblFive_5.Size = new System.Drawing.Size(80, 23);
     this.lblFive_5.TabIndex = 148;
     this.lblFive_5.Text = "Account";
     this.lblFive_5.Click += new System.EventHandler(this.lblFive_5_Click);
     //
     // tabManagerSix
     //
     this.tabManagerSix.Appearance.PageClient.BackColor = System.Drawing.Color.Gray;
     this.tabManagerSix.Appearance.PageClient.Options.UseBackColor = true;
     this.tabManagerSix.Controls.Add(this.lk_MasterData);
     this.tabManagerSix.Controls.Add(this.panel1);
     this.tabManagerSix.Controls.Add(this.label1);
     this.tabManagerSix.Name = "tabManagerSix";
     this.tabManagerSix.PageVisible = false;
     this.tabManagerSix.Size = new System.Drawing.Size(1007, 637);
     this.tabManagerSix.Text = "Master Data";
     //
     // lk_MasterData
     //
     this.lk_MasterData.Location = new System.Drawing.Point(88, 7);
     this.lk_MasterData.Name = "lk_MasterData";
     this.lk_MasterData.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lk_MasterData.Properties.Appearance.Options.UseFont = true;
     this.lk_MasterData.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Style3D;
     this.lk_MasterData.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lk_MasterData.Size = new System.Drawing.Size(160, 22);
     this.lk_MasterData.TabIndex = 52;
     this.lk_MasterData.EditValueChanged += new System.EventHandler(this.lk_MasterData_EditValueChanged);
     //
     // panel1
     //
     this.panel1.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("panel1.BackgroundImage")));
     this.panel1.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.panel1.Location = new System.Drawing.Point(3, 32);
     this.panel1.Name = "panel1";
     this.panel1.Size = new System.Drawing.Size(1000, 592);
     this.toolTipController1.SetSuperTip(this.panel1, null);
     this.panel1.TabIndex = 45;
     //
     // label1
     //
     this.label1.Font = new System.Drawing.Font("Monotype Corsiva", 9F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))), System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label1.ForeColor = System.Drawing.SystemColors.Desktop;
     this.label1.Location = new System.Drawing.Point(19, 7);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(61, 16);
     this.toolTipController1.SetSuperTip(this.label1, null);
     this.label1.TabIndex = 40;
     this.label1.Text = "Option >>";
     //
     // barManager1
     //
     this.barManager1.Bars.AddRange(new DevExpress.XtraBars.Bar[] {
     this.bar1});
     this.barManager1.Controller = this.barAndDockingController1;
     this.barManager1.DockControls.Add(this.barDockControlTop);
     this.barManager1.DockControls.Add(this.barDockControlBottom);
     this.barManager1.DockControls.Add(this.barDockControlLeft);
     this.barManager1.DockControls.Add(this.barDockControlRight);
     this.barManager1.Form = this;
     this.barManager1.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
     this.bbiManagerLoginOut,
     this.bbiManagerTimeCard,
     this.barButtonItem1,
     this.barstaticCurrentLogin});
     this.barManager1.MainMenu = this.bar1;
     this.barManager1.MaxItemId = 5;
     //
     // bar1
     //
     this.bar1.Appearance.BackColor = System.Drawing.SystemColors.Control;
     this.bar1.Appearance.Options.UseBackColor = true;
     this.bar1.BarName = "Custom 1";
     this.bar1.DockCol = 0;
     this.bar1.DockRow = 0;
     this.bar1.DockStyle = DevExpress.XtraBars.BarDockStyle.Top;
     this.bar1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.PaintStyle, this.bbiManagerLoginOut, DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph),
     new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.PaintStyle, this.barButtonItem1, DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph),
     new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.PaintStyle, this.barstaticCurrentLogin, "", true, true, true, 0, null, DevExpress.XtraBars.BarItemPaintStyle.Caption)});
     this.bar1.OptionsBar.AllowQuickCustomization = false;
     this.bar1.OptionsBar.DrawDragBorder = false;
     this.bar1.OptionsBar.UseWholeRow = true;
     this.bar1.Text = "Custom 1";
     //
     // bbiManagerLoginOut
     //
     this.bbiManagerLoginOut.Caption = "Close";
     this.bbiManagerLoginOut.Glyph = ((System.Drawing.Image)(resources.GetObject("bbiManagerLoginOut.Glyph")));
     this.bbiManagerLoginOut.Id = 0;
     this.bbiManagerLoginOut.Name = "bbiManagerLoginOut";
     this.bbiManagerLoginOut.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiManagerLoginOut_ItemClick);
     //
     // barButtonItem1
     //
     this.barButtonItem1.Caption = "Time Card";
     this.barButtonItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("barButtonItem1.Glyph")));
     this.barButtonItem1.Id = 3;
     this.barButtonItem1.Name = "barButtonItem1";
     this.barButtonItem1.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barbtnTimeCard_ItemClick);
     //
     // barstaticCurrentLogin
     //
     this.barstaticCurrentLogin.Caption = "Current Login: {0}, {1}";
     this.barstaticCurrentLogin.Id = 4;
     this.barstaticCurrentLogin.Name = "barstaticCurrentLogin";
     this.barstaticCurrentLogin.OwnFont = new System.Drawing.Font("Tahoma", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.World);
     this.barstaticCurrentLogin.UseOwnFont = true;
     //
     // barAndDockingController1
     //
     this.barAndDockingController1.AppearancesBar.ItemsFont = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.barAndDockingController1.PaintStyleName = "WindowsXP";
     //
     // barDockControlTop
     //
     this.toolTipController1.SetSuperTip(this.barDockControlTop, null);
     //
     // barDockControlBottom
     //
     this.toolTipController1.SetSuperTip(this.barDockControlBottom, null);
     //
     // barDockControlLeft
     //
     this.toolTipController1.SetSuperTip(this.barDockControlLeft, null);
     //
     // barDockControlRight
     //
     this.toolTipController1.SetSuperTip(this.barDockControlRight, null);
     //
     // bbiManagerTimeCard
     //
     this.bbiManagerTimeCard.Caption = "Time Card";
     this.bbiManagerTimeCard.Id = 2;
     this.bbiManagerTimeCard.Name = "bbiManagerTimeCard";
     this.bbiManagerTimeCard.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiManagerTimeCard_ItemClick);
     //
     // printDocument1
     //
     this.printDocument1.PrintPage += new System.Drawing.Printing.PrintPageEventHandler(this.printDocument1_PrintPage);
     //
     // gridColumnPGE3
     //
     this.gridColumnPGE3.Caption = "Quantity";
     this.gridColumnPGE3.FieldName = "nQuantity";
     this.gridColumnPGE3.Name = "gridColumnPGE3";
     this.gridColumnPGE3.Visible = true;
     this.gridColumnPGE3.VisibleIndex = 2;
     //
     // gridColumnPGE2
     //
     this.gridColumnPGE2.Caption = "Package Code";
     this.gridColumnPGE2.FieldName = "strPackageCode";
     this.gridColumnPGE2.Name = "gridColumnPGE2";
     this.gridColumnPGE2.Visible = true;
     this.gridColumnPGE2.VisibleIndex = 1;
     //
     // gridColumnPGE1
     //
     this.gridColumnPGE1.Caption = "Package Group Code";
     this.gridColumnPGE1.FieldName = "strPackageGroupCode";
     this.gridColumnPGE1.Name = "gridColumnPGE1";
     this.gridColumnPGE1.Visible = true;
     this.gridColumnPGE1.VisibleIndex = 0;
     //
     // mdPGE_txtNQuantity
     //
     this.mdPGE_txtNQuantity.EditValue = "";
     this.mdPGE_txtNQuantity.Location = new System.Drawing.Point(32, 152);
     this.mdPGE_txtNQuantity.Name = "mdPGE_txtNQuantity";
     this.mdPGE_txtNQuantity.Properties.Mask.EditMask = "######0";
     this.mdPGE_txtNQuantity.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.mdPGE_txtNQuantity.Size = new System.Drawing.Size(144, 20);
     this.mdPGE_txtNQuantity.TabIndex = 122;
     //
     // mdPGE_txtStrPackageCode
     //
     this.mdPGE_txtStrPackageCode.EditValue = "imageComboBoxEdit2";
     this.mdPGE_txtStrPackageCode.Location = new System.Drawing.Point(32, 96);
     this.mdPGE_txtStrPackageCode.Name = "mdPGE_txtStrPackageCode";
     this.mdPGE_txtStrPackageCode.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.mdPGE_txtStrPackageCode.Size = new System.Drawing.Size(144, 20);
     this.mdPGE_txtStrPackageCode.TabIndex = 121;
     //
     // mdPGE_cdStrPackageGroupCode
     //
     this.mdPGE_cdStrPackageGroupCode.EditValue = "imageComboBoxEdit1";
     this.mdPGE_cdStrPackageGroupCode.Location = new System.Drawing.Point(32, 48);
     this.mdPGE_cdStrPackageGroupCode.Name = "mdPGE_cdStrPackageGroupCode";
     this.mdPGE_cdStrPackageGroupCode.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.mdPGE_cdStrPackageGroupCode.Size = new System.Drawing.Size(144, 20);
     this.mdPGE_cdStrPackageGroupCode.TabIndex = 120;
     //
     // mdPGE_lblNQuantity
     //
     this.mdPGE_lblNQuantity.BackColor = System.Drawing.Color.Transparent;
     this.mdPGE_lblNQuantity.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.mdPGE_lblNQuantity.ForeColor = System.Drawing.Color.Black;
     this.mdPGE_lblNQuantity.Location = new System.Drawing.Point(32, 136);
     this.mdPGE_lblNQuantity.Name = "mdPGE_lblNQuantity";
     this.mdPGE_lblNQuantity.Size = new System.Drawing.Size(120, 16);
     this.toolTipController1.SetSuperTip(this.mdPGE_lblNQuantity, null);
     this.mdPGE_lblNQuantity.TabIndex = 119;
     this.mdPGE_lblNQuantity.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // mdPGE_lblStrPackageCode
     //
     this.mdPGE_lblStrPackageCode.BackColor = System.Drawing.Color.Transparent;
     this.mdPGE_lblStrPackageCode.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.mdPGE_lblStrPackageCode.ForeColor = System.Drawing.Color.Black;
     this.mdPGE_lblStrPackageCode.Location = new System.Drawing.Point(32, 80);
     this.mdPGE_lblStrPackageCode.Name = "mdPGE_lblStrPackageCode";
     this.mdPGE_lblStrPackageCode.Size = new System.Drawing.Size(120, 16);
     this.toolTipController1.SetSuperTip(this.mdPGE_lblStrPackageCode, null);
     this.mdPGE_lblStrPackageCode.TabIndex = 118;
     this.mdPGE_lblStrPackageCode.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // mdPGE_lblStrPackageGroupCode
     //
     this.mdPGE_lblStrPackageGroupCode.BackColor = System.Drawing.Color.Transparent;
     this.mdPGE_lblStrPackageGroupCode.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.mdPGE_lblStrPackageGroupCode.ForeColor = System.Drawing.Color.Black;
     this.mdPGE_lblStrPackageGroupCode.Location = new System.Drawing.Point(32, 32);
     this.mdPGE_lblStrPackageGroupCode.Name = "mdPGE_lblStrPackageGroupCode";
     this.mdPGE_lblStrPackageGroupCode.Size = new System.Drawing.Size(120, 16);
     this.toolTipController1.SetSuperTip(this.mdPGE_lblStrPackageGroupCode, null);
     this.mdPGE_lblStrPackageGroupCode.TabIndex = 117;
     this.mdPGE_lblStrPackageGroupCode.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // label5
     //
     this.label5.Font = new System.Drawing.Font("Georgia", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label5.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(153)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.label5.Location = new System.Drawing.Point(888, 8);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(120, 24);
     this.toolTipController1.SetSuperTip(this.label5, null);
     this.label5.TabIndex = 25;
     this.label5.Text = "HeadStart";
     //
     // frmManager
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize = new System.Drawing.Size(1012, 691);
     this.Controls.Add(this.label5);
     this.Controls.Add(this.tabControlManager);
     this.Controls.Add(this.barDockControlLeft);
     this.Controls.Add(this.barDockControlRight);
     this.Controls.Add(this.barDockControlBottom);
     this.Controls.Add(this.barDockControlTop);
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Menu = this.MainMenu1;
     this.Name = "frmManager";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.toolTipController1.SetSuperTip(this, null);
     this.Text = "ACMS Manager";
     this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
     this.Load += new System.EventHandler(this.frmManager_Load);
     ((System.ComponentModel.ISupportInitialize)(this.tabControlManager)).EndInit();
     this.tabControlManager.ResumeLayout(false);
     this.tabManagerOne.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupIPPMaster)).EndInit();
     this.groupIPPMaster.ResumeLayout(false);
     this.groupIPPMaster.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupIPP)).EndInit();
     this.groupIPP.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ComboBoxIPP.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.grpIPP2)).EndInit();
     this.grpIPP2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.lkBranch.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkBank.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPdtTo.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPdtTo.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPdtStart.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPdtStart.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCreditCardScr.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPGrid)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPGridView)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.GroupIPPDetails)).EndInit();
     this.GroupIPPDetails.ResumeLayout(false);
     this.GroupIPPDetails.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.strReferenceNo.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPBankCode.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPNMonths.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPCCNo.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPStatus.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPDateRcv.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPDateSent.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPBranchCode.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPCreatedDate.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPMerchantNo.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPAmount.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPInterest.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPNettAmount.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPMemberId.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPMemberName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPId.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupIPPReceipt)).EndInit();
     this.groupIPPReceipt.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridReceipt)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPReceiptView)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPReceiptStatus.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupGIROMaster)).EndInit();
     this.groupGIROMaster.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).EndInit();
     this.xtraTabControl1.ResumeLayout(false);
     this.tabGiroDetails.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.luedtBankBranch.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.luedtBank.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.luedtPackage.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.luedtBranch.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPackageDesc.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtAccountNo.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtGIROId.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtRemark.Properties)).EndInit();
     this.tabGiroTrnsHistory.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.GridTransaction)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.GroupGiro)).EndInit();
     this.GroupGiro.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.comboBoxGiroStatus.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.GiroGrid)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.GIROGridView)).EndInit();
     this.tabManagerTwo.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.GrpPayroll)).EndInit();
     this.GrpPayroll.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.progressBarControl1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbJob.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.grpGridExcel)).EndInit();
     this.grpGridExcel.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridExcel)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewExcel)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.comboBoxEditMTH.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.comboBoxEditYR.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbxPayroll.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridPayroll)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewPayroll)).EndInit();
     this.tabManagerThree.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.grpClassSchedule)).EndInit();
     this.grpClassSchedule.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.comboBoxBranch.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupMemCard)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.grpRoadShow)).EndInit();
     this.tabManagerFour.ResumeLayout(false);
     this.tabManagerFive.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ReportPanel)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_ReportView.Properties)).EndInit();
     this.tabManagerSix.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.lk_MasterData.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.printingSystem1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.barManager1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.barAndDockingController1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.mdPGE_txtNQuantity.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.mdPGE_txtStrPackageCode.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.mdPGE_cdStrPackageGroupCode.Properties)).EndInit();
     this.ResumeLayout(false);
 }
Example #7
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.luedtCode          = new DevExpress.XtraEditors.LookUpEdit();
     this.luedtItemPromotion = new DevExpress.XtraEditors.LookUpEdit();
     this.label6             = new System.Windows.Forms.Label();
     this.btnClose           = new DevExpress.XtraEditors.SimpleButton();
     this.label1             = new System.Windows.Forms.Label();
     this.btnSave            = new DevExpress.XtraEditors.SimpleButton();
     this.label4             = new System.Windows.Forms.Label();
     this.CreditCard         = new System.Windows.Forms.Label();
     this.GroupID            = new DevExpress.XtraEditors.ImageComboBoxEdit();
     this.CategoryTypeID     = new DevExpress.XtraEditors.ImageComboBoxEdit();
     ((System.ComponentModel.ISupportInitialize)(this.luedtCode.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.luedtItemPromotion.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.GroupID.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.CategoryTypeID.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // luedtCode
     //
     this.luedtCode.Location = new System.Drawing.Point(160, 96);
     this.luedtCode.Name     = "luedtCode";
     //
     // luedtCode.Properties
     //
     this.luedtCode.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.luedtCode.Properties.NullText = "";
     this.luedtCode.Size     = new System.Drawing.Size(240, 20);
     this.luedtCode.TabIndex = 181;
     //
     // luedtItemPromotion
     //
     this.luedtItemPromotion.Location = new System.Drawing.Point(160, 24);
     this.luedtItemPromotion.Name     = "luedtItemPromotion";
     //
     // luedtItemPromotion.Properties
     //
     this.luedtItemPromotion.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.luedtItemPromotion.Properties.NullText = "";
     this.luedtItemPromotion.Size     = new System.Drawing.Size(240, 20);
     this.luedtItemPromotion.TabIndex = 179;
     //
     // label6
     //
     this.label6.Font     = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.label6.Location = new System.Drawing.Point(16, 48);
     this.label6.Name     = "label6";
     this.label6.Size     = new System.Drawing.Size(112, 23);
     this.label6.TabIndex = 177;
     this.label6.Text     = "Category Type ID";
     //
     // btnClose
     //
     this.btnClose.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnClose.Location    = new System.Drawing.Point(208, 136);
     this.btnClose.Name        = "btnClose";
     this.btnClose.Size        = new System.Drawing.Size(72, 20);
     this.btnClose.TabIndex    = 175;
     this.btnClose.Text        = "Close";
     this.btnClose.Click      += new System.EventHandler(this.btnClose_Click);
     //
     // label1
     //
     this.label1.Font     = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.label1.Location = new System.Drawing.Point(16, 24);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(120, 23);
     this.label1.TabIndex = 174;
     this.label1.Text     = "Promotion Code";
     //
     // btnSave
     //
     this.btnSave.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnSave.Location    = new System.Drawing.Point(88, 136);
     this.btnSave.Name        = "btnSave";
     this.btnSave.Size        = new System.Drawing.Size(72, 20);
     this.btnSave.TabIndex    = 173;
     this.btnSave.Text        = "Save";
     this.btnSave.Click      += new System.EventHandler(this.btnSave_Click);
     //
     // label4
     //
     this.label4.Font     = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.label4.Location = new System.Drawing.Point(16, 72);
     this.label4.Name     = "label4";
     this.label4.TabIndex = 172;
     this.label4.Text     = "Group ID";
     //
     // CreditCard
     //
     this.CreditCard.Font     = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.CreditCard.Location = new System.Drawing.Point(16, 96);
     this.CreditCard.Name     = "CreditCard";
     this.CreditCard.Size     = new System.Drawing.Size(112, 23);
     this.CreditCard.TabIndex = 170;
     this.CreditCard.Text     = "Code";
     //
     // GroupID
     //
     this.GroupID.Location = new System.Drawing.Point(160, 72);
     this.GroupID.Name     = "GroupID";
     //
     // GroupID.Properties
     //
     this.GroupID.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.GroupID.Properties.Items.AddRange(new object[] {
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Item", 0, -1),
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Group", 1, -1)
     });
     this.GroupID.Size                  = new System.Drawing.Size(240, 20);
     this.GroupID.TabIndex              = 182;
     this.GroupID.SelectedIndexChanged += new System.EventHandler(this.GroupID_SelectedIndexChanged);
     //
     // CategoryTypeID
     //
     this.CategoryTypeID.Location = new System.Drawing.Point(160, 48);
     this.CategoryTypeID.Name     = "CategoryTypeID";
     //
     // CategoryTypeID.Properties
     //
     this.CategoryTypeID.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.CategoryTypeID.Properties.Items.AddRange(new object[] {
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Item or product", 1, -1),
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Package", 2, -1),
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Package Group", 3, -1),
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Credit Package", 4, -1)
     });
     this.CategoryTypeID.Size                  = new System.Drawing.Size(240, 20);
     this.CategoryTypeID.TabIndex              = 183;
     this.CategoryTypeID.SelectedIndexChanged += new System.EventHandler(this.CategoryTypeID_SelectedIndexChanged);
     //
     // frmItem_Add
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 14);
     this.ClientSize        = new System.Drawing.Size(424, 181);
     this.Controls.Add(this.CategoryTypeID);
     this.Controls.Add(this.GroupID);
     this.Controls.Add(this.luedtCode);
     this.Controls.Add(this.luedtItemPromotion);
     this.Controls.Add(this.label6);
     this.Controls.Add(this.btnClose);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.btnSave);
     this.Controls.Add(this.label4);
     this.Controls.Add(this.CreditCard);
     this.Name  = "frmItem_Add";
     this.Text  = "Item Promotion Add";
     this.Load += new System.EventHandler(this.frmItem_Add_Load);
     ((System.ComponentModel.ISupportInitialize)(this.luedtCode.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.luedtItemPromotion.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.GroupID.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.CategoryTypeID.Properties)).EndInit();
     this.ResumeLayout(false);
 }
Example #8
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components              = new System.ComponentModel.Container();
     this.MtMSalesGrid            = 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.label63                 = new System.Windows.Forms.Label();
     this.cmbCategory             = new DevExpress.XtraEditors.ImageComboBoxEdit();
     this.PRINT1                  = new DevExpress.XtraEditors.HyperLinkEdit();
     this.printingSystem1         = new DevExpress.XtraPrinting.PrintingSystem(this.components);
     this.printableComponentLink1 = new DevExpress.XtraPrinting.PrintableComponentLink(this.components);
     ((System.ComponentModel.ISupportInitialize)(this.MtMSalesGrid)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbCategory.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.PRINT1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.printingSystem1)).BeginInit();
     this.SuspendLayout();
     //
     // MtMSalesGrid
     //
     this.MtMSalesGrid.Cursor = System.Windows.Forms.Cursors.Default;
     this.MtMSalesGrid.Fields.AddRange(new DevExpress.XtraPivotGrid.PivotGridField[] {
         this.pivotGridField1,
         this.pivotGridField2,
         this.pivotGridField3,
         this.pivotGridField4
     });
     this.MtMSalesGrid.Location = new System.Drawing.Point(8, 40);
     this.MtMSalesGrid.Name     = "MtMSalesGrid";
     this.MtMSalesGrid.OptionsCustomization.AllowDrag   = false;
     this.MtMSalesGrid.OptionsCustomization.AllowExpand = false;
     this.MtMSalesGrid.OptionsCustomization.AllowSort   = false;
     this.MtMSalesGrid.OptionsView.ShowDataHeaders      = false;
     this.MtMSalesGrid.OptionsView.ShowFilterHeaders    = false;
     this.MtMSalesGrid.Size     = new System.Drawing.Size(960, 424);
     this.MtMSalesGrid.TabIndex = 0;
     //
     // pivotGridField1
     //
     this.pivotGridField1.Area                = DevExpress.XtraPivotGrid.PivotArea.ColumnArea;
     this.pivotGridField1.AreaIndex           = 0;
     this.pivotGridField1.Caption             = "Year";
     this.pivotGridField1.FieldName           = "Year";
     this.pivotGridField1.Name                = "pivotGridField1";
     this.pivotGridField1.Options.AllowFilter = DevExpress.Utils.DefaultBoolean.False;
     this.pivotGridField1.Options.AllowSort   = DevExpress.Utils.DefaultBoolean.False;
     //
     // pivotGridField2
     //
     this.pivotGridField2.Area      = DevExpress.XtraPivotGrid.PivotArea.RowArea;
     this.pivotGridField2.AreaIndex = 1;
     this.pivotGridField2.Caption   = "Month";
     this.pivotGridField2.FieldName = "Month";
     this.pivotGridField2.Name      = "pivotGridField2";
     //
     // pivotGridField3
     //
     this.pivotGridField3.Area           = DevExpress.XtraPivotGrid.PivotArea.DataArea;
     this.pivotGridField3.AreaIndex      = 0;
     this.pivotGridField3.EmptyValueText = "0";
     this.pivotGridField3.FieldName      = "TotalAmount";
     this.pivotGridField3.Name           = "pivotGridField3";
     //
     // pivotGridField4
     //
     this.pivotGridField4.Area      = DevExpress.XtraPivotGrid.PivotArea.RowArea;
     this.pivotGridField4.AreaIndex = 0;
     this.pivotGridField4.Caption   = "Category";
     this.pivotGridField4.FieldName = "strDescription";
     this.pivotGridField4.Name      = "pivotGridField4";
     //
     // 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, ((System.Byte)(0)));
     this.label63.Location  = new System.Drawing.Point(16, 8);
     this.label63.Name      = "label63";
     this.label63.Size      = new System.Drawing.Size(100, 16);
     this.label63.TabIndex  = 38;
     this.label63.Text      = "Category";
     //
     // cmbCategory
     //
     this.cmbCategory.EditValue = "cbGIROStatus";
     this.cmbCategory.Location  = new System.Drawing.Point(96, 8);
     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.Properties.Items.AddRange(new object[] {
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Active", 1, -1),
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Inactive", 0, -1)
     });
     this.cmbCategory.Properties.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.cmbCategory.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.cmbCategory.Size                  = new System.Drawing.Size(176, 20);
     this.cmbCategory.TabIndex              = 39;
     this.cmbCategory.SelectedValueChanged += new System.EventHandler(this.cmbCategory_SelectedValueChanged);
     //
     // PRINT1
     //
     this.PRINT1.EditValue = "PRINT";
     this.PRINT1.Location  = new System.Drawing.Point(288, 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  = 140;
     this.PRINT1.OpenLink += new DevExpress.XtraEditors.Controls.OpenLinkEventHandler(this.PRINT1_OpenLink);
     //
     // printingSystem1
     //
     this.printingSystem1.Links.AddRange(new object[] {
         this.printableComponentLink1
     });
     //
     // printableComponentLink1
     //
     this.printableComponentLink1.Component        = this.MtMSalesGrid;
     this.printableComponentLink1.PageHeaderFooter = new DevExpress.XtraPrinting.PageHeaderFooter(new DevExpress.XtraPrinting.PageHeaderArea(new string[] {
         "Month To Month Sales Report",
         "",
         "[Date Printed] [Time Printed]"
     }, new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.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, ((System.Byte)(134))), DevExpress.XtraPrinting.BrickAlignment.Near));
     this.printableComponentLink1.PrintingSystem          = this.printingSystem1;
     this.printableComponentLink1.CreateDetailHeaderArea += new DevExpress.XtraPrinting.CreateAreaEventHandler(this.printableComponentLink1_CreateDetailHeaderArea);
     //
     // RPMtMSales
     //
     this.AutoScale         = false;
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 14);
     this.ClientSize        = new System.Drawing.Size(874, 470);
     this.Controls.Add(this.PRINT1);
     this.Controls.Add(this.cmbCategory);
     this.Controls.Add(this.label63);
     this.Controls.Add(this.MtMSalesGrid);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
     this.Name            = "RPMtMSales";
     this.Text            = "Month to Month Sales";
     this.WindowState     = System.Windows.Forms.FormWindowState.Maximized;
     this.Load           += new System.EventHandler(this.XtraForm1_Load);
     ((System.ComponentModel.ISupportInitialize)(this.MtMSalesGrid)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbCategory.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.PRINT1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.printingSystem1)).EndInit();
     this.ResumeLayout(false);
 }
Example #9
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.btnViewAll = new DevExpress.XtraEditors.SimpleButton();
     this.cmbBranch = new DevExpress.XtraEditors.ImageComboBoxEdit();
     this.label25 = new System.Windows.Forms.Label();
     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.label2 = new System.Windows.Forms.Label();
     this.ddlStatus = new DevExpress.XtraEditors.ImageComboBoxEdit();
     this.gridLeaveDetails = new DevExpress.XtraGrid.GridControl();
     this.gridViewLeaveDetails = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn6 = 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.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.groupControl3 = new DevExpress.XtraEditors.GroupControl();
     ((System.ComponentModel.ISupportInitialize)(this.cmbBranch.Properties)).BeginInit();
     ((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.ddlStatus.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridLeaveDetails)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewLeaveDetails)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl3)).BeginInit();
     this.groupControl3.SuspendLayout();
     this.SuspendLayout();
     //
     // 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(557, 82);
     this.btnViewAll.Name = "btnViewAll";
     this.btnViewAll.Size = new System.Drawing.Size(86, 23);
     this.btnViewAll.TabIndex = 201;
     this.btnViewAll.Text = "View All";
     this.btnViewAll.Click += new System.EventHandler(this.btnViewAll_Click);
     //
     // cmbBranch
     //
     this.cmbBranch.Location = new System.Drawing.Point(326, 82);
     this.cmbBranch.Name = "cmbBranch";
     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(192, 24);
     this.cmbBranch.TabIndex = 200;
     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(259, 82);
     this.label25.Name = "label25";
     this.label25.Size = new System.Drawing.Size(67, 19);
     this.label25.TabIndex = 199;
     this.label25.Text = "Branch";
     //
     // 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(19, 27);
     this.groupControl2.LookAndFeel.UseDefaultLookAndFeel = false;
     this.groupControl2.Name = "groupControl2";
     this.groupControl2.Size = new System.Drawing.Size(672, 46);
     this.groupControl2.TabIndex = 198;
     //
     // prevToMonth
     //
     this.prevToMonth.Location = new System.Drawing.Point(326, 18);
     this.prevToMonth.Name = "prevToMonth";
     this.prevToMonth.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Style3D;
     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(87, 24);
     this.prevToMonth.TabIndex = 56;
     //
     // prevFromMonth
     //
     this.prevFromMonth.Location = new System.Drawing.Point(77, 18);
     this.prevFromMonth.Name = "prevFromMonth";
     this.prevFromMonth.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Style3D;
     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(86, 24);
     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(538, 18);
     this.btnPrevGo.Name = "btnPrevGo";
     this.btnPrevGo.Size = new System.Drawing.Size(86, 23);
     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(288, 18);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(29, 19);
     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(19, 18);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(58, 19);
     this.label4.TabIndex = 52;
     this.label4.Text = "From";
     //
     // prevToYear
     //
     this.prevToYear.EditValue = "cbGIROStatus";
     this.prevToYear.Location = new System.Drawing.Point(422, 18);
     this.prevToYear.Name = "prevToYear";
     this.prevToYear.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Style3D;
     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(96, 24);
     this.prevToYear.TabIndex = 51;
     //
     // prevFromYear
     //
     this.prevFromYear.EditValue = "cbGIROStatus";
     this.prevFromYear.Location = new System.Drawing.Point(173, 18);
     this.prevFromYear.Name = "prevFromYear";
     this.prevFromYear.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Style3D;
     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(86, 24);
     this.prevFromYear.TabIndex = 50;
     //
     // 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, ((byte)(0)));
     this.label2.Location = new System.Drawing.Point(29, 82);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(77, 27);
     this.label2.TabIndex = 197;
     this.label2.Text = "Remarks";
     //
     // ddlStatus
     //
     this.ddlStatus.EditValue = 0;
     this.ddlStatus.Location = new System.Drawing.Point(106, 82);
     this.ddlStatus.Name = "ddlStatus";
     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 DevExpress.XtraEditors.Controls.ImageComboBoxItem[] {
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Active", 0, -1),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Deleted", 1, -1)});
     this.ddlStatus.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.ddlStatus.Size = new System.Drawing.Size(134, 24);
     this.ddlStatus.TabIndex = 196;
     this.ddlStatus.SelectedIndexChanged += new System.EventHandler(this.ddlStatus_SelectedIndexChanged);
     //
     // gridLeaveDetails
     //
     this.gridLeaveDetails.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.gridLeaveDetails.Location = new System.Drawing.Point(2, 36);
     this.gridLeaveDetails.LookAndFeel.UseDefaultLookAndFeel = false;
     this.gridLeaveDetails.MainView = this.gridViewLeaveDetails;
     this.gridLeaveDetails.Name = "gridLeaveDetails";
     this.gridLeaveDetails.Size = new System.Drawing.Size(988, 530);
     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.gridColumn6,
     this.gridColumn1,
     this.gridColumn2,
     this.gridColumn5,
     this.gridColumn7,
     this.gridColumn8,
     this.gridColumn9,
     this.gridColumn10,
     this.gridColumn11});
     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;
     //
     // gridColumn6
     //
     this.gridColumn6.Caption = "Date";
     this.gridColumn6.DisplayFormat.FormatString = "dd/MM/yyyy";
     this.gridColumn6.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Custom;
     this.gridColumn6.FieldName = "dtDate";
     this.gridColumn6.Name = "gridColumn6";
     this.gridColumn6.Visible = true;
     this.gridColumn6.VisibleIndex = 0;
     this.gridColumn6.Width = 97;
     //
     // gridColumn1
     //
     this.gridColumn1.Caption = "Employee Id";
     this.gridColumn1.FieldName = "nEmployeeID";
     this.gridColumn1.Name = "gridColumn1";
     this.gridColumn1.Visible = true;
     this.gridColumn1.VisibleIndex = 1;
     this.gridColumn1.Width = 110;
     //
     // gridColumn2
     //
     this.gridColumn2.Caption = "Name";
     this.gridColumn2.FieldName = "strEmployeeName";
     this.gridColumn2.Name = "gridColumn2";
     this.gridColumn2.Visible = true;
     this.gridColumn2.VisibleIndex = 2;
     this.gridColumn2.Width = 150;
     //
     // gridColumn5
     //
     this.gridColumn5.Caption = "Roster ID";
     this.gridColumn5.FieldName = "nAppointmentId";
     this.gridColumn5.Name = "gridColumn5";
     //
     // gridColumn7
     //
     this.gridColumn7.Caption = "Start Time";
     this.gridColumn7.DisplayFormat.FormatString = "hh:mm:ss tt";
     this.gridColumn7.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Custom;
     this.gridColumn7.FieldName = "dtStartTime";
     this.gridColumn7.Name = "gridColumn7";
     this.gridColumn7.Visible = true;
     this.gridColumn7.VisibleIndex = 3;
     this.gridColumn7.Width = 150;
     //
     // gridColumn8
     //
     this.gridColumn8.Caption = "End Time";
     this.gridColumn8.DisplayFormat.FormatString = "hh:mm:ss tt";
     this.gridColumn8.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Custom;
     this.gridColumn8.FieldName = "dtEndTime";
     this.gridColumn8.Name = "gridColumn8";
     this.gridColumn8.Visible = true;
     this.gridColumn8.VisibleIndex = 4;
     this.gridColumn8.Width = 150;
     //
     // gridColumn9
     //
     this.gridColumn9.Caption = "Appointment Type";
     this.gridColumn9.FieldName = "ApptType";
     this.gridColumn9.Name = "gridColumn9";
     this.gridColumn9.Visible = true;
     this.gridColumn9.VisibleIndex = 5;
     this.gridColumn9.Width = 158;
     //
     // gridColumn10
     //
     this.gridColumn10.Caption = "Remarks";
     this.gridColumn10.FieldName = "ApptStatus";
     this.gridColumn10.Name = "gridColumn10";
     this.gridColumn10.Visible = true;
     this.gridColumn10.VisibleIndex = 6;
     this.gridColumn10.Width = 152;
     //
     // gridColumn11
     //
     this.gridColumn11.Caption = "nStatus";
     this.gridColumn11.FieldName = "nStatus";
     this.gridColumn11.Name = "gridColumn11";
     //
     // groupControl3
     //
     this.groupControl3.Appearance.BackColor = System.Drawing.SystemColors.Control;
     this.groupControl3.Appearance.Options.UseBackColor = true;
     this.groupControl3.Controls.Add(this.groupControl2);
     this.groupControl3.Controls.Add(this.label25);
     this.groupControl3.Controls.Add(this.btnViewAll);
     this.groupControl3.Controls.Add(this.label2);
     this.groupControl3.Controls.Add(this.ddlStatus);
     this.groupControl3.Controls.Add(this.cmbBranch);
     this.groupControl3.Controls.Add(this.gridLeaveDetails);
     this.groupControl3.Dock = System.Windows.Forms.DockStyle.Fill;
     this.groupControl3.Location = new System.Drawing.Point(0, 0);
     this.groupControl3.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.groupControl3.LookAndFeel.UseDefaultLookAndFeel = false;
     this.groupControl3.Name = "groupControl3";
     this.groupControl3.Size = new System.Drawing.Size(992, 568);
     this.groupControl3.TabIndex = 205;
     this.groupControl3.Text = "Appointment Details";
     //
     // frmAppointment
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(6, 16);
     this.ClientSize = new System.Drawing.Size(992, 568);
     this.Controls.Add(this.groupControl3);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
     this.Name = "frmAppointment";
     this.Text = "Appointment";
     this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
     this.Load += new System.EventHandler(this.frmAppointment_Load);
     ((System.ComponentModel.ISupportInitialize)(this.cmbBranch.Properties)).EndInit();
     ((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.ddlStatus.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridLeaveDetails)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewLeaveDetails)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl3)).EndInit();
     this.groupControl3.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Example #10
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.CategoryTypeID = new DevExpress.XtraEditors.ImageComboBoxEdit();
     this.GroupID = new DevExpress.XtraEditors.ImageComboBoxEdit();
     this.luedtCode = new DevExpress.XtraEditors.LookUpEdit();
     this.luedtItemPromotion = new DevExpress.XtraEditors.LookUpEdit();
     this.label6 = new System.Windows.Forms.Label();
     this.btnClose = new DevExpress.XtraEditors.SimpleButton();
     this.label1 = new System.Windows.Forms.Label();
     this.btnSave = new DevExpress.XtraEditors.SimpleButton();
     this.label4 = new System.Windows.Forms.Label();
     this.CreditCard = new System.Windows.Forms.Label();
     ((System.ComponentModel.ISupportInitialize)(this.CategoryTypeID.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.GroupID.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.luedtCode.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.luedtItemPromotion.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // CategoryTypeID
     //
     this.CategoryTypeID.Location = new System.Drawing.Point(152, 40);
     this.CategoryTypeID.Name = "CategoryTypeID";
     //
     // CategoryTypeID.Properties
     //
     this.CategoryTypeID.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.CategoryTypeID.Properties.Items.AddRange(new object[] {
                                                                    new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Item or product", 1, -1),
                                                                    new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Package", 2, -1),
                                                                    new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Package Group", 3, -1),
                                                                    new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Credit Package", 4, -1)});
     this.CategoryTypeID.Size = new System.Drawing.Size(240, 20);
     this.CategoryTypeID.TabIndex = 193;
     this.CategoryTypeID.SelectedIndexChanged += new System.EventHandler(this.CategoryTypeID_SelectedIndexChanged);
     //
     // GroupID
     //
     this.GroupID.Location = new System.Drawing.Point(152, 64);
     this.GroupID.Name = "GroupID";
     //
     // GroupID.Properties
     //
     this.GroupID.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.GroupID.Properties.Items.AddRange(new object[] {
                                                             new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Item", 0, -1),
                                                             new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Group", 1, -1)});
     this.GroupID.Size = new System.Drawing.Size(240, 20);
     this.GroupID.TabIndex = 192;
     this.GroupID.SelectedIndexChanged += new System.EventHandler(this.GroupID_SelectedIndexChanged);
     //
     // luedtCode
     //
     this.luedtCode.Location = new System.Drawing.Point(152, 88);
     this.luedtCode.Name = "luedtCode";
     //
     // luedtCode.Properties
     //
     this.luedtCode.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                       new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.luedtCode.Size = new System.Drawing.Size(240, 20);
     this.luedtCode.TabIndex = 191;
     //
     // luedtItemPromotion
     //
     this.luedtItemPromotion.Location = new System.Drawing.Point(152, 16);
     this.luedtItemPromotion.Name = "luedtItemPromotion";
     //
     // luedtItemPromotion.Properties
     //
     this.luedtItemPromotion.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                                new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.luedtItemPromotion.Size = new System.Drawing.Size(240, 20);
     this.luedtItemPromotion.TabIndex = 190;
     //
     // label6
     //
     this.label6.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.label6.Location = new System.Drawing.Point(8, 40);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(112, 23);
     this.label6.TabIndex = 189;
     this.label6.Text = "Category Type ID";
     //
     // btnClose
     //
     this.btnClose.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnClose.Location = new System.Drawing.Point(200, 136);
     this.btnClose.Name = "btnClose";
     this.btnClose.Size = new System.Drawing.Size(72, 20);
     this.btnClose.TabIndex = 188;
     this.btnClose.Text = "Close";
     this.btnClose.Click += new System.EventHandler(this.btnClose_Click);
     //
     // label1
     //
     this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.label1.Location = new System.Drawing.Point(8, 16);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(120, 23);
     this.label1.TabIndex = 187;
     this.label1.Text = "Promotion Code";
     //
     // btnSave
     //
     this.btnSave.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnSave.Location = new System.Drawing.Point(112, 136);
     this.btnSave.Name = "btnSave";
     this.btnSave.Size = new System.Drawing.Size(72, 20);
     this.btnSave.TabIndex = 186;
     this.btnSave.Text = "Save";
     this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
     //
     // label4
     //
     this.label4.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.label4.Location = new System.Drawing.Point(8, 64);
     this.label4.Name = "label4";
     this.label4.TabIndex = 185;
     this.label4.Text = "Group ID";
     //
     // CreditCard
     //
     this.CreditCard.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.CreditCard.Location = new System.Drawing.Point(8, 88);
     this.CreditCard.Name = "CreditCard";
     this.CreditCard.Size = new System.Drawing.Size(112, 23);
     this.CreditCard.TabIndex = 184;
     this.CreditCard.Text = "Code";
     //
     // frmItem_Edit
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 14);
     this.ClientSize = new System.Drawing.Size(400, 181);
     this.Controls.Add(this.CategoryTypeID);
     this.Controls.Add(this.GroupID);
     this.Controls.Add(this.luedtCode);
     this.Controls.Add(this.luedtItemPromotion);
     this.Controls.Add(this.label6);
     this.Controls.Add(this.btnClose);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.btnSave);
     this.Controls.Add(this.label4);
     this.Controls.Add(this.CreditCard);
     this.Name = "frmItem_Edit";
     this.Text = "Item Promotion Edit";
     this.Load += new System.EventHandler(this.frmItem_Edit_Load);
     ((System.ComponentModel.ISupportInitialize)(this.CategoryTypeID.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.GroupID.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.luedtCode.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.luedtItemPromotion.Properties)).EndInit();
     this.ResumeLayout(false);
 }