private void AddRoster(ACMSRosterHeader aAcmsRosterHeader, DateTime aDate) { string strSQL; DataSet _ds; strSQL = "SELECT @Date AS Today, DATEPART(weekday, @Date) AS Week_Day"; SqlParameter date1 = new SqlParameter("@Date", SqlDbType.DateTime); date1.Value = aDate; _ds = new DataSet(); SqlHelper.FillDataset(SqlHelperUtils.connectionString, CommandType.Text, strSQL, _ds, new string[] {"table"}, date1); aAcmsRosterHeader.dtRoster = _ds.Tables["table"]; strSQL = "SELECT * FROM SV_StaffRosterDetail WHERE nEmployeeID = @nEmployeeID AND rYear = @rYear " +"AND week_no = DATEPART(week, @Date)"; _ds = new DataSet(); SqlParameter nEmployeeID = new SqlParameter("@nEmployeeID", SqlDbType.Int); nEmployeeID.Value = luedtLeaveEmployeeID.EditValue;//employee.Id; SqlParameter rYear = new SqlParameter("@rYear", SqlDbType.Int); rYear.Value = aDate.Year; SqlParameter date = new SqlParameter("@Date", SqlDbType.DateTime); date.Value = aDate; SqlHelper.FillDataset(SqlHelperUtils.connectionString, CommandType.Text, strSQL, _ds, new string[] {"table"}, nEmployeeID, rYear, date); aAcmsRosterHeader.dtRosterDetail = _ds.Tables["table"]; aAcmsRosterHeader.init(false, aDate.Year.ToString(), Ultis.WeekNumber(aDate).ToString()); }
///<summary> /// Refactored from AddLeave ///</summary> private void SetLeaveColor(ACMSRosterHeader acmsRosterHeader, DataRow row) { DateTime dtStartTime = Convert.ToDateTime(row["dtStartTime"]); DateTime dtEndTime = Convert.ToDateTime(row["dtEndTime"]); DateTime dtStartDate = dtStartTime.Date; DateTime dtEndDate = dtEndTime.Date; int startWeekDay = (int)dtStartTime.DayOfWeek; int endWeekDay = (int)dtEndTime.DayOfWeek; bool isTimeOff = row["fTimeOff"] == DBNull.Value ? false : System.Convert.ToBoolean(row["fTimeOff"]); int nStatusID = Convert.ToInt32(row["nStatusID"]); bool isHalfDay = ACMS.Convert.ToBoolean(row["fFullDay"]) ? false : true; if (acmsRosterHeader.dateSun >= dtStartDate && acmsRosterHeader.dateSun <= dtEndDate) { acmsRosterHeader.ACMSRosterDetails1.panelSUN.BackColor = LeaveColor(isTimeOff, nStatusID, isHalfDay); acmsRosterHeader.ACMSRosterDetails1.NLeaveIDSun = Convert.ToInt32(row["nLeaveID"]); } if (acmsRosterHeader.dateMon >= dtStartDate && acmsRosterHeader.dateMon <= dtEndDate) { acmsRosterHeader.ACMSRosterDetails1.panelMON.BackColor = LeaveColor(isTimeOff, nStatusID, isHalfDay); acmsRosterHeader.ACMSRosterDetails1.NLeaveIDMon = Convert.ToInt32(row["nLeaveID"]); } if (acmsRosterHeader.dateTue >= dtStartDate && acmsRosterHeader.dateTue <= dtEndDate) { acmsRosterHeader.ACMSRosterDetails1.panelTUE.BackColor = LeaveColor(isTimeOff, nStatusID, isHalfDay); acmsRosterHeader.ACMSRosterDetails1.NLeaveIDTue = Convert.ToInt32(row["nLeaveID"]); } if (acmsRosterHeader.dateWed >= dtStartDate && acmsRosterHeader.dateWed <= dtEndDate) { acmsRosterHeader.ACMSRosterDetails1.panelWED.BackColor = LeaveColor(isTimeOff, nStatusID, isHalfDay); acmsRosterHeader.ACMSRosterDetails1.NLeaveIDWed = Convert.ToInt32(row["nLeaveID"]); } if (acmsRosterHeader.dateThu >= dtStartDate && acmsRosterHeader.dateThu <= dtEndDate) { acmsRosterHeader.ACMSRosterDetails1.panelTHU.BackColor = LeaveColor(isTimeOff, nStatusID, isHalfDay); acmsRosterHeader.ACMSRosterDetails1.NLeaveIDThu = Convert.ToInt32(row["nLeaveID"]); } if (acmsRosterHeader.dateFri >= dtStartDate && acmsRosterHeader.dateFri <= dtEndDate) { acmsRosterHeader.ACMSRosterDetails1.panelFRI.BackColor = LeaveColor(isTimeOff, nStatusID, isHalfDay); acmsRosterHeader.ACMSRosterDetails1.NLeaveIDFri = Convert.ToInt32(row["nLeaveID"]); } if (acmsRosterHeader.dateSat >= dtStartDate && acmsRosterHeader.dateSat <= dtEndDate) { acmsRosterHeader.ACMSRosterDetails1.panelSAT.BackColor = LeaveColor(isTimeOff, nStatusID, isHalfDay); acmsRosterHeader.ACMSRosterDetails1.NLeaveIDSat = Convert.ToInt32(row["nLeaveID"]); } }
private void InitializeComponent() { this.components = new System.ComponentModel.Container(); System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmStaff)); 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.MenuItemChangePassword = new System.Windows.Forms.MenuItem(); this.MenuItemBlockMembershipID = new System.Windows.Forms.MenuItem(); this.MenuItemResetMembershipID = 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.Bar1 = new DevExpress.XtraBars.Bar(); this.BarManager1 = new DevExpress.XtraBars.BarManager(this.components); this.Bar2 = new DevExpress.XtraBars.Bar(); this.bbiClose = new DevExpress.XtraBars.BarButtonItem(); this.barbtnTimeCard = new DevExpress.XtraBars.BarButtonItem(); this.barstaticCurrentLogin = new DevExpress.XtraBars.BarStaticItem(); 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.barButtonItem1 = new DevExpress.XtraBars.BarButtonItem(); this.barbtnClose = new DevExpress.XtraBars.BarButtonItem(); this.tabStaff = new DevExpress.XtraTab.XtraTabControl(); this.tabStaffOne = new DevExpress.XtraTab.XtraTabPage(); this.lblOne_2 = new DevExpress.XtraEditors.SimpleButton(); this.luedtMemoEmployeeID = new DevExpress.XtraEditors.LookUpEdit(); this.lblMemoEmployeeID = new System.Windows.Forms.Label(); this.groupMessages = new DevExpress.XtraEditors.GroupControl(); this.lblmnuMessagesReceipient = new System.Windows.Forms.Label(); this.lblmnuMessagesFollowUpAction = new System.Windows.Forms.Label(); this.lblmnuMessagesMemoInfo = new System.Windows.Forms.Label(); this.groupMessagesEntry = new DevExpress.XtraEditors.GroupControl(); this.cbViewMemo = new DevExpress.XtraEditors.ComboBoxEdit(); this.sbtnMemoUnpost = new DevExpress.XtraEditors.SimpleButton(); this.sbtnMemoPrint = new DevExpress.XtraEditors.SimpleButton(); this.sbtnMemoNew = new DevExpress.XtraEditors.SimpleButton(); this.gctrMemo = new DevExpress.XtraGrid.GridControl(); this.gvMemo = new DevExpress.XtraGrid.Views.Grid.GridView(); this.colnMemoID = new DevExpress.XtraGrid.Columns.GridColumn(); this.colPostUpdateDateTime = new DevExpress.XtraGrid.Columns.GridColumn(); this.colAuthorID = new DevExpress.XtraGrid.Columns.GridColumn(); this.colAuthor = new DevExpress.XtraGrid.Columns.GridColumn(); this.colTitle = new DevExpress.XtraGrid.Columns.GridColumn(); this.colRead = new DevExpress.XtraGrid.Columns.GridColumn(); this.repositoryItemCheckEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit(); this.groupMessagesFollowUpAction = new DevExpress.XtraEditors.GroupControl(); this.GroupControl4 = new DevExpress.XtraEditors.GroupControl(); this.sbtnRepliesDelete = new DevExpress.XtraEditors.SimpleButton(); this.sbtnRepliesView = new DevExpress.XtraEditors.SimpleButton(); this.sbtnRepliesUpdate = new DevExpress.XtraEditors.SimpleButton(); this.sbtnRepliesAdd = new DevExpress.XtraEditors.SimpleButton(); this.gctrReplies = new DevExpress.XtraGrid.GridControl(); this.gvReplies = new DevExpress.XtraGrid.Views.Grid.GridView(); this.colReplyDate = new DevExpress.XtraGrid.Columns.GridColumn(); this.colReplyEmployeeID = new DevExpress.XtraGrid.Columns.GridColumn(); this.colReplyEmployeeName = new DevExpress.XtraGrid.Columns.GridColumn(); this.colReplyMessage = new DevExpress.XtraGrid.Columns.GridColumn(); this.groupMessagesMemoInfo = new DevExpress.XtraEditors.GroupControl(); this.GroupControl8 = new DevExpress.XtraEditors.GroupControl(); this.sbtnUpdate = new DevExpress.XtraEditors.SimpleButton(); this.memoedtMessage = new DevExpress.XtraEditors.MemoEdit(); this.Label37 = new System.Windows.Forms.Label(); this.groupMessagesReceipient = new DevExpress.XtraEditors.GroupControl(); this.GroupControl6 = new DevExpress.XtraEditors.GroupControl(); this.cbMemoReceipient = new DevExpress.XtraEditors.ComboBoxEdit(); this.sbtnReceipientDelete = new DevExpress.XtraEditors.SimpleButton(); this.sbtnReceipientNew = new DevExpress.XtraEditors.SimpleButton(); this.gctrReceipient = new DevExpress.XtraGrid.GridControl(); this.gvReceipient = new DevExpress.XtraGrid.Views.Grid.GridView(); this.colRecipientType = new DevExpress.XtraGrid.Columns.GridColumn(); this.colRecipient = new DevExpress.XtraGrid.Columns.GridColumn(); this.colRecipientID = new DevExpress.XtraGrid.Columns.GridColumn(); this.groupReceipientGroup = new DevExpress.XtraEditors.GroupControl(); this.groupReceipientGroupEntry = new DevExpress.XtraEditors.GroupControl(); this.sbtnRecpGrpDelete = new DevExpress.XtraEditors.SimpleButton(); this.sbtnRecpGrpEdit = new DevExpress.XtraEditors.SimpleButton(); this.sbtnRecpGrpNew = new DevExpress.XtraEditors.SimpleButton(); this.gctrRecpGrp = new DevExpress.XtraGrid.GridControl(); this.gvRecpGrp = new DevExpress.XtraGrid.Views.Grid.GridView(); this.colReceipientGroupID = new DevExpress.XtraGrid.Columns.GridColumn(); this.colReceipientGroupCode = new DevExpress.XtraGrid.Columns.GridColumn(); this.colDescription = new DevExpress.XtraGrid.Columns.GridColumn(); this.groupReceipientGroupReceipientEntries = new DevExpress.XtraEditors.GroupControl(); this.GroupControl10 = new DevExpress.XtraEditors.GroupControl(); this.sbtnRecpEntryDelete = new DevExpress.XtraEditors.SimpleButton(); this.sbtnRecpEntryNew = new DevExpress.XtraEditors.SimpleButton(); this.gctrRecpEntry = new DevExpress.XtraGrid.GridControl(); this.gvRecpEntry = new DevExpress.XtraGrid.Views.Grid.GridView(); this.colEmployeeID = new DevExpress.XtraGrid.Columns.GridColumn(); this.colEmployeeName = new DevExpress.XtraGrid.Columns.GridColumn(); this.lblOne_1 = new DevExpress.XtraEditors.SimpleButton(); this.tabStaffTwo = new DevExpress.XtraTab.XtraTabPage(); this.groupService = new DevExpress.XtraEditors.GroupControl(); this.groupServiceEntry = new DevExpress.XtraEditors.GroupControl(); this.groupControl3 = new DevExpress.XtraEditors.GroupControl(); this.luedtCommissionServiceBranch = new DevExpress.XtraEditors.LookUpEdit(); this.label30 = new System.Windows.Forms.Label(); this.cbServiceYear = new DevExpress.XtraEditors.ComboBoxEdit(); this.label5 = new System.Windows.Forms.Label(); this.label3 = new System.Windows.Forms.Label(); this.label2 = new System.Windows.Forms.Label(); this.cbServiceMonth = new DevExpress.XtraEditors.ComboBoxEdit(); this.cbServiceServiceType = new DevExpress.XtraEditors.ComboBoxEdit(); this.sbtnServiceInquiry = new DevExpress.XtraEditors.SimpleButton(); this.gctrService = new DevExpress.XtraGrid.GridControl(); this.gvService = new DevExpress.XtraGrid.Views.Grid.GridView(); this.colServicedtDate = new DevExpress.XtraGrid.Columns.GridColumn(); this.colServicestrBranchCode = new DevExpress.XtraGrid.Columns.GridColumn(); this.colServicestrMembershipID = new DevExpress.XtraGrid.Columns.GridColumn(); this.colServicestrServiceCode = new DevExpress.XtraGrid.Columns.GridColumn(); this.colServicestrCommission = new DevExpress.XtraGrid.Columns.GridColumn(); this.lblTwo_1 = new DevExpress.XtraEditors.SimpleButton(); this.lblTwo_2 = new DevExpress.XtraEditors.SimpleButton(); this.groupSales = new DevExpress.XtraEditors.GroupControl(); this.groupSalesEntry = new DevExpress.XtraEditors.GroupControl(); this.groupControl7 = new DevExpress.XtraEditors.GroupControl(); this.luedtSalesBranchCode = new DevExpress.XtraEditors.LookUpEdit(); this.label16 = new System.Windows.Forms.Label(); this.cbSalesYear = new DevExpress.XtraEditors.ComboBoxEdit(); this.label6 = new System.Windows.Forms.Label(); this.label7 = new System.Windows.Forms.Label(); this.label8 = new System.Windows.Forms.Label(); this.cbSalesMonth = new DevExpress.XtraEditors.ComboBoxEdit(); this.sbtnSalesInquiry = new DevExpress.XtraEditors.SimpleButton(); this.cbSalesType = new DevExpress.XtraEditors.ComboBoxEdit(); this.gctrSales = new DevExpress.XtraGrid.GridControl(); this.gvSales = new DevExpress.XtraGrid.Views.Grid.GridView(); this.colSalesDate = new DevExpress.XtraGrid.Columns.GridColumn(); this.colSalesReceipt = new DevExpress.XtraGrid.Columns.GridColumn(); this.colSalesMembershipID = new DevExpress.XtraGrid.Columns.GridColumn(); this.colSalesNettAmount = new DevExpress.XtraGrid.Columns.GridColumn(); this.tabStaffThree = new DevExpress.XtraTab.XtraTabPage(); this.lblThree_3 = new DevExpress.XtraEditors.SimpleButton(); this.lblThree_1 = new DevExpress.XtraEditors.SimpleButton(); this.lblThree_2 = new DevExpress.XtraEditors.SimpleButton(); this.groupTimesheet = new DevExpress.XtraEditors.GroupControl(); this.groupTimesheetEntry = new DevExpress.XtraEditors.GroupControl(); this.groupControl9 = new DevExpress.XtraEditors.GroupControl(); this.cbTimesheetYear = new DevExpress.XtraEditors.ComboBoxEdit(); this.label1 = new System.Windows.Forms.Label(); this.label11 = new System.Windows.Forms.Label(); this.cbTimesheetMonth = new DevExpress.XtraEditors.ComboBoxEdit(); this.sbtnTimesheetInquiry = new DevExpress.XtraEditors.SimpleButton(); this.gridctrTimesheet = new DevExpress.XtraGrid.GridControl(); this.gvTimesheet = new DevExpress.XtraGrid.Views.Grid.GridView(); this.colTimesheetDate = new DevExpress.XtraGrid.Columns.GridColumn(); this.colTimesheetRosterIn = new DevExpress.XtraGrid.Columns.GridColumn(); this.colTimesheetRosterOut = new DevExpress.XtraGrid.Columns.GridColumn(); this.colTimesheetBranchFirstTimeIn = new DevExpress.XtraGrid.Columns.GridColumn(); this.colTimesheetBranchLastTimeOut = new DevExpress.XtraGrid.Columns.GridColumn(); this.colTimesheetFirstTimeIn = new DevExpress.XtraGrid.Columns.GridColumn(); this.colTimesheetLastTimeOut = new DevExpress.XtraGrid.Columns.GridColumn(); this.colTimesheetManagerNameIn = new DevExpress.XtraGrid.Columns.GridColumn(); this.colTimesheetManagerNameOut = new DevExpress.XtraGrid.Columns.GridColumn(); this.colTimesheetLateness = new DevExpress.XtraGrid.Columns.GridColumn(); this.repositoryItemCheckEdit2 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit(); this.colTimesheetTotalLateness = new DevExpress.XtraGrid.Columns.GridColumn(); this.groupOvertime = new DevExpress.XtraEditors.GroupControl(); this.groupControl15 = new DevExpress.XtraEditors.GroupControl(); this.sbtnOvertimeDelete = new DevExpress.XtraEditors.SimpleButton(); this.groupControl16 = new DevExpress.XtraEditors.GroupControl(); this.cbOvertimeYear = new DevExpress.XtraEditors.ComboBoxEdit(); this.label14 = new System.Windows.Forms.Label(); this.label15 = new System.Windows.Forms.Label(); this.cbOvertimeMonth = new DevExpress.XtraEditors.ComboBoxEdit(); this.sbtnOvertimeInquiry = new DevExpress.XtraEditors.SimpleButton(); this.sbtnApplyOvertime = new DevExpress.XtraEditors.SimpleButton(); this.gridctrOvertime = new DevExpress.XtraGrid.GridControl(); this.gvOvertime = new DevExpress.XtraGrid.Views.Grid.GridView(); this.colOvertimeDate = new DevExpress.XtraGrid.Columns.GridColumn(); this.colOvertimeHours = new DevExpress.XtraGrid.Columns.GridColumn(); this.colOvertimeReason = new DevExpress.XtraGrid.Columns.GridColumn(); this.colOvertimeCharging = new DevExpress.XtraGrid.Columns.GridColumn(); this.colOvertimeManager = new DevExpress.XtraGrid.Columns.GridColumn(); this.colOvertimeApprovingManagerID = new DevExpress.XtraGrid.Columns.GridColumn(); this.colOvertimeStatus = new DevExpress.XtraGrid.Columns.GridColumn(); this.groupLateness = new DevExpress.XtraEditors.GroupControl(); this.groupControl13 = new DevExpress.XtraEditors.GroupControl(); this.groupControl14 = new DevExpress.XtraEditors.GroupControl(); this.cbLatenessYear = new DevExpress.XtraEditors.ComboBoxEdit(); this.label12 = new System.Windows.Forms.Label(); this.label13 = new System.Windows.Forms.Label(); this.cbLatenessMonth = new DevExpress.XtraEditors.ComboBoxEdit(); this.sbtnLatenessInquiry = new DevExpress.XtraEditors.SimpleButton(); this.gridctrLateness = new DevExpress.XtraGrid.GridControl(); this.gvLateness = new DevExpress.XtraGrid.Views.Grid.GridView(); this.colLatenessRosterID = new DevExpress.XtraGrid.Columns.GridColumn(); this.colLatenessDate = new DevExpress.XtraGrid.Columns.GridColumn(); this.colLatenessBranch = new DevExpress.XtraGrid.Columns.GridColumn(); this.colLatenessType = new DevExpress.XtraGrid.Columns.GridColumn(); this.colLatenessExpected = new DevExpress.XtraGrid.Columns.GridColumn(); this.repositoryItemTimeEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemTimeEdit(); this.colLatenessActual = new DevExpress.XtraGrid.Columns.GridColumn(); this.repositoryItemTimeEdit2 = new DevExpress.XtraEditors.Repository.RepositoryItemTimeEdit(); this.colLatenessLateness = new DevExpress.XtraGrid.Columns.GridColumn(); this.tabStaffFour = new DevExpress.XtraTab.XtraTabPage(); this.lblFour_2 = new DevExpress.XtraEditors.SimpleButton(); this.lblFour_1 = new DevExpress.XtraEditors.SimpleButton(); this.groupAppointment = new DevExpress.XtraEditors.GroupControl(); this.groupAppointmentEntry = new DevExpress.XtraEditors.GroupControl(); this.groupControl12 = new DevExpress.XtraEditors.GroupControl(); this.cbAppointmentYear = new DevExpress.XtraEditors.ComboBoxEdit(); this.label26 = new System.Windows.Forms.Label(); this.label27 = new System.Windows.Forms.Label(); this.cbAppointmentMonth = new DevExpress.XtraEditors.ComboBoxEdit(); this.sbtnAppointmentInquiry = new DevExpress.XtraEditors.SimpleButton(); this.sbtnAppointmentDelete = new DevExpress.XtraEditors.SimpleButton(); this.sbtnAppointmentPrint = new DevExpress.XtraEditors.SimpleButton(); this.sbtnAppointmentEdit = new DevExpress.XtraEditors.SimpleButton(); this.sbtnAppointmentNew = new DevExpress.XtraEditors.SimpleButton(); this.gridctrAppointment = new DevExpress.XtraGrid.GridControl(); this.gvAppointment = new DevExpress.XtraGrid.Views.Grid.GridView(); this.colAppointmentDate = new DevExpress.XtraGrid.Columns.GridColumn(); this.colAppointmentStartDate = new DevExpress.XtraGrid.Columns.GridColumn(); this.colAppointmentEndDate = new DevExpress.XtraGrid.Columns.GridColumn(); this.colAppointmentOrganization = new DevExpress.XtraGrid.Columns.GridColumn(); this.colAppointmentContact = new DevExpress.XtraGrid.Columns.GridColumn(); this.colAppointmentTypeID = new DevExpress.XtraGrid.Columns.GridColumn(); this.colAppointmentRemarks = new DevExpress.XtraGrid.Columns.GridColumn(); this.groupContact = new DevExpress.XtraEditors.GroupControl(); this.groupContactEntry = new DevExpress.XtraEditors.GroupControl(); this.sbtnContactEdit = new DevExpress.XtraEditors.SimpleButton(); this.sbtnContactDelete = new DevExpress.XtraEditors.SimpleButton(); this.sbtnContactNew = new DevExpress.XtraEditors.SimpleButton(); this.gridctrContact = new DevExpress.XtraGrid.GridControl(); this.gvContact = new DevExpress.XtraGrid.Views.Grid.GridView(); this.colContactPerson = new DevExpress.XtraGrid.Columns.GridColumn(); this.colContactOrganization = new DevExpress.XtraGrid.Columns.GridColumn(); this.colContactMobile = new DevExpress.XtraGrid.Columns.GridColumn(); this.colContactOfficeNo = new DevExpress.XtraGrid.Columns.GridColumn(); this.colContactEmail = new DevExpress.XtraGrid.Columns.GridColumn(); this.colContactFax = new DevExpress.XtraGrid.Columns.GridColumn(); this.colContactAddress = new DevExpress.XtraGrid.Columns.GridColumn(); this.tabStaffFive = new DevExpress.XtraTab.XtraTabPage(); this.groupCustomerVoice = new DevExpress.XtraEditors.GroupControl(); this.lblmnuCustomerVoiceActionHistory = new System.Windows.Forms.Label(); this.lblmnuCustomerVoiceCVDetails = new System.Windows.Forms.Label(); this.GroupControl24 = new DevExpress.XtraEditors.GroupControl(); this.luedtCVSubmitter = new DevExpress.XtraEditors.LookUpEdit(); this.sbtnAssign = new DevExpress.XtraEditors.SimpleButton(); this.sbtnCVPrint = new DevExpress.XtraEditors.SimpleButton(); this.sbtnCVEdit = new DevExpress.XtraEditors.SimpleButton(); this.sbtnCVDelete = new DevExpress.XtraEditors.SimpleButton(); this.sbtnCVNew = new DevExpress.XtraEditors.SimpleButton(); this.cbListCV = new DevExpress.XtraEditors.ComboBoxEdit(); this.gctrCV = new DevExpress.XtraGrid.GridControl(); this.gvCV = new DevExpress.XtraGrid.Views.Grid.GridView(); this.colRefNo = new DevExpress.XtraGrid.Columns.GridColumn(); this.colDtReceived = new DevExpress.XtraGrid.Columns.GridColumn(); this.colBranch = new DevExpress.XtraGrid.Columns.GridColumn(); this.colMembershipID = new DevExpress.XtraGrid.Columns.GridColumn(); this.colMemberName = new DevExpress.XtraGrid.Columns.GridColumn(); this.colDepartment = new DevExpress.XtraGrid.Columns.GridColumn(); this.colType = new DevExpress.XtraGrid.Columns.GridColumn(); this.colCategory = new DevExpress.XtraGrid.Columns.GridColumn(); this.colSubject = new DevExpress.XtraGrid.Columns.GridColumn(); this.colSubmittedBy = new DevExpress.XtraGrid.Columns.GridColumn(); this.colStaffSubject = new DevExpress.XtraGrid.Columns.GridColumn(); this.colDepartmentAssignedTo = new DevExpress.XtraGrid.Columns.GridColumn(); this.colLastUpdatedDate = new DevExpress.XtraGrid.Columns.GridColumn(); this.colStatus = new DevExpress.XtraGrid.Columns.GridColumn(); this.label17 = new System.Windows.Forms.Label(); this.luedtCVAssignTo = new DevExpress.XtraEditors.LookUpEdit(); this.lblCVSubmitter = new System.Windows.Forms.Label(); this.groupCustomerVoiceActionHistory = new DevExpress.XtraEditors.GroupControl(); this.GroupControl26 = new DevExpress.XtraEditors.GroupControl(); this.sbtnNewCVAction = new DevExpress.XtraEditors.SimpleButton(); this.gctrCVAction = new DevExpress.XtraGrid.GridControl(); this.gvCVAction = new DevExpress.XtraGrid.Views.Grid.GridView(); this.colActionID = new DevExpress.XtraGrid.Columns.GridColumn(); this.coldtDate = new DevExpress.XtraGrid.Columns.GridColumn(); this.coldtTime = new DevExpress.XtraGrid.Columns.GridColumn(); this.colMode = new DevExpress.XtraGrid.Columns.GridColumn(); this.colActionDetail = new DevExpress.XtraGrid.Columns.GridColumn(); this.colActionTakenBy = new DevExpress.XtraGrid.Columns.GridColumn(); this.colActionTakenByID = new DevExpress.XtraGrid.Columns.GridColumn(); this.groupCustomerVoiceCVDetails = new DevExpress.XtraEditors.GroupControl(); this.GroupControl28 = new DevExpress.XtraEditors.GroupControl(); this.txtHomeNo = new DevExpress.XtraEditors.TextEdit(); this.label31 = new System.Windows.Forms.Label(); this.txtEmail = new DevExpress.XtraEditors.TextEdit(); this.label10 = new System.Windows.Forms.Label(); this.txtContactNo = new DevExpress.XtraEditors.TextEdit(); this.label9 = new System.Windows.Forms.Label(); this.memoeditSummaryCV = new DevExpress.XtraEditors.MemoEdit(); this.Label32 = new System.Windows.Forms.Label(); this.tabStaffSix = new DevExpress.XtraTab.XtraTabPage(); this.groupControl1 = new DevExpress.XtraEditors.GroupControl(); this.lblSix_2 = new DevExpress.XtraEditors.SimpleButton(); this.lblSix_1 = new DevExpress.XtraEditors.SimpleButton(); this.groupLeave = new DevExpress.XtraEditors.GroupControl(); this.groupLeaveLeaveDetails = new DevExpress.XtraEditors.GroupControl(); this.groupControl11 = new DevExpress.XtraEditors.GroupControl(); this.cbLeaveStatus = new DevExpress.XtraEditors.ComboBoxEdit(); this.label35 = new System.Windows.Forms.Label(); this.txtLeaveEntitlement = new DevExpress.XtraEditors.TextEdit(); this.label34 = new System.Windows.Forms.Label(); this.dateedtLeaveJoinDate = new DevExpress.XtraEditors.DateEdit(); this.label33 = new System.Windows.Forms.Label(); this.sbtnLeaveEdit = new DevExpress.XtraEditors.SimpleButton(); this.sbtnLeaveDelete = new DevExpress.XtraEditors.SimpleButton(); this.sbtnLeaveApply = new DevExpress.XtraEditors.SimpleButton(); this.gridctrLeaveDetail = new DevExpress.XtraGrid.GridControl(); this.gvLeave = new DevExpress.XtraGrid.Views.Grid.GridView(); this.colLeaveStartDate = new DevExpress.XtraGrid.Columns.GridColumn(); this.colLeaveStartTime = new DevExpress.XtraGrid.Columns.GridColumn(); this.colLeaveEndTime = new DevExpress.XtraGrid.Columns.GridColumn(); this.gridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn(); this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn(); this.nLeaveQuantity = new DevExpress.XtraGrid.Columns.GridColumn(); this.nUnpaidLeave = new DevExpress.XtraGrid.Columns.GridColumn(); this.colLeaveTimeOff = new DevExpress.XtraGrid.Columns.GridColumn(); this.colfFullDay = new DevExpress.XtraGrid.Columns.GridColumn(); this.colLeaveLeaveType = new DevExpress.XtraGrid.Columns.GridColumn(); this.colLeaveReason = new DevExpress.XtraGrid.Columns.GridColumn(); this.colLeaveLeaveStatus = new DevExpress.XtraGrid.Columns.GridColumn(); this.colLeaveApprovingManager = new DevExpress.XtraGrid.Columns.GridColumn(); this.cbLeaveNYearID = new DevExpress.XtraEditors.ComboBoxEdit(); this.lblNYearID = new System.Windows.Forms.Label(); this.groupLeaveLeaveBalance = new DevExpress.XtraEditors.GroupControl(); this.groupControl5 = new DevExpress.XtraEditors.GroupControl(); this.btnConvert = new System.Windows.Forms.Button(); this.txtDaysConvert = new System.Windows.Forms.TextBox(); this.label36 = new System.Windows.Forms.Label(); this.btnAdjust = new System.Windows.Forms.Button(); this.txtLeaveAdjust = new System.Windows.Forms.TextBox(); this.label29 = new System.Windows.Forms.Label(); this.sbtnLeaveBalanceInquiry = new DevExpress.XtraEditors.SimpleButton(); this.label25 = new System.Windows.Forms.Label(); this.cbLeaveBalance = new DevExpress.XtraEditors.ComboBoxEdit(); this.gridctrLeaveBalance = new DevExpress.XtraGrid.GridControl(); this.gvLeaveBalance = new DevExpress.XtraGrid.Views.Grid.GridView(); this.colLeaveBalanceDate = new DevExpress.XtraGrid.Columns.GridColumn(); this.colLeaveBalanceTransaction = new DevExpress.XtraGrid.Columns.GridColumn(); this.colLeaveBalanceStatus = new DevExpress.XtraGrid.Columns.GridColumn(); this.colLeaveBalanceNoOfDays = new DevExpress.XtraGrid.Columns.GridColumn(); this.groupLeaveRoster = new DevExpress.XtraEditors.GroupControl(); this.groupControl2 = new DevExpress.XtraEditors.GroupControl(); this.label23 = new System.Windows.Forms.Label(); this.label24 = new System.Windows.Forms.Label(); this.label21 = new System.Windows.Forms.Label(); this.label22 = new System.Windows.Forms.Label(); this.label19 = new System.Windows.Forms.Label(); this.label20 = new System.Windows.Forms.Label(); this.label18 = new System.Windows.Forms.Label(); this.label4 = new System.Windows.Forms.Label(); this.panelControl1 = new DevExpress.XtraEditors.PanelControl(); this.acmsRosterHeader6 = new ACMS.Control.ACMSRosterHeader(); this.acmsRosterHeader5 = new ACMS.Control.ACMSRosterHeader(); this.acmsRosterHeader4 = new ACMS.Control.ACMSRosterHeader(); this.acmsRosterHeader3 = new ACMS.Control.ACMSRosterHeader(); this.acmsRosterHeader2 = new ACMS.Control.ACMSRosterHeader(); this.acmsRosterHeader1 = new ACMS.Control.ACMSRosterHeader(); this.sbtnLeaveNextMonth = new DevExpress.XtraEditors.SimpleButton(); this.sbtnLeavePreviousMonth = new DevExpress.XtraEditors.SimpleButton(); this.luedtLeaveEmployeeID = new DevExpress.XtraEditors.LookUpEdit(); this.lblLeaveEmployeeID = new System.Windows.Forms.Label(); this.tabStaffSeven = new DevExpress.XtraTab.XtraTabPage(); this.groupControl17 = new DevExpress.XtraEditors.GroupControl(); this.tabStaffEight = new DevExpress.XtraTab.XtraTabPage(); this.xtraTabControl1 = new DevExpress.XtraTab.XtraTabControl(); this.xtraTabPage1 = new DevExpress.XtraTab.XtraTabPage(); this.memoEdit2 = new DevExpress.XtraEditors.MemoEdit(); this.labelControl1 = new DevExpress.XtraEditors.LabelControl(); this.xtraTabPage2 = new DevExpress.XtraTab.XtraTabPage(); this.lookUpEdit4 = new DevExpress.XtraEditors.LookUpEdit(); this.label40 = new System.Windows.Forms.Label(); this.lookUpEdit3 = new DevExpress.XtraEditors.LookUpEdit(); this.label39 = new System.Windows.Forms.Label(); this.lookUpEdit2 = new DevExpress.XtraEditors.LookUpEdit(); this.label38 = new System.Windows.Forms.Label(); this.lookUpEdit1 = new DevExpress.XtraEditors.LookUpEdit(); this.label28 = new System.Windows.Forms.Label(); this.xtraTabPage3 = new DevExpress.XtraTab.XtraTabPage(); this.groupControl18 = new DevExpress.XtraEditors.GroupControl(); this.timer1 = new System.Windows.Forms.Timer(this.components); ((System.ComponentModel.ISupportInitialize)(this.BarManager1)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.BarAndDockingController1)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.tabStaff)).BeginInit(); this.tabStaff.SuspendLayout(); this.tabStaffOne.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.luedtMemoEmployeeID.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.groupMessages)).BeginInit(); this.groupMessages.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.groupMessagesEntry)).BeginInit(); this.groupMessagesEntry.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.cbViewMemo.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.gctrMemo)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.gvMemo)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.groupMessagesFollowUpAction)).BeginInit(); this.groupMessagesFollowUpAction.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.GroupControl4)).BeginInit(); this.GroupControl4.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.gctrReplies)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.gvReplies)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.groupMessagesMemoInfo)).BeginInit(); this.groupMessagesMemoInfo.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.GroupControl8)).BeginInit(); this.GroupControl8.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.memoedtMessage.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.groupMessagesReceipient)).BeginInit(); this.groupMessagesReceipient.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.GroupControl6)).BeginInit(); this.GroupControl6.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.cbMemoReceipient.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.gctrReceipient)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.gvReceipient)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.groupReceipientGroup)).BeginInit(); this.groupReceipientGroup.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.groupReceipientGroupEntry)).BeginInit(); this.groupReceipientGroupEntry.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.gctrRecpGrp)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.gvRecpGrp)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.groupReceipientGroupReceipientEntries)).BeginInit(); this.groupReceipientGroupReceipientEntries.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.GroupControl10)).BeginInit(); this.GroupControl10.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.gctrRecpEntry)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.gvRecpEntry)).BeginInit(); this.tabStaffTwo.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.groupService)).BeginInit(); this.groupService.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.groupServiceEntry)).BeginInit(); this.groupServiceEntry.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.groupControl3)).BeginInit(); this.groupControl3.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.luedtCommissionServiceBranch.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.cbServiceYear.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.cbServiceMonth.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.cbServiceServiceType.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.gctrService)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.gvService)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.groupSales)).BeginInit(); this.groupSales.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.groupSalesEntry)).BeginInit(); this.groupSalesEntry.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.groupControl7)).BeginInit(); this.groupControl7.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.luedtSalesBranchCode.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.cbSalesYear.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.cbSalesMonth.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.cbSalesType.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.gctrSales)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.gvSales)).BeginInit(); this.tabStaffThree.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.groupTimesheet)).BeginInit(); this.groupTimesheet.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.groupTimesheetEntry)).BeginInit(); this.groupTimesheetEntry.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.groupControl9)).BeginInit(); this.groupControl9.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.cbTimesheetYear.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.cbTimesheetMonth.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.gridctrTimesheet)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.gvTimesheet)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit2)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.groupOvertime)).BeginInit(); this.groupOvertime.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.groupControl15)).BeginInit(); this.groupControl15.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.groupControl16)).BeginInit(); this.groupControl16.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.cbOvertimeYear.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.cbOvertimeMonth.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.gridctrOvertime)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.gvOvertime)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.groupLateness)).BeginInit(); this.groupLateness.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.groupControl13)).BeginInit(); this.groupControl13.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.groupControl14)).BeginInit(); this.groupControl14.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.cbLatenessYear.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.cbLatenessMonth.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.gridctrLateness)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.gvLateness)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTimeEdit1)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTimeEdit2)).BeginInit(); this.tabStaffFour.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.groupAppointment)).BeginInit(); this.groupAppointment.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.groupAppointmentEntry)).BeginInit(); this.groupAppointmentEntry.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.groupControl12)).BeginInit(); this.groupControl12.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.cbAppointmentYear.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.cbAppointmentMonth.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.gridctrAppointment)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.gvAppointment)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.groupContact)).BeginInit(); this.groupContact.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.groupContactEntry)).BeginInit(); this.groupContactEntry.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.gridctrContact)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.gvContact)).BeginInit(); this.tabStaffFive.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.groupCustomerVoice)).BeginInit(); this.groupCustomerVoice.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.GroupControl24)).BeginInit(); this.GroupControl24.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.luedtCVSubmitter.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.cbListCV.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.gctrCV)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.gvCV)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.luedtCVAssignTo.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.groupCustomerVoiceActionHistory)).BeginInit(); this.groupCustomerVoiceActionHistory.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.GroupControl26)).BeginInit(); this.GroupControl26.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.gctrCVAction)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.gvCVAction)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.groupCustomerVoiceCVDetails)).BeginInit(); this.groupCustomerVoiceCVDetails.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.GroupControl28)).BeginInit(); this.GroupControl28.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.txtHomeNo.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.txtEmail.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.txtContactNo.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.memoeditSummaryCV.Properties)).BeginInit(); this.tabStaffSix.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit(); this.groupControl1.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.groupLeave)).BeginInit(); this.groupLeave.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.groupLeaveLeaveDetails)).BeginInit(); this.groupLeaveLeaveDetails.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.groupControl11)).BeginInit(); this.groupControl11.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.cbLeaveStatus.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.txtLeaveEntitlement.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.dateedtLeaveJoinDate.Properties.VistaTimeProperties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.dateedtLeaveJoinDate.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.gridctrLeaveDetail)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.gvLeave)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.cbLeaveNYearID.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.groupLeaveLeaveBalance)).BeginInit(); this.groupLeaveLeaveBalance.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.groupControl5)).BeginInit(); this.groupControl5.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.cbLeaveBalance.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.gridctrLeaveBalance)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.gvLeaveBalance)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.groupLeaveRoster)).BeginInit(); this.groupLeaveRoster.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).BeginInit(); this.groupControl2.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit(); this.panelControl1.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.luedtLeaveEmployeeID.Properties)).BeginInit(); this.tabStaffSeven.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.groupControl17)).BeginInit(); this.tabStaffEight.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).BeginInit(); this.xtraTabControl1.SuspendLayout(); this.xtraTabPage1.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.memoEdit2.Properties)).BeginInit(); this.xtraTabPage2.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.lookUpEdit4.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.lookUpEdit3.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.lookUpEdit2.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.lookUpEdit1.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.groupControl18)).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"; this.MenuItem2.Click += new System.EventHandler(this.MenuItem2_Click); // // MenuItem4 // this.MenuItem4.Index = 1; this.MenuItem4.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] { this.MenuItemChangePassword, this.MenuItemBlockMembershipID, this.MenuItemResetMembershipID, this.MenuItem9, this.MenuItem10}); this.MenuItem4.Text = "Tools"; // // MenuItemChangePassword // this.MenuItemChangePassword.Index = 0; this.MenuItemChangePassword.Text = "Change Password"; this.MenuItemChangePassword.Click += new System.EventHandler(this.MenuItemChangePassword_Click); // // MenuItemBlockMembershipID // this.MenuItemBlockMembershipID.Index = 1; this.MenuItemBlockMembershipID.Text = "Block Membership ID"; this.MenuItemBlockMembershipID.Click += new System.EventHandler(this.MenuItemBlockMembershipID_Click); // // MenuItemResetMembershipID // this.MenuItemResetMembershipID.Index = 2; this.MenuItemResetMembershipID.Text = "Reset Membership ID"; this.MenuItemResetMembershipID.Click += new System.EventHandler(this.MenuItemResetMembershipID_Click); // // 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"; // // Bar1 // this.Bar1.Appearance.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.Bar1.Appearance.Options.UseFont = true; this.Bar1.BarName = "bnTopBar"; this.Bar1.DockCol = 0; this.Bar1.DockRow = 0; this.Bar1.DockStyle = DevExpress.XtraBars.BarDockStyle.Top; this.Bar1.OptionsBar.MultiLine = true; this.Bar1.OptionsBar.UseWholeRow = true; this.Bar1.Text = "TopBar"; // // BarManager1 // this.BarManager1.AllowQuickCustomization = false; this.BarManager1.Bars.AddRange(new DevExpress.XtraBars.Bar[] { this.Bar2}); 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.bbiClose, this.barbtnTimeCard, this.barButtonItem1, this.barbtnClose, this.barstaticCurrentLogin}); this.BarManager1.MainMenu = this.Bar2; this.BarManager1.MaxItemId = 6; // // Bar2 // this.Bar2.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.Bar2.Appearance.Options.UseFont = true; this.Bar2.BarName = "Custom 1"; this.Bar2.DockCol = 0; this.Bar2.DockRow = 0; this.Bar2.DockStyle = DevExpress.XtraBars.BarDockStyle.Top; this.Bar2.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] { new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.PaintStyle, this.bbiClose, DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph), new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.PaintStyle, this.barbtnTimeCard, DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph), new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.PaintStyle, this.barstaticCurrentLogin, "", true, true, true, 0, null, DevExpress.XtraBars.BarItemPaintStyle.Standard)}); this.Bar2.OptionsBar.MultiLine = true; this.Bar2.OptionsBar.UseWholeRow = true; this.Bar2.Text = "Custom 1"; // // bbiClose // this.bbiClose.Caption = "Close"; this.bbiClose.Glyph = ((System.Drawing.Image)(resources.GetObject("bbiClose.Glyph"))); this.bbiClose.Id = 0; this.bbiClose.Name = "bbiClose"; this.bbiClose.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiLoginOut_ItemClick); // // barbtnTimeCard // this.barbtnTimeCard.Caption = "Time Card"; this.barbtnTimeCard.Glyph = ((System.Drawing.Image)(resources.GetObject("barbtnTimeCard.Glyph"))); this.barbtnTimeCard.Id = 1; this.barbtnTimeCard.Name = "barbtnTimeCard"; this.barbtnTimeCard.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barbtnTimeCard_ItemClick); // // barstaticCurrentLogin // this.barstaticCurrentLogin.Border = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder; this.barstaticCurrentLogin.Caption = "Current Login: {0}, {1}"; this.barstaticCurrentLogin.Id = 4; this.barstaticCurrentLogin.Name = "barstaticCurrentLogin"; this.barstaticCurrentLogin.OwnFont = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.barstaticCurrentLogin.TextAlignment = System.Drawing.StringAlignment.Near; this.barstaticCurrentLogin.UseOwnFont = true; // // BarAndDockingController1 // this.BarAndDockingController1.PaintStyleName = "WindowsXP"; // // barButtonItem1 // this.barButtonItem1.Caption = "ACMS Manager"; this.barButtonItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("barButtonItem1.Glyph"))); this.barButtonItem1.Id = 2; this.barButtonItem1.Name = "barButtonItem1"; this.barButtonItem1.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem1_ItemClick); // // barbtnClose // this.barbtnClose.Id = 5; this.barbtnClose.Name = "barbtnClose"; // // tabStaff // this.tabStaff.Cursor = System.Windows.Forms.Cursors.Arrow; this.tabStaff.Dock = System.Windows.Forms.DockStyle.Bottom; this.tabStaff.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.tabStaff.ImeMode = System.Windows.Forms.ImeMode.On; this.tabStaff.Location = new System.Drawing.Point(0, 65); this.tabStaff.LookAndFeel.UseDefaultLookAndFeel = false; this.tabStaff.Name = "tabStaff"; this.tabStaff.PaintStyleName = "Skin"; this.tabStaff.SelectedTabPage = this.tabStaffOne; this.tabStaff.Size = new System.Drawing.Size(1016, 648); this.tabStaff.TabIndex = 0; this.tabStaff.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] { this.tabStaffOne, this.tabStaffTwo, this.tabStaffThree, this.tabStaffFour, this.tabStaffFive, this.tabStaffSix, this.tabStaffSeven, this.tabStaffEight}); this.tabStaff.Text = "tabStaffMailbox"; this.tabStaff.VisibleChanged += new System.EventHandler(this.tabStaff_VisibleChanged); this.tabStaff.SelectedPageChanged += new DevExpress.XtraTab.TabPageChangedEventHandler(this.tabStaff_SelectedPageChanged); this.tabStaff.Click += new System.EventHandler(this.tabStaff_Click); // // tabStaffOne // this.tabStaffOne.Appearance.Header.Font = new System.Drawing.Font("Tahoma", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.tabStaffOne.Appearance.Header.Options.UseFont = true; this.tabStaffOne.Controls.Add(this.lblOne_2); this.tabStaffOne.Controls.Add(this.luedtMemoEmployeeID); this.tabStaffOne.Controls.Add(this.lblMemoEmployeeID); this.tabStaffOne.Controls.Add(this.groupMessages); this.tabStaffOne.Controls.Add(this.groupReceipientGroup); this.tabStaffOne.Controls.Add(this.lblOne_1); this.tabStaffOne.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.tabStaffOne.Name = "tabStaffOne"; this.tabStaffOne.Size = new System.Drawing.Size(1007, 612); this.tabStaffOne.Text = "Mailbox"; this.tabStaffOne.VisibleChanged += new System.EventHandler(this.tabStaffMailbox_VisibleChanged); // // 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(160, 8); this.lblOne_2.Name = "lblOne_2"; this.lblOne_2.Size = new System.Drawing.Size(138, 23); this.lblOne_2.TabIndex = 142; this.lblOne_2.Text = "Receipient Group"; this.lblOne_2.Click += new System.EventHandler(this.lblOne_2_Click); // // luedtMemoEmployeeID // this.luedtMemoEmployeeID.Location = new System.Drawing.Point(776, 8); this.luedtMemoEmployeeID.Name = "luedtMemoEmployeeID"; this.luedtMemoEmployeeID.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)}); this.luedtMemoEmployeeID.Size = new System.Drawing.Size(208, 20); this.luedtMemoEmployeeID.TabIndex = 33; this.luedtMemoEmployeeID.EditValueChanged += new System.EventHandler(this.luedtMemoEmployeeID_EditValueChanged); // // lblMemoEmployeeID // this.lblMemoEmployeeID.AutoSize = true; this.lblMemoEmployeeID.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.lblMemoEmployeeID.Location = new System.Drawing.Point(688, 8); this.lblMemoEmployeeID.Name = "lblMemoEmployeeID"; this.lblMemoEmployeeID.Size = new System.Drawing.Size(88, 16); this.lblMemoEmployeeID.TabIndex = 34; this.lblMemoEmployeeID.Text = "Staff Name:"; // // groupMessages // this.groupMessages.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowOnly; this.groupMessages.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder; this.groupMessages.Controls.Add(this.lblmnuMessagesReceipient); this.groupMessages.Controls.Add(this.lblmnuMessagesFollowUpAction); this.groupMessages.Controls.Add(this.lblmnuMessagesMemoInfo); this.groupMessages.Controls.Add(this.groupMessagesEntry); this.groupMessages.Controls.Add(this.groupMessagesFollowUpAction); this.groupMessages.Controls.Add(this.groupMessagesMemoInfo); this.groupMessages.Controls.Add(this.groupMessagesReceipient); this.groupMessages.Location = new System.Drawing.Point(0, 34); this.groupMessages.Name = "groupMessages"; this.groupMessages.ShowCaption = false; this.groupMessages.Size = new System.Drawing.Size(1007, 584); this.groupMessages.TabIndex = 13; this.groupMessages.Text = "GroupControl3"; // // lblmnuMessagesReceipient // this.lblmnuMessagesReceipient.AutoSize = true; this.lblmnuMessagesReceipient.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.lblmnuMessagesReceipient.Location = new System.Drawing.Point(176, 320); this.lblmnuMessagesReceipient.Name = "lblmnuMessagesReceipient"; this.lblmnuMessagesReceipient.Size = new System.Drawing.Size(83, 16); this.lblmnuMessagesReceipient.TabIndex = 2; this.lblmnuMessagesReceipient.Text = "Receipient"; this.lblmnuMessagesReceipient.Click += new System.EventHandler(this.lblmnuMessagesReceipient_Click); // // lblmnuMessagesFollowUpAction // this.lblmnuMessagesFollowUpAction.AutoSize = true; this.lblmnuMessagesFollowUpAction.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.lblmnuMessagesFollowUpAction.Location = new System.Drawing.Point(112, 320); this.lblmnuMessagesFollowUpAction.Name = "lblmnuMessagesFollowUpAction"; this.lblmnuMessagesFollowUpAction.Size = new System.Drawing.Size(62, 16); this.lblmnuMessagesFollowUpAction.TabIndex = 1; this.lblmnuMessagesFollowUpAction.Text = "Replies"; this.lblmnuMessagesFollowUpAction.Click += new System.EventHandler(this.lblmnuMessagesFollowUpAction_Click); // // lblmnuMessagesMemoInfo // this.lblmnuMessagesMemoInfo.AutoSize = true; this.lblmnuMessagesMemoInfo.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.lblmnuMessagesMemoInfo.Location = new System.Drawing.Point(24, 320); this.lblmnuMessagesMemoInfo.Name = "lblmnuMessagesMemoInfo"; this.lblmnuMessagesMemoInfo.Size = new System.Drawing.Size(79, 16); this.lblmnuMessagesMemoInfo.TabIndex = 0; this.lblmnuMessagesMemoInfo.Text = "Memo Info"; this.lblmnuMessagesMemoInfo.Click += new System.EventHandler(this.lblmnuMessagesMemoInfo_Click); // // groupMessagesEntry // this.groupMessagesEntry.Appearance.BackColor = System.Drawing.SystemColors.Control; this.groupMessagesEntry.Appearance.Options.UseBackColor = true; this.groupMessagesEntry.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowOnly; this.groupMessagesEntry.Controls.Add(this.cbViewMemo); this.groupMessagesEntry.Controls.Add(this.sbtnMemoUnpost); this.groupMessagesEntry.Controls.Add(this.sbtnMemoPrint); this.groupMessagesEntry.Controls.Add(this.sbtnMemoNew); this.groupMessagesEntry.Controls.Add(this.gctrMemo); this.groupMessagesEntry.Location = new System.Drawing.Point(8, 0); this.groupMessagesEntry.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003; this.groupMessagesEntry.LookAndFeel.UseDefaultLookAndFeel = false; this.groupMessagesEntry.Name = "groupMessagesEntry"; this.groupMessagesEntry.Size = new System.Drawing.Size(992, 312); this.groupMessagesEntry.TabIndex = 1; this.groupMessagesEntry.Text = "MESSAGES"; // // cbViewMemo // this.cbViewMemo.EditValue = "All"; this.cbViewMemo.ImeMode = System.Windows.Forms.ImeMode.On; this.cbViewMemo.Location = new System.Drawing.Point(16, 32); this.cbViewMemo.Name = "cbViewMemo"; this.cbViewMemo.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)}); this.cbViewMemo.Properties.Items.AddRange(new object[] { "All", "Personal Email", "Branch Bulletin", "Sent Memo"}); this.cbViewMemo.Properties.PopupSizeable = true; this.cbViewMemo.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor; this.cbViewMemo.Size = new System.Drawing.Size(136, 20); this.cbViewMemo.TabIndex = 0; this.cbViewMemo.SelectedIndexChanged += new System.EventHandler(this.cbViewMemo_SelectedIndexChanged); // // sbtnMemoUnpost // this.sbtnMemoUnpost.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold); this.sbtnMemoUnpost.Appearance.Options.UseFont = true; this.sbtnMemoUnpost.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple; this.sbtnMemoUnpost.Location = new System.Drawing.Point(320, 32); this.sbtnMemoUnpost.Name = "sbtnMemoUnpost"; this.sbtnMemoUnpost.Size = new System.Drawing.Size(72, 20); this.sbtnMemoUnpost.TabIndex = 3; this.sbtnMemoUnpost.Text = "Unpost"; this.sbtnMemoUnpost.Click += new System.EventHandler(this.sbtnMemoUnpost_Click); // // sbtnMemoPrint // this.sbtnMemoPrint.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold); this.sbtnMemoPrint.Appearance.Options.UseFont = true; this.sbtnMemoPrint.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple; this.sbtnMemoPrint.Location = new System.Drawing.Point(240, 32); this.sbtnMemoPrint.Name = "sbtnMemoPrint"; this.sbtnMemoPrint.Size = new System.Drawing.Size(72, 20); this.sbtnMemoPrint.TabIndex = 2; this.sbtnMemoPrint.Text = "Print"; this.sbtnMemoPrint.Click += new System.EventHandler(this.sbtnMemoPrint_Click); // // sbtnMemoNew // this.sbtnMemoNew.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold); this.sbtnMemoNew.Appearance.Options.UseFont = true; this.sbtnMemoNew.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple; this.sbtnMemoNew.Location = new System.Drawing.Point(160, 32); this.sbtnMemoNew.Name = "sbtnMemoNew"; this.sbtnMemoNew.Size = new System.Drawing.Size(72, 20); this.sbtnMemoNew.TabIndex = 1; this.sbtnMemoNew.Text = "New"; this.sbtnMemoNew.Click += new System.EventHandler(this.sbtnMemoNew_Click); // // gctrMemo // this.gctrMemo.Dock = System.Windows.Forms.DockStyle.Bottom; this.gctrMemo.EmbeddedNavigator.Name = ""; this.gctrMemo.Location = new System.Drawing.Point(2, 62); this.gctrMemo.LookAndFeel.UseDefaultLookAndFeel = false; this.gctrMemo.MainView = this.gvMemo; this.gctrMemo.Name = "gctrMemo"; this.gctrMemo.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] { this.repositoryItemCheckEdit1}); this.gctrMemo.Size = new System.Drawing.Size(988, 248); this.gctrMemo.TabIndex = 4; this.gctrMemo.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] { this.gvMemo}); // // gvMemo // this.gvMemo.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] { this.colnMemoID, this.colPostUpdateDateTime, this.colAuthorID, this.colAuthor, this.colTitle, this.colRead}); this.gvMemo.GridControl = this.gctrMemo; this.gvMemo.Name = "gvMemo"; this.gvMemo.OptionsBehavior.AllowIncrementalSearch = true; this.gvMemo.OptionsBehavior.Editable = false; this.gvMemo.OptionsCustomization.AllowFilter = false; this.gvMemo.OptionsView.ShowGroupPanel = false; this.gvMemo.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] { new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.colPostUpdateDateTime, DevExpress.Data.ColumnSortOrder.Descending)}); this.gvMemo.FocusedRowChanged += new DevExpress.XtraGrid.Views.Base.FocusedRowChangedEventHandler(this.gvMemo_FocusedRowChanged); this.gvMemo.DataSourceChanged += new System.EventHandler(this.gvMemo_DataSourceChanged); // // colnMemoID // this.colnMemoID.Caption = "Memo ID"; this.colnMemoID.FieldName = "nMemoID"; this.colnMemoID.Name = "colnMemoID"; this.colnMemoID.Visible = true; this.colnMemoID.VisibleIndex = 0; this.colnMemoID.Width = 115; // // colPostUpdateDateTime // this.colPostUpdateDateTime.Caption = "Post/Update Date Time"; this.colPostUpdateDateTime.DisplayFormat.FormatString = "dd/MM/yyyy hh:mm tt"; this.colPostUpdateDateTime.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime; this.colPostUpdateDateTime.FieldName = "dtLastEditDate"; this.colPostUpdateDateTime.Name = "colPostUpdateDateTime"; this.colPostUpdateDateTime.Visible = true; this.colPostUpdateDateTime.VisibleIndex = 1; this.colPostUpdateDateTime.Width = 172; // // colAuthorID // this.colAuthorID.Caption = "Author ID"; this.colAuthorID.FieldName = "nEmployeeID"; this.colAuthorID.Name = "colAuthorID"; this.colAuthorID.Width = 201; // // colAuthor // this.colAuthor.Caption = "Author"; this.colAuthor.FieldName = "strEmployeeName"; this.colAuthor.Name = "colAuthor"; this.colAuthor.Visible = true; this.colAuthor.VisibleIndex = 2; this.colAuthor.Width = 229; // // colTitle // this.colTitle.Caption = "Subject"; this.colTitle.FieldName = "strTitle"; this.colTitle.Name = "colTitle"; this.colTitle.Visible = true; this.colTitle.VisibleIndex = 3; this.colTitle.Width = 405; // // colRead // this.colRead.Caption = "Read"; this.colRead.ColumnEdit = this.repositoryItemCheckEdit1; this.colRead.FieldName = "fRead"; this.colRead.Name = "colRead"; this.colRead.Visible = true; this.colRead.VisibleIndex = 4; this.colRead.Width = 46; // // repositoryItemCheckEdit1 // this.repositoryItemCheckEdit1.AutoHeight = false; this.repositoryItemCheckEdit1.Name = "repositoryItemCheckEdit1"; this.repositoryItemCheckEdit1.NullStyle = DevExpress.XtraEditors.Controls.StyleIndeterminate.Unchecked; // // groupMessagesFollowUpAction // this.groupMessagesFollowUpAction.Appearance.BackColor = System.Drawing.SystemColors.Control; this.groupMessagesFollowUpAction.Appearance.Options.UseBackColor = true; this.groupMessagesFollowUpAction.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowOnly; this.groupMessagesFollowUpAction.Controls.Add(this.GroupControl4); this.groupMessagesFollowUpAction.Location = new System.Drawing.Point(7, 344); this.groupMessagesFollowUpAction.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003; this.groupMessagesFollowUpAction.LookAndFeel.UseDefaultLookAndFeel = false; this.groupMessagesFollowUpAction.Name = "groupMessagesFollowUpAction"; this.groupMessagesFollowUpAction.Size = new System.Drawing.Size(992, 232); this.groupMessagesFollowUpAction.TabIndex = 12; this.groupMessagesFollowUpAction.Text = "Replies"; // // GroupControl4 // this.GroupControl4.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowOnly; this.GroupControl4.Controls.Add(this.sbtnRepliesDelete); this.GroupControl4.Controls.Add(this.sbtnRepliesView); this.GroupControl4.Controls.Add(this.sbtnRepliesUpdate); this.GroupControl4.Controls.Add(this.sbtnRepliesAdd); this.GroupControl4.Controls.Add(this.gctrReplies); this.GroupControl4.Dock = System.Windows.Forms.DockStyle.Fill; this.GroupControl4.Location = new System.Drawing.Point(2, 19); this.GroupControl4.Name = "GroupControl4"; this.GroupControl4.ShowCaption = false; this.GroupControl4.Size = new System.Drawing.Size(988, 211); this.GroupControl4.TabIndex = 0; this.GroupControl4.Text = "GroupControl1"; // // sbtnRepliesDelete // this.sbtnRepliesDelete.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold); this.sbtnRepliesDelete.Appearance.Options.UseFont = true; this.sbtnRepliesDelete.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple; this.sbtnRepliesDelete.Location = new System.Drawing.Point(256, 16); this.sbtnRepliesDelete.Name = "sbtnRepliesDelete"; this.sbtnRepliesDelete.Size = new System.Drawing.Size(72, 20); this.sbtnRepliesDelete.TabIndex = 3; this.sbtnRepliesDelete.Text = "Delete"; this.sbtnRepliesDelete.Click += new System.EventHandler(this.sbtnRepliesDelete_Click); // // sbtnRepliesView // this.sbtnRepliesView.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold); this.sbtnRepliesView.Appearance.Options.UseFont = true; this.sbtnRepliesView.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple; this.sbtnRepliesView.Location = new System.Drawing.Point(96, 16); this.sbtnRepliesView.Name = "sbtnRepliesView"; this.sbtnRepliesView.Size = new System.Drawing.Size(72, 20); this.sbtnRepliesView.TabIndex = 1; this.sbtnRepliesView.Text = "View"; this.sbtnRepliesView.Click += new System.EventHandler(this.sbtnRepliesView_Click); // // sbtnRepliesUpdate // this.sbtnRepliesUpdate.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold); this.sbtnRepliesUpdate.Appearance.Options.UseFont = true; this.sbtnRepliesUpdate.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple; this.sbtnRepliesUpdate.Location = new System.Drawing.Point(176, 16); this.sbtnRepliesUpdate.Name = "sbtnRepliesUpdate"; this.sbtnRepliesUpdate.Size = new System.Drawing.Size(72, 20); this.sbtnRepliesUpdate.TabIndex = 2; this.sbtnRepliesUpdate.Text = "Update"; this.sbtnRepliesUpdate.Click += new System.EventHandler(this.sbtnRepliesUpdate_Click); // // sbtnRepliesAdd // this.sbtnRepliesAdd.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold); this.sbtnRepliesAdd.Appearance.Options.UseFont = true; this.sbtnRepliesAdd.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple; this.sbtnRepliesAdd.Location = new System.Drawing.Point(16, 16); this.sbtnRepliesAdd.Name = "sbtnRepliesAdd"; this.sbtnRepliesAdd.Size = new System.Drawing.Size(72, 20); this.sbtnRepliesAdd.TabIndex = 0; this.sbtnRepliesAdd.Text = "Add"; this.sbtnRepliesAdd.Click += new System.EventHandler(this.sbtnRepliesAdd_Click); // // gctrReplies // this.gctrReplies.Dock = System.Windows.Forms.DockStyle.Bottom; this.gctrReplies.EmbeddedNavigator.Name = ""; this.gctrReplies.Location = new System.Drawing.Point(2, 49); this.gctrReplies.LookAndFeel.UseDefaultLookAndFeel = false; this.gctrReplies.MainView = this.gvReplies; this.gctrReplies.Name = "gctrReplies"; this.gctrReplies.Size = new System.Drawing.Size(984, 160); this.gctrReplies.TabIndex = 4; this.gctrReplies.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] { this.gvReplies}); // // gvReplies // this.gvReplies.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] { this.colReplyDate, this.colReplyEmployeeID, this.colReplyEmployeeName, this.colReplyMessage}); this.gvReplies.GridControl = this.gctrReplies; this.gvReplies.Name = "gvReplies"; this.gvReplies.OptionsBehavior.AllowIncrementalSearch = true; this.gvReplies.OptionsBehavior.Editable = false; this.gvReplies.OptionsCustomization.AllowFilter = false; this.gvReplies.OptionsView.ShowGroupPanel = false; this.gvReplies.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] { new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.colReplyDate, DevExpress.Data.ColumnSortOrder.Descending)}); // // colReplyDate // this.colReplyDate.Caption = "Date"; this.colReplyDate.DisplayFormat.FormatString = "dd/MM/yyyy"; this.colReplyDate.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime; this.colReplyDate.FieldName = "dtDate"; this.colReplyDate.Name = "colReplyDate"; this.colReplyDate.Visible = true; this.colReplyDate.VisibleIndex = 0; this.colReplyDate.Width = 143; // // colReplyEmployeeID // this.colReplyEmployeeID.Caption = "Employee ID"; this.colReplyEmployeeID.FieldName = "nEmployeeID"; this.colReplyEmployeeID.Name = "colReplyEmployeeID"; this.colReplyEmployeeID.Width = 209; // // colReplyEmployeeName // this.colReplyEmployeeName.Caption = "Employee"; this.colReplyEmployeeName.FieldName = "strEmployeeName"; this.colReplyEmployeeName.Name = "colReplyEmployeeName"; this.colReplyEmployeeName.Visible = true; this.colReplyEmployeeName.VisibleIndex = 1; this.colReplyEmployeeName.Width = 247; // // colReplyMessage // this.colReplyMessage.Caption = "Message"; this.colReplyMessage.FieldName = "strMessage"; this.colReplyMessage.Name = "colReplyMessage"; this.colReplyMessage.Visible = true; this.colReplyMessage.VisibleIndex = 2; this.colReplyMessage.Width = 569; // // groupMessagesMemoInfo // this.groupMessagesMemoInfo.Appearance.BackColor = System.Drawing.SystemColors.Control; this.groupMessagesMemoInfo.Appearance.Options.UseBackColor = true; this.groupMessagesMemoInfo.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowOnly; this.groupMessagesMemoInfo.Controls.Add(this.GroupControl8); this.groupMessagesMemoInfo.Location = new System.Drawing.Point(7, 344); this.groupMessagesMemoInfo.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003; this.groupMessagesMemoInfo.LookAndFeel.UseDefaultLookAndFeel = false; this.groupMessagesMemoInfo.Name = "groupMessagesMemoInfo"; this.groupMessagesMemoInfo.Size = new System.Drawing.Size(992, 232); this.groupMessagesMemoInfo.TabIndex = 13; this.groupMessagesMemoInfo.Text = "MEMO INFO"; this.groupMessagesMemoInfo.VisibleChanged += new System.EventHandler(this.groupMessagesMemoInfo_VisibleChanged); // // GroupControl8 // this.GroupControl8.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowOnly; this.GroupControl8.Controls.Add(this.sbtnUpdate); this.GroupControl8.Controls.Add(this.memoedtMessage); this.GroupControl8.Controls.Add(this.Label37); this.GroupControl8.Dock = System.Windows.Forms.DockStyle.Fill; this.GroupControl8.Location = new System.Drawing.Point(2, 19); this.GroupControl8.Name = "GroupControl8"; this.GroupControl8.ShowCaption = false; this.GroupControl8.Size = new System.Drawing.Size(988, 211); this.GroupControl8.TabIndex = 0; this.GroupControl8.Text = "GroupControl1"; // // sbtnUpdate // this.sbtnUpdate.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold); this.sbtnUpdate.Appearance.Options.UseFont = true; this.sbtnUpdate.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple; this.sbtnUpdate.Location = new System.Drawing.Point(656, 180); this.sbtnUpdate.Name = "sbtnUpdate"; this.sbtnUpdate.Size = new System.Drawing.Size(72, 20); this.sbtnUpdate.TabIndex = 1; this.sbtnUpdate.Text = "Update"; this.sbtnUpdate.Click += new System.EventHandler(this.sbtnUpdate_Click); // // memoedtMessage // this.memoedtMessage.EditValue = ""; this.memoedtMessage.Location = new System.Drawing.Point(88, 16); this.memoedtMessage.Name = "memoedtMessage"; this.memoedtMessage.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.memoedtMessage.Properties.Appearance.Options.UseFont = true; this.memoedtMessage.Properties.MaxLength = 1000; this.memoedtMessage.Size = new System.Drawing.Size(560, 184); this.memoedtMessage.TabIndex = 0; // // Label37 // this.Label37.AutoSize = true; this.Label37.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.Label37.Location = new System.Drawing.Point(16, 16); this.Label37.Name = "Label37"; this.Label37.Size = new System.Drawing.Size(72, 16); this.Label37.TabIndex = 16; this.Label37.Text = "Message"; // // groupMessagesReceipient // this.groupMessagesReceipient.Appearance.BackColor = System.Drawing.SystemColors.Control; this.groupMessagesReceipient.Appearance.Options.UseBackColor = true; this.groupMessagesReceipient.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowOnly; this.groupMessagesReceipient.Controls.Add(this.GroupControl6); this.groupMessagesReceipient.Location = new System.Drawing.Point(7, 344); this.groupMessagesReceipient.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003; this.groupMessagesReceipient.LookAndFeel.UseDefaultLookAndFeel = false; this.groupMessagesReceipient.Name = "groupMessagesReceipient"; this.groupMessagesReceipient.Size = new System.Drawing.Size(992, 232); this.groupMessagesReceipient.TabIndex = 14; this.groupMessagesReceipient.Text = "RECEIPIENT"; // // GroupControl6 // this.GroupControl6.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowOnly; this.GroupControl6.Controls.Add(this.cbMemoReceipient); this.GroupControl6.Controls.Add(this.sbtnReceipientDelete); this.GroupControl6.Controls.Add(this.sbtnReceipientNew); this.GroupControl6.Controls.Add(this.gctrReceipient); this.GroupControl6.Dock = System.Windows.Forms.DockStyle.Fill; this.GroupControl6.Location = new System.Drawing.Point(2, 19); this.GroupControl6.Name = "GroupControl6"; this.GroupControl6.ShowCaption = false; this.GroupControl6.Size = new System.Drawing.Size(988, 211); this.GroupControl6.TabIndex = 0; this.GroupControl6.Text = "GroupControl1"; // // cbMemoReceipient // this.cbMemoReceipient.EditValue = "Branch Group"; this.cbMemoReceipient.ImeMode = System.Windows.Forms.ImeMode.On; this.cbMemoReceipient.Location = new System.Drawing.Point(8, 16); this.cbMemoReceipient.Name = "cbMemoReceipient"; this.cbMemoReceipient.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)}); this.cbMemoReceipient.Properties.Items.AddRange(new object[] { "Branch Group", "Department Group", "Personal Group", "Employee"}); this.cbMemoReceipient.Properties.PopupSizeable = true; this.cbMemoReceipient.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor; this.cbMemoReceipient.Size = new System.Drawing.Size(136, 20); this.cbMemoReceipient.TabIndex = 0; this.cbMemoReceipient.SelectedIndexChanged += new System.EventHandler(this.cbMemoReceipient_SelectedIndexChanged); // // sbtnReceipientDelete // this.sbtnReceipientDelete.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold); this.sbtnReceipientDelete.Appearance.Options.UseFont = true; this.sbtnReceipientDelete.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple; this.sbtnReceipientDelete.Location = new System.Drawing.Point(232, 16); this.sbtnReceipientDelete.Name = "sbtnReceipientDelete"; this.sbtnReceipientDelete.Size = new System.Drawing.Size(72, 20); this.sbtnReceipientDelete.TabIndex = 2; this.sbtnReceipientDelete.Text = "Delete"; this.sbtnReceipientDelete.Click += new System.EventHandler(this.sbtnReceipientDelete_Click); // // sbtnReceipientNew // this.sbtnReceipientNew.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold); this.sbtnReceipientNew.Appearance.Options.UseFont = true; this.sbtnReceipientNew.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple; this.sbtnReceipientNew.Location = new System.Drawing.Point(152, 16); this.sbtnReceipientNew.Name = "sbtnReceipientNew"; this.sbtnReceipientNew.Size = new System.Drawing.Size(72, 20); this.sbtnReceipientNew.TabIndex = 1; this.sbtnReceipientNew.Text = "New"; this.sbtnReceipientNew.Click += new System.EventHandler(this.sbtnReceipientNew_Click); // // gctrReceipient // this.gctrReceipient.Dock = System.Windows.Forms.DockStyle.Bottom; this.gctrReceipient.EmbeddedNavigator.Name = ""; this.gctrReceipient.Location = new System.Drawing.Point(2, 49); this.gctrReceipient.LookAndFeel.UseDefaultLookAndFeel = false; this.gctrReceipient.MainView = this.gvReceipient; this.gctrReceipient.Name = "gctrReceipient"; this.gctrReceipient.Size = new System.Drawing.Size(984, 160); this.gctrReceipient.TabIndex = 3; this.gctrReceipient.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] { this.gvReceipient}); // // gvReceipient // this.gvReceipient.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] { this.colRecipientType, this.colRecipient, this.colRecipientID}); this.gvReceipient.GridControl = this.gctrReceipient; this.gvReceipient.Name = "gvReceipient"; this.gvReceipient.OptionsBehavior.AllowIncrementalSearch = true; this.gvReceipient.OptionsBehavior.Editable = false; this.gvReceipient.OptionsCustomization.AllowFilter = false; this.gvReceipient.OptionsView.ShowGroupPanel = false; // // colRecipientType // this.colRecipientType.Caption = "Type"; this.colRecipientType.FieldName = "Type"; this.colRecipientType.Name = "colRecipientType"; this.colRecipientType.Visible = true; this.colRecipientType.VisibleIndex = 0; this.colRecipientType.Width = 223; // // colRecipient // this.colRecipient.Caption = "Receipient"; this.colRecipient.FieldName = "Receipient"; this.colRecipient.Name = "colRecipient"; this.colRecipient.Visible = true; this.colRecipient.VisibleIndex = 1; this.colRecipient.Width = 558; // // colRecipientID // this.colRecipientID.Caption = "Receipient ID"; this.colRecipientID.FieldName = "nReceipientID"; this.colRecipientID.Name = "colRecipientID"; this.colRecipientID.Width = 178; // // groupReceipientGroup // this.groupReceipientGroup.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowOnly; this.groupReceipientGroup.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder; this.groupReceipientGroup.Controls.Add(this.groupReceipientGroupEntry); this.groupReceipientGroup.Controls.Add(this.groupReceipientGroupReceipientEntries); this.groupReceipientGroup.Location = new System.Drawing.Point(0, 34); this.groupReceipientGroup.Name = "groupReceipientGroup"; this.groupReceipientGroup.ShowCaption = false; this.groupReceipientGroup.Size = new System.Drawing.Size(1007, 584); this.groupReceipientGroup.TabIndex = 14; this.groupReceipientGroup.Text = "GroupControl3"; // // groupReceipientGroupEntry // this.groupReceipientGroupEntry.Appearance.BackColor = System.Drawing.SystemColors.Control; this.groupReceipientGroupEntry.Appearance.Options.UseBackColor = true; this.groupReceipientGroupEntry.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowOnly; this.groupReceipientGroupEntry.Controls.Add(this.sbtnRecpGrpDelete); this.groupReceipientGroupEntry.Controls.Add(this.sbtnRecpGrpEdit); this.groupReceipientGroupEntry.Controls.Add(this.sbtnRecpGrpNew); this.groupReceipientGroupEntry.Controls.Add(this.gctrRecpGrp); this.groupReceipientGroupEntry.Location = new System.Drawing.Point(8, 0); this.groupReceipientGroupEntry.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003; this.groupReceipientGroupEntry.LookAndFeel.UseDefaultLookAndFeel = false; this.groupReceipientGroupEntry.Name = "groupReceipientGroupEntry"; this.groupReceipientGroupEntry.Size = new System.Drawing.Size(992, 312); this.groupReceipientGroupEntry.TabIndex = 1; this.groupReceipientGroupEntry.Text = "RECEIPIENT GROUP"; // // sbtnRecpGrpDelete // this.sbtnRecpGrpDelete.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold); this.sbtnRecpGrpDelete.Appearance.Options.UseFont = true; this.sbtnRecpGrpDelete.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple; this.sbtnRecpGrpDelete.Location = new System.Drawing.Point(176, 32); this.sbtnRecpGrpDelete.Name = "sbtnRecpGrpDelete"; this.sbtnRecpGrpDelete.Size = new System.Drawing.Size(72, 20); this.sbtnRecpGrpDelete.TabIndex = 2; this.sbtnRecpGrpDelete.Text = "Delete"; this.sbtnRecpGrpDelete.Click += new System.EventHandler(this.sbtnRecpGrpDelete_Click); // // sbtnRecpGrpEdit // this.sbtnRecpGrpEdit.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold); this.sbtnRecpGrpEdit.Appearance.Options.UseFont = true; this.sbtnRecpGrpEdit.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple; this.sbtnRecpGrpEdit.Location = new System.Drawing.Point(96, 32); this.sbtnRecpGrpEdit.Name = "sbtnRecpGrpEdit"; this.sbtnRecpGrpEdit.Size = new System.Drawing.Size(72, 20); this.sbtnRecpGrpEdit.TabIndex = 1; this.sbtnRecpGrpEdit.Text = "Edit"; this.sbtnRecpGrpEdit.Click += new System.EventHandler(this.sbtnRecpGrpEdit_Click); // // sbtnRecpGrpNew // this.sbtnRecpGrpNew.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold); this.sbtnRecpGrpNew.Appearance.Options.UseFont = true; this.sbtnRecpGrpNew.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple; this.sbtnRecpGrpNew.Location = new System.Drawing.Point(16, 32); this.sbtnRecpGrpNew.Name = "sbtnRecpGrpNew"; this.sbtnRecpGrpNew.Size = new System.Drawing.Size(72, 20); this.sbtnRecpGrpNew.TabIndex = 0; this.sbtnRecpGrpNew.Text = "New"; this.sbtnRecpGrpNew.Click += new System.EventHandler(this.sbtnRecpGrpNew_Click); // // gctrRecpGrp // this.gctrRecpGrp.Dock = System.Windows.Forms.DockStyle.Bottom; this.gctrRecpGrp.EmbeddedNavigator.Name = ""; this.gctrRecpGrp.Location = new System.Drawing.Point(2, 62); this.gctrRecpGrp.LookAndFeel.UseDefaultLookAndFeel = false; this.gctrRecpGrp.MainView = this.gvRecpGrp; this.gctrRecpGrp.Name = "gctrRecpGrp"; this.gctrRecpGrp.Size = new System.Drawing.Size(988, 248); this.gctrRecpGrp.TabIndex = 3; this.gctrRecpGrp.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] { this.gvRecpGrp}); // // gvRecpGrp // this.gvRecpGrp.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] { this.colReceipientGroupID, this.colReceipientGroupCode, this.colDescription}); this.gvRecpGrp.GridControl = this.gctrRecpGrp; this.gvRecpGrp.Name = "gvRecpGrp"; this.gvRecpGrp.OptionsBehavior.AllowIncrementalSearch = true; this.gvRecpGrp.OptionsBehavior.Editable = false; this.gvRecpGrp.OptionsCustomization.AllowFilter = false; this.gvRecpGrp.OptionsView.ShowGroupPanel = false; this.gvRecpGrp.FocusedRowChanged += new DevExpress.XtraGrid.Views.Base.FocusedRowChangedEventHandler(this.gvRecpGrp_FocusedRowChanged); this.gvRecpGrp.DataSourceChanged += new System.EventHandler(this.gvRecpGrp_DataSourceChanged); // // colReceipientGroupID // this.colReceipientGroupID.Caption = "Group ID"; this.colReceipientGroupID.FieldName = "nMemoGroupID"; this.colReceipientGroupID.Name = "colReceipientGroupID"; this.colReceipientGroupID.Visible = true; this.colReceipientGroupID.VisibleIndex = 0; this.colReceipientGroupID.Width = 110; // // colReceipientGroupCode // this.colReceipientGroupCode.Caption = "Receipient Group Code"; this.colReceipientGroupCode.FieldName = "strMemoGroupCode"; this.colReceipientGroupCode.Name = "colReceipientGroupCode"; this.colReceipientGroupCode.Visible = true; this.colReceipientGroupCode.VisibleIndex = 1; this.colReceipientGroupCode.Width = 417; // // colDescription // this.colDescription.Caption = "Description"; this.colDescription.FieldName = "strDescription"; this.colDescription.Name = "colDescription"; this.colDescription.Visible = true; this.colDescription.VisibleIndex = 2; this.colDescription.Width = 440; // // groupReceipientGroupReceipientEntries // this.groupReceipientGroupReceipientEntries.Appearance.BackColor = System.Drawing.SystemColors.Control; this.groupReceipientGroupReceipientEntries.Appearance.Options.UseBackColor = true; this.groupReceipientGroupReceipientEntries.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowOnly; this.groupReceipientGroupReceipientEntries.Controls.Add(this.GroupControl10); this.groupReceipientGroupReceipientEntries.Location = new System.Drawing.Point(7, 320); this.groupReceipientGroupReceipientEntries.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003; this.groupReceipientGroupReceipientEntries.LookAndFeel.UseDefaultLookAndFeel = false; this.groupReceipientGroupReceipientEntries.Name = "groupReceipientGroupReceipientEntries"; this.groupReceipientGroupReceipientEntries.Size = new System.Drawing.Size(992, 256); this.groupReceipientGroupReceipientEntries.TabIndex = 14; this.groupReceipientGroupReceipientEntries.Text = "RECEIPIENT ENTRIES"; // // GroupControl10 // this.GroupControl10.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowOnly; this.GroupControl10.Controls.Add(this.sbtnRecpEntryDelete); this.GroupControl10.Controls.Add(this.sbtnRecpEntryNew); this.GroupControl10.Controls.Add(this.gctrRecpEntry); this.GroupControl10.Dock = System.Windows.Forms.DockStyle.Fill; this.GroupControl10.Location = new System.Drawing.Point(2, 19); this.GroupControl10.Name = "GroupControl10"; this.GroupControl10.ShowCaption = false; this.GroupControl10.Size = new System.Drawing.Size(988, 235); this.GroupControl10.TabIndex = 0; this.GroupControl10.Text = "GroupControl1"; // // sbtnRecpEntryDelete // this.sbtnRecpEntryDelete.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold); this.sbtnRecpEntryDelete.Appearance.Options.UseFont = true; this.sbtnRecpEntryDelete.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple; this.sbtnRecpEntryDelete.Location = new System.Drawing.Point(96, 16); this.sbtnRecpEntryDelete.Name = "sbtnRecpEntryDelete"; this.sbtnRecpEntryDelete.Size = new System.Drawing.Size(72, 20); this.sbtnRecpEntryDelete.TabIndex = 1; this.sbtnRecpEntryDelete.Text = "Delete"; this.sbtnRecpEntryDelete.Click += new System.EventHandler(this.sbtnRecpEntryDelete_Click); // // sbtnRecpEntryNew // this.sbtnRecpEntryNew.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold); this.sbtnRecpEntryNew.Appearance.Options.UseFont = true; this.sbtnRecpEntryNew.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple; this.sbtnRecpEntryNew.Location = new System.Drawing.Point(16, 16); this.sbtnRecpEntryNew.Name = "sbtnRecpEntryNew"; this.sbtnRecpEntryNew.Size = new System.Drawing.Size(72, 20); this.sbtnRecpEntryNew.TabIndex = 0; this.sbtnRecpEntryNew.Text = "New"; this.sbtnRecpEntryNew.Click += new System.EventHandler(this.sbtnRecpEntryNew_Click); // // gctrRecpEntry // this.gctrRecpEntry.Dock = System.Windows.Forms.DockStyle.Bottom; this.gctrRecpEntry.EmbeddedNavigator.Name = ""; this.gctrRecpEntry.Location = new System.Drawing.Point(2, 49); this.gctrRecpEntry.LookAndFeel.UseDefaultLookAndFeel = false; this.gctrRecpEntry.MainView = this.gvRecpEntry; this.gctrRecpEntry.Name = "gctrRecpEntry"; this.gctrRecpEntry.Size = new System.Drawing.Size(984, 184); this.gctrRecpEntry.TabIndex = 2; this.gctrRecpEntry.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] { this.gvRecpEntry}); // // gvRecpEntry // this.gvRecpEntry.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] { this.colEmployeeID, this.colEmployeeName}); this.gvRecpEntry.GridControl = this.gctrRecpEntry; this.gvRecpEntry.Name = "gvRecpEntry"; this.gvRecpEntry.OptionsBehavior.AllowIncrementalSearch = true; this.gvRecpEntry.OptionsBehavior.Editable = false; this.gvRecpEntry.OptionsCustomization.AllowFilter = false; this.gvRecpEntry.OptionsView.ShowGroupPanel = false; // // colEmployeeID // this.colEmployeeID.Caption = "EmployeeID"; this.colEmployeeID.FieldName = "nEmployeeID"; this.colEmployeeID.Name = "colEmployeeID"; this.colEmployeeID.Visible = true; this.colEmployeeID.VisibleIndex = 0; this.colEmployeeID.Width = 90; // // colEmployeeName // this.colEmployeeName.Caption = "Employee Name"; this.colEmployeeName.FieldName = "strEmployeeName"; this.colEmployeeName.Name = "colEmployeeName"; this.colEmployeeName.Visible = true; this.colEmployeeName.VisibleIndex = 1; this.colEmployeeName.Width = 209; // // 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, 8); this.lblOne_1.Name = "lblOne_1"; this.lblOne_1.Size = new System.Drawing.Size(138, 23); this.lblOne_1.TabIndex = 141; this.lblOne_1.Text = "Messages"; this.lblOne_1.Click += new System.EventHandler(this.lblOne_1_Click); // // tabStaffTwo // this.tabStaffTwo.Appearance.Header.Font = new System.Drawing.Font("Tahoma", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.tabStaffTwo.Appearance.Header.Options.UseFont = true; this.tabStaffTwo.Controls.Add(this.groupService); this.tabStaffTwo.Controls.Add(this.lblTwo_1); this.tabStaffTwo.Controls.Add(this.lblTwo_2); this.tabStaffTwo.Controls.Add(this.groupSales); this.tabStaffTwo.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.tabStaffTwo.Name = "tabStaffTwo"; this.tabStaffTwo.PageVisible = false; this.tabStaffTwo.Size = new System.Drawing.Size(1007, 612); this.tabStaffTwo.Text = "Commission"; this.tabStaffTwo.VisibleChanged += new System.EventHandler(this.tabStaffCommision_VisibleChanged); // // groupService // this.groupService.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowOnly; this.groupService.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder; this.groupService.Controls.Add(this.groupServiceEntry); this.groupService.Location = new System.Drawing.Point(0, 34); this.groupService.Name = "groupService"; this.groupService.ShowCaption = false; this.groupService.Size = new System.Drawing.Size(1007, 584); this.groupService.TabIndex = 15; this.groupService.Text = "GroupControl3"; // // groupServiceEntry // this.groupServiceEntry.Appearance.BackColor = System.Drawing.SystemColors.Control; this.groupServiceEntry.Appearance.Options.UseBackColor = true; this.groupServiceEntry.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowOnly; this.groupServiceEntry.Controls.Add(this.groupControl3); this.groupServiceEntry.Controls.Add(this.gctrService); this.groupServiceEntry.Location = new System.Drawing.Point(8, 0); this.groupServiceEntry.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003; this.groupServiceEntry.LookAndFeel.UseDefaultLookAndFeel = false; this.groupServiceEntry.Name = "groupServiceEntry"; this.groupServiceEntry.Size = new System.Drawing.Size(992, 576); this.groupServiceEntry.TabIndex = 1; this.groupServiceEntry.Text = "SERVICE"; // // groupControl3 // this.groupControl3.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowOnly; this.groupControl3.Controls.Add(this.luedtCommissionServiceBranch); this.groupControl3.Controls.Add(this.label30); this.groupControl3.Controls.Add(this.cbServiceYear); this.groupControl3.Controls.Add(this.label5); this.groupControl3.Controls.Add(this.label3); this.groupControl3.Controls.Add(this.label2); this.groupControl3.Controls.Add(this.cbServiceMonth); this.groupControl3.Controls.Add(this.cbServiceServiceType); this.groupControl3.Controls.Add(this.sbtnServiceInquiry); this.groupControl3.Location = new System.Drawing.Point(6, 24); this.groupControl3.Name = "groupControl3"; this.groupControl3.Size = new System.Drawing.Size(730, 52); this.groupControl3.TabIndex = 0; this.groupControl3.Text = "Inquiry"; // // luedtCommissionServiceBranch // this.luedtCommissionServiceBranch.Location = new System.Drawing.Point(258, 24); this.luedtCommissionServiceBranch.Name = "luedtCommissionServiceBranch"; this.luedtCommissionServiceBranch.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)}); this.luedtCommissionServiceBranch.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard; this.luedtCommissionServiceBranch.Size = new System.Drawing.Size(150, 20); this.luedtCommissionServiceBranch.TabIndex = 1; // // label30 // this.label30.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label30.Location = new System.Drawing.Point(206, 24); this.label30.Name = "label30"; this.label30.Size = new System.Drawing.Size(50, 20); this.label30.TabIndex = 18; this.label30.Text = "Branch:"; // // cbServiceYear // this.cbServiceYear.EditValue = ""; this.cbServiceYear.ImeMode = System.Windows.Forms.ImeMode.On; this.cbServiceYear.Location = new System.Drawing.Point(580, 24); this.cbServiceYear.Name = "cbServiceYear"; this.cbServiceYear.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)}); this.cbServiceYear.Properties.PopupSizeable = true; this.cbServiceYear.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor; this.cbServiceYear.Size = new System.Drawing.Size(64, 20); this.cbServiceYear.TabIndex = 3; // // label5 // this.label5.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label5.Location = new System.Drawing.Point(542, 24); this.label5.Name = "label5"; this.label5.Size = new System.Drawing.Size(34, 20); this.label5.TabIndex = 15; this.label5.Text = "Year:"; // // label3 // this.label3.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label3.Location = new System.Drawing.Point(414, 24); this.label3.Name = "label3"; this.label3.Size = new System.Drawing.Size(42, 20); this.label3.TabIndex = 14; this.label3.Text = "Month:"; // // label2 // this.label2.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label2.Location = new System.Drawing.Point(8, 24); this.label2.Name = "label2"; this.label2.Size = new System.Drawing.Size(78, 20); this.label2.TabIndex = 13; this.label2.Text = "Service Type:"; // // cbServiceMonth // this.cbServiceMonth.EditValue = "January"; this.cbServiceMonth.ImeMode = System.Windows.Forms.ImeMode.On; this.cbServiceMonth.Location = new System.Drawing.Point(458, 24); this.cbServiceMonth.Name = "cbServiceMonth"; this.cbServiceMonth.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)}); this.cbServiceMonth.Properties.Items.AddRange(new object[] { "January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"}); this.cbServiceMonth.Properties.PopupSizeable = true; this.cbServiceMonth.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor; this.cbServiceMonth.Size = new System.Drawing.Size(80, 20); this.cbServiceMonth.TabIndex = 2; // // cbServiceServiceType // this.cbServiceServiceType.EditValue = "PT Service"; this.cbServiceServiceType.ImeMode = System.Windows.Forms.ImeMode.On; this.cbServiceServiceType.Location = new System.Drawing.Point(88, 24); this.cbServiceServiceType.Name = "cbServiceServiceType"; this.cbServiceServiceType.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)}); this.cbServiceServiceType.Properties.Items.AddRange(new object[] { "PT Service", "Spa Service"}); this.cbServiceServiceType.Properties.PopupSizeable = true; this.cbServiceServiceType.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor; this.cbServiceServiceType.Size = new System.Drawing.Size(112, 20); this.cbServiceServiceType.TabIndex = 0; // // sbtnServiceInquiry // this.sbtnServiceInquiry.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold); this.sbtnServiceInquiry.Appearance.Options.UseFont = true; this.sbtnServiceInquiry.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple; this.sbtnServiceInquiry.Location = new System.Drawing.Point(648, 24); this.sbtnServiceInquiry.Name = "sbtnServiceInquiry"; this.sbtnServiceInquiry.Size = new System.Drawing.Size(72, 20); this.sbtnServiceInquiry.TabIndex = 4; this.sbtnServiceInquiry.Text = "Inquiry"; this.sbtnServiceInquiry.Click += new System.EventHandler(this.sbtnServiceInquiry_Click); // // gctrService // this.gctrService.Dock = System.Windows.Forms.DockStyle.Bottom; this.gctrService.EmbeddedNavigator.Name = ""; this.gctrService.Location = new System.Drawing.Point(2, 80); this.gctrService.LookAndFeel.UseDefaultLookAndFeel = false; this.gctrService.MainView = this.gvService; this.gctrService.Name = "gctrService"; this.gctrService.Size = new System.Drawing.Size(988, 494); this.gctrService.TabIndex = 5; this.gctrService.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] { this.gvService}); // // gvService // this.gvService.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] { this.colServicedtDate, this.colServicestrBranchCode, this.colServicestrMembershipID, this.colServicestrServiceCode, this.colServicestrCommission}); this.gvService.GridControl = this.gctrService; this.gvService.Name = "gvService"; this.gvService.OptionsBehavior.AllowIncrementalSearch = true; this.gvService.OptionsBehavior.Editable = false; this.gvService.OptionsCustomization.AllowFilter = false; this.gvService.OptionsView.ShowFooter = true; this.gvService.OptionsView.ShowGroupPanel = false; this.gvService.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] { new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.colServicedtDate, DevExpress.Data.ColumnSortOrder.Ascending)}); // // colServicedtDate // this.colServicedtDate.Caption = "Date"; this.colServicedtDate.DisplayFormat.FormatString = "dd/MM/yyyy"; this.colServicedtDate.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime; this.colServicedtDate.FieldName = "dtDate"; this.colServicedtDate.Name = "colServicedtDate"; this.colServicedtDate.Visible = true; this.colServicedtDate.VisibleIndex = 0; // // colServicestrBranchCode // this.colServicestrBranchCode.Caption = "Branch"; this.colServicestrBranchCode.FieldName = "strBranchCode"; this.colServicestrBranchCode.Name = "colServicestrBranchCode"; this.colServicestrBranchCode.Visible = true; this.colServicestrBranchCode.VisibleIndex = 1; // // colServicestrMembershipID // this.colServicestrMembershipID.Caption = "Membership ID"; this.colServicestrMembershipID.FieldName = "strMembershipID"; this.colServicestrMembershipID.Name = "colServicestrMembershipID"; this.colServicestrMembershipID.Visible = true; this.colServicestrMembershipID.VisibleIndex = 2; // // colServicestrServiceCode // this.colServicestrServiceCode.Caption = "Transaction Code"; this.colServicestrServiceCode.FieldName = "strServiceCode"; this.colServicestrServiceCode.Name = "colServicestrServiceCode"; this.colServicestrServiceCode.Visible = true; this.colServicestrServiceCode.VisibleIndex = 3; // // colServicestrCommission // this.colServicestrCommission.Caption = "Commission"; this.colServicestrCommission.FieldName = "mCommission"; this.colServicestrCommission.Name = "colServicestrCommission"; this.colServicestrCommission.SummaryItem.SummaryType = DevExpress.Data.SummaryItemType.Sum; this.colServicestrCommission.Visible = true; this.colServicestrCommission.VisibleIndex = 4; // // lblTwo_1 // this.lblTwo_1.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold); this.lblTwo_1.Appearance.ForeColor = System.Drawing.Color.MediumBlue; this.lblTwo_1.Appearance.Options.UseFont = true; this.lblTwo_1.Appearance.Options.UseForeColor = true; this.lblTwo_1.Location = new System.Drawing.Point(8, 8); this.lblTwo_1.Name = "lblTwo_1"; this.lblTwo_1.Size = new System.Drawing.Size(138, 23); this.lblTwo_1.TabIndex = 142; this.lblTwo_1.Text = "Sales"; this.lblTwo_1.Click += new System.EventHandler(this.lblTwo_1_Click); // // lblTwo_2 // this.lblTwo_2.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold); this.lblTwo_2.Appearance.ForeColor = System.Drawing.Color.MediumBlue; this.lblTwo_2.Appearance.Options.UseFont = true; this.lblTwo_2.Appearance.Options.UseForeColor = true; this.lblTwo_2.Location = new System.Drawing.Point(160, 8); this.lblTwo_2.Name = "lblTwo_2"; this.lblTwo_2.Size = new System.Drawing.Size(138, 23); this.lblTwo_2.TabIndex = 143; this.lblTwo_2.Text = "Service"; this.lblTwo_2.Click += new System.EventHandler(this.lblTwo_2_Click); // // groupSales // this.groupSales.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowOnly; this.groupSales.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder; this.groupSales.Controls.Add(this.groupSalesEntry); this.groupSales.Location = new System.Drawing.Point(0, 34); this.groupSales.Name = "groupSales"; this.groupSales.ShowCaption = false; this.groupSales.Size = new System.Drawing.Size(1007, 584); this.groupSales.TabIndex = 14; this.groupSales.Text = "GroupControl3"; // // groupSalesEntry // this.groupSalesEntry.Appearance.BackColor = System.Drawing.SystemColors.Control; this.groupSalesEntry.Appearance.Options.UseBackColor = true; this.groupSalesEntry.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowOnly; this.groupSalesEntry.Controls.Add(this.groupControl7); this.groupSalesEntry.Controls.Add(this.gctrSales); this.groupSalesEntry.Location = new System.Drawing.Point(8, 0); this.groupSalesEntry.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003; this.groupSalesEntry.LookAndFeel.UseDefaultLookAndFeel = false; this.groupSalesEntry.Name = "groupSalesEntry"; this.groupSalesEntry.Size = new System.Drawing.Size(992, 576); this.groupSalesEntry.TabIndex = 1; this.groupSalesEntry.Text = "SALES"; // // groupControl7 // this.groupControl7.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowOnly; this.groupControl7.Controls.Add(this.luedtSalesBranchCode); this.groupControl7.Controls.Add(this.label16); this.groupControl7.Controls.Add(this.cbSalesYear); this.groupControl7.Controls.Add(this.label6); this.groupControl7.Controls.Add(this.label7); this.groupControl7.Controls.Add(this.label8); this.groupControl7.Controls.Add(this.cbSalesMonth); this.groupControl7.Controls.Add(this.sbtnSalesInquiry); this.groupControl7.Controls.Add(this.cbSalesType); this.groupControl7.Location = new System.Drawing.Point(6, 24); this.groupControl7.Name = "groupControl7"; this.groupControl7.Size = new System.Drawing.Size(772, 52); this.groupControl7.TabIndex = 0; this.groupControl7.Text = "Inquiry"; // // luedtSalesBranchCode // this.luedtSalesBranchCode.Location = new System.Drawing.Point(304, 24); this.luedtSalesBranchCode.Name = "luedtSalesBranchCode"; this.luedtSalesBranchCode.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)}); this.luedtSalesBranchCode.Size = new System.Drawing.Size(150, 20); this.luedtSalesBranchCode.TabIndex = 1; // // label16 // this.label16.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label16.Location = new System.Drawing.Point(252, 24); this.label16.Name = "label16"; this.label16.Size = new System.Drawing.Size(50, 20); this.label16.TabIndex = 16; this.label16.Text = "Branch:"; // // cbSalesYear // this.cbSalesYear.EditValue = ""; this.cbSalesYear.ImeMode = System.Windows.Forms.ImeMode.On; this.cbSalesYear.Location = new System.Drawing.Point(624, 24); this.cbSalesYear.Name = "cbSalesYear"; this.cbSalesYear.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)}); this.cbSalesYear.Properties.PopupSizeable = true; this.cbSalesYear.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor; this.cbSalesYear.Size = new System.Drawing.Size(64, 20); this.cbSalesYear.TabIndex = 3; // // label6 // this.label6.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label6.Location = new System.Drawing.Point(586, 24); this.label6.Name = "label6"; this.label6.Size = new System.Drawing.Size(34, 20); this.label6.TabIndex = 15; this.label6.Text = "Year:"; // // label7 // this.label7.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label7.Location = new System.Drawing.Point(458, 24); this.label7.Name = "label7"; this.label7.Size = new System.Drawing.Size(42, 20); this.label7.TabIndex = 14; this.label7.Text = "Month:"; // // label8 // this.label8.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label8.Location = new System.Drawing.Point(8, 24); this.label8.Name = "label8"; this.label8.Size = new System.Drawing.Size(70, 20); this.label8.TabIndex = 13; this.label8.Text = "Sales Type:"; // // cbSalesMonth // this.cbSalesMonth.EditValue = "January"; this.cbSalesMonth.ImeMode = System.Windows.Forms.ImeMode.On; this.cbSalesMonth.Location = new System.Drawing.Point(502, 24); this.cbSalesMonth.Name = "cbSalesMonth"; this.cbSalesMonth.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)}); this.cbSalesMonth.Properties.Items.AddRange(new object[] { "January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"}); this.cbSalesMonth.Properties.PopupSizeable = true; this.cbSalesMonth.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor; this.cbSalesMonth.Size = new System.Drawing.Size(80, 20); this.cbSalesMonth.TabIndex = 2; // // sbtnSalesInquiry // this.sbtnSalesInquiry.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold); this.sbtnSalesInquiry.Appearance.Options.UseFont = true; this.sbtnSalesInquiry.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple; this.sbtnSalesInquiry.Location = new System.Drawing.Point(692, 24); this.sbtnSalesInquiry.Name = "sbtnSalesInquiry"; this.sbtnSalesInquiry.Size = new System.Drawing.Size(72, 20); this.sbtnSalesInquiry.TabIndex = 4; this.sbtnSalesInquiry.Text = "Inquiry"; this.sbtnSalesInquiry.Click += new System.EventHandler(this.sbtnSalesInquiry_Click); // // cbSalesType // this.cbSalesType.EditValue = "Fitness Package Sales"; this.cbSalesType.ImeMode = System.Windows.Forms.ImeMode.On; this.cbSalesType.Location = new System.Drawing.Point(80, 24); this.cbSalesType.Name = "cbSalesType"; this.cbSalesType.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)}); this.cbSalesType.Properties.Items.AddRange(new object[] { "Fitness Product Sales", "Fitness Package Sales", "Spa Product Sales", "Spa Package Sales", "Personal Trainer Package Sales", "IPL Package Sales"}); this.cbSalesType.Properties.PopupSizeable = true; this.cbSalesType.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor; this.cbSalesType.Size = new System.Drawing.Size(168, 20); this.cbSalesType.TabIndex = 0; // // gctrSales // this.gctrSales.Dock = System.Windows.Forms.DockStyle.Bottom; this.gctrSales.EmbeddedNavigator.Name = ""; this.gctrSales.Location = new System.Drawing.Point(2, 80); this.gctrSales.LookAndFeel.UseDefaultLookAndFeel = false; this.gctrSales.MainView = this.gvSales; this.gctrSales.Name = "gctrSales"; this.gctrSales.Size = new System.Drawing.Size(988, 494); this.gctrSales.TabIndex = 5; this.gctrSales.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] { this.gvSales}); // // gvSales // this.gvSales.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] { this.colSalesDate, this.colSalesReceipt, this.colSalesMembershipID, this.colSalesNettAmount}); this.gvSales.GridControl = this.gctrSales; this.gvSales.Name = "gvSales"; this.gvSales.OptionsBehavior.AllowIncrementalSearch = true; this.gvSales.OptionsBehavior.Editable = false; this.gvSales.OptionsCustomization.AllowFilter = false; this.gvSales.OptionsView.ShowFooter = true; this.gvSales.OptionsView.ShowGroupPanel = false; this.gvSales.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] { new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.colSalesDate, DevExpress.Data.ColumnSortOrder.Ascending)}); // // colSalesDate // this.colSalesDate.Caption = "Date"; this.colSalesDate.DisplayFormat.FormatString = "dd/MM/yyyy"; this.colSalesDate.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime; this.colSalesDate.FieldName = "dtDate"; this.colSalesDate.Name = "colSalesDate"; this.colSalesDate.Visible = true; this.colSalesDate.VisibleIndex = 0; this.colSalesDate.Width = 99; // // colSalesReceipt // this.colSalesReceipt.Caption = "Receipt No"; this.colSalesReceipt.FieldName = "strReceiptNo"; this.colSalesReceipt.Name = "colSalesReceipt"; this.colSalesReceipt.Visible = true; this.colSalesReceipt.VisibleIndex = 1; this.colSalesReceipt.Width = 166; // // colSalesMembershipID // this.colSalesMembershipID.Caption = "Membership ID"; this.colSalesMembershipID.FieldName = "strMembershipID"; this.colSalesMembershipID.Name = "colSalesMembershipID"; this.colSalesMembershipID.Visible = true; this.colSalesMembershipID.VisibleIndex = 2; this.colSalesMembershipID.Width = 294; // // colSalesNettAmount // this.colSalesNettAmount.Caption = "Nett Amount"; this.colSalesNettAmount.FieldName = "mNettAmount"; this.colSalesNettAmount.Name = "colSalesNettAmount"; this.colSalesNettAmount.SummaryItem.SummaryType = DevExpress.Data.SummaryItemType.Sum; this.colSalesNettAmount.Visible = true; this.colSalesNettAmount.VisibleIndex = 3; this.colSalesNettAmount.Width = 107; // // tabStaffThree // this.tabStaffThree.Appearance.Header.Font = new System.Drawing.Font("Tahoma", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.tabStaffThree.Appearance.Header.Options.UseFont = true; this.tabStaffThree.Controls.Add(this.lblThree_3); this.tabStaffThree.Controls.Add(this.lblThree_1); this.tabStaffThree.Controls.Add(this.lblThree_2); this.tabStaffThree.Controls.Add(this.groupTimesheet); this.tabStaffThree.Controls.Add(this.groupOvertime); this.tabStaffThree.Controls.Add(this.groupLateness); this.tabStaffThree.Name = "tabStaffThree"; this.tabStaffThree.PageVisible = false; this.tabStaffThree.Size = new System.Drawing.Size(1007, 612); this.tabStaffThree.Text = "Timesheet"; this.tabStaffThree.VisibleChanged += new System.EventHandler(this.tabStaffTimesheet_VisibleChanged); // // 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, 8); this.lblThree_3.Name = "lblThree_3"; this.lblThree_3.Size = new System.Drawing.Size(138, 23); this.lblThree_3.TabIndex = 146; this.lblThree_3.Text = "Lateness"; this.lblThree_3.Click += new System.EventHandler(this.lblThree_3_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, 8); this.lblThree_1.Name = "lblThree_1"; this.lblThree_1.Size = new System.Drawing.Size(138, 23); this.lblThree_1.TabIndex = 144; this.lblThree_1.Text = "Timesheet"; this.lblThree_1.Click += new System.EventHandler(this.lblThree_1_Click); // // 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, 8); this.lblThree_2.Name = "lblThree_2"; this.lblThree_2.Size = new System.Drawing.Size(138, 23); this.lblThree_2.TabIndex = 145; this.lblThree_2.Text = "Overtime"; this.lblThree_2.Click += new System.EventHandler(this.lblThree_2_Click); // // groupTimesheet // this.groupTimesheet.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowOnly; this.groupTimesheet.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder; this.groupTimesheet.Controls.Add(this.groupTimesheetEntry); this.groupTimesheet.Location = new System.Drawing.Point(0, 32); this.groupTimesheet.Name = "groupTimesheet"; this.groupTimesheet.ShowCaption = false; this.groupTimesheet.Size = new System.Drawing.Size(1007, 576); this.groupTimesheet.TabIndex = 10; this.groupTimesheet.Text = "GroupControl1"; // // groupTimesheetEntry // this.groupTimesheetEntry.Appearance.BackColor = System.Drawing.SystemColors.Control; this.groupTimesheetEntry.Appearance.Options.UseBackColor = true; this.groupTimesheetEntry.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowOnly; this.groupTimesheetEntry.Controls.Add(this.groupControl9); this.groupTimesheetEntry.Controls.Add(this.gridctrTimesheet); this.groupTimesheetEntry.Location = new System.Drawing.Point(8, 0); this.groupTimesheetEntry.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003; this.groupTimesheetEntry.LookAndFeel.UseDefaultLookAndFeel = false; this.groupTimesheetEntry.Name = "groupTimesheetEntry"; this.groupTimesheetEntry.Size = new System.Drawing.Size(992, 568); this.groupTimesheetEntry.TabIndex = 1; this.groupTimesheetEntry.Text = "TIMESHEET"; // // groupControl9 // this.groupControl9.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowOnly; this.groupControl9.Controls.Add(this.cbTimesheetYear); this.groupControl9.Controls.Add(this.label1); this.groupControl9.Controls.Add(this.label11); this.groupControl9.Controls.Add(this.cbTimesheetMonth); this.groupControl9.Controls.Add(this.sbtnTimesheetInquiry); this.groupControl9.Location = new System.Drawing.Point(6, 22); this.groupControl9.Name = "groupControl9"; this.groupControl9.Size = new System.Drawing.Size(328, 52); this.groupControl9.TabIndex = 0; this.groupControl9.Text = "Inquiry"; // // cbTimesheetYear // this.cbTimesheetYear.EditValue = ""; this.cbTimesheetYear.ImeMode = System.Windows.Forms.ImeMode.On; this.cbTimesheetYear.Location = new System.Drawing.Point(178, 24); this.cbTimesheetYear.Name = "cbTimesheetYear"; this.cbTimesheetYear.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)}); this.cbTimesheetYear.Properties.PopupSizeable = true; this.cbTimesheetYear.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor; this.cbTimesheetYear.Size = new System.Drawing.Size(64, 20); this.cbTimesheetYear.TabIndex = 2; // // label1 // this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label1.Location = new System.Drawing.Point(140, 24); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(34, 20); this.label1.TabIndex = 15; this.label1.Text = "Year:"; // // label11 // this.label11.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label11.Location = new System.Drawing.Point(12, 24); this.label11.Name = "label11"; this.label11.Size = new System.Drawing.Size(42, 20); this.label11.TabIndex = 0; this.label11.Text = "Month:"; // // cbTimesheetMonth // this.cbTimesheetMonth.EditValue = "January"; this.cbTimesheetMonth.ImeMode = System.Windows.Forms.ImeMode.On; this.cbTimesheetMonth.Location = new System.Drawing.Point(56, 24); this.cbTimesheetMonth.Name = "cbTimesheetMonth"; this.cbTimesheetMonth.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)}); this.cbTimesheetMonth.Properties.Items.AddRange(new object[] { "January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"}); this.cbTimesheetMonth.Properties.PopupSizeable = true; this.cbTimesheetMonth.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor; this.cbTimesheetMonth.Size = new System.Drawing.Size(80, 20); this.cbTimesheetMonth.TabIndex = 1; // // sbtnTimesheetInquiry // this.sbtnTimesheetInquiry.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold); this.sbtnTimesheetInquiry.Appearance.Options.UseFont = true; this.sbtnTimesheetInquiry.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple; this.sbtnTimesheetInquiry.Location = new System.Drawing.Point(246, 24); this.sbtnTimesheetInquiry.Name = "sbtnTimesheetInquiry"; this.sbtnTimesheetInquiry.Size = new System.Drawing.Size(72, 20); this.sbtnTimesheetInquiry.TabIndex = 3; this.sbtnTimesheetInquiry.Text = "Inquiry"; this.sbtnTimesheetInquiry.Click += new System.EventHandler(this.sbtnTimesheetInquiry_Click); // // gridctrTimesheet // this.gridctrTimesheet.Dock = System.Windows.Forms.DockStyle.Bottom; this.gridctrTimesheet.EmbeddedNavigator.Name = ""; this.gridctrTimesheet.Location = new System.Drawing.Point(2, 76); this.gridctrTimesheet.LookAndFeel.UseDefaultLookAndFeel = false; this.gridctrTimesheet.MainView = this.gvTimesheet; this.gridctrTimesheet.Name = "gridctrTimesheet"; this.gridctrTimesheet.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] { this.repositoryItemCheckEdit2}); this.gridctrTimesheet.Size = new System.Drawing.Size(988, 490); this.gridctrTimesheet.TabIndex = 1; this.gridctrTimesheet.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] { this.gvTimesheet}); // // gvTimesheet // this.gvTimesheet.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] { this.colTimesheetDate, this.colTimesheetRosterIn, this.colTimesheetRosterOut, this.colTimesheetBranchFirstTimeIn, this.colTimesheetBranchLastTimeOut, this.colTimesheetFirstTimeIn, this.colTimesheetLastTimeOut, this.colTimesheetManagerNameIn, this.colTimesheetManagerNameOut, this.colTimesheetLateness, this.colTimesheetTotalLateness}); this.gvTimesheet.GridControl = this.gridctrTimesheet; this.gvTimesheet.Name = "gvTimesheet"; this.gvTimesheet.OptionsBehavior.AllowIncrementalSearch = true; this.gvTimesheet.OptionsBehavior.Editable = false; this.gvTimesheet.OptionsCustomization.AllowFilter = false; this.gvTimesheet.OptionsView.ShowGroupPanel = false; this.gvTimesheet.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] { new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.colTimesheetDate, DevExpress.Data.ColumnSortOrder.Descending)}); this.gvTimesheet.DoubleClick += new System.EventHandler(this.gvTimesheet_DoubleClick); this.gvTimesheet.RowStyle += new DevExpress.XtraGrid.Views.Grid.RowStyleEventHandler(this.gvTimesheet_RowStyle); // // colTimesheetDate // this.colTimesheetDate.Caption = "Date"; this.colTimesheetDate.DisplayFormat.FormatString = "dd/MM/yyyy"; this.colTimesheetDate.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime; this.colTimesheetDate.FieldName = "dtDate"; this.colTimesheetDate.Name = "colTimesheetDate"; this.colTimesheetDate.Visible = true; this.colTimesheetDate.VisibleIndex = 0; this.colTimesheetDate.Width = 119; // // colTimesheetRosterIn // this.colTimesheetRosterIn.Caption = "Roster In"; this.colTimesheetRosterIn.DisplayFormat.FormatString = "hh:mm tt"; this.colTimesheetRosterIn.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime; this.colTimesheetRosterIn.FieldName = "Expected Start Time"; this.colTimesheetRosterIn.Name = "colTimesheetRosterIn"; this.colTimesheetRosterIn.Visible = true; this.colTimesheetRosterIn.VisibleIndex = 1; this.colTimesheetRosterIn.Width = 89; // // colTimesheetRosterOut // this.colTimesheetRosterOut.Caption = "Roster Out"; this.colTimesheetRosterOut.DisplayFormat.FormatString = "hh:mm tt"; this.colTimesheetRosterOut.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime; this.colTimesheetRosterOut.FieldName = "Expected End Time"; this.colTimesheetRosterOut.Name = "colTimesheetRosterOut"; this.colTimesheetRosterOut.Visible = true; this.colTimesheetRosterOut.VisibleIndex = 2; this.colTimesheetRosterOut.Width = 79; // // colTimesheetBranchFirstTimeIn // this.colTimesheetBranchFirstTimeIn.Caption = "Branch In"; this.colTimesheetBranchFirstTimeIn.FieldName = "strBranchCodeIn"; this.colTimesheetBranchFirstTimeIn.Name = "colTimesheetBranchFirstTimeIn"; this.colTimesheetBranchFirstTimeIn.Visible = true; this.colTimesheetBranchFirstTimeIn.VisibleIndex = 3; this.colTimesheetBranchFirstTimeIn.Width = 71; // // colTimesheetBranchLastTimeOut // this.colTimesheetBranchLastTimeOut.Caption = "Branch Out"; this.colTimesheetBranchLastTimeOut.FieldName = "strBranchCodeOut"; this.colTimesheetBranchLastTimeOut.Name = "colTimesheetBranchLastTimeOut"; this.colTimesheetBranchLastTimeOut.Visible = true; this.colTimesheetBranchLastTimeOut.VisibleIndex = 5; this.colTimesheetBranchLastTimeOut.Width = 66; // // colTimesheetFirstTimeIn // this.colTimesheetFirstTimeIn.Caption = "Time (In)"; this.colTimesheetFirstTimeIn.DisplayFormat.FormatString = "hh:mm tt"; this.colTimesheetFirstTimeIn.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime; this.colTimesheetFirstTimeIn.FieldName = "First Time In"; this.colTimesheetFirstTimeIn.Name = "colTimesheetFirstTimeIn"; this.colTimesheetFirstTimeIn.Visible = true; this.colTimesheetFirstTimeIn.VisibleIndex = 4; this.colTimesheetFirstTimeIn.Width = 83; // // colTimesheetLastTimeOut // this.colTimesheetLastTimeOut.Caption = "Time (Out)"; this.colTimesheetLastTimeOut.DisplayFormat.FormatString = "hh:mm tt"; this.colTimesheetLastTimeOut.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime; this.colTimesheetLastTimeOut.FieldName = "Last Time Out"; this.colTimesheetLastTimeOut.Name = "colTimesheetLastTimeOut"; this.colTimesheetLastTimeOut.Visible = true; this.colTimesheetLastTimeOut.VisibleIndex = 6; this.colTimesheetLastTimeOut.Width = 84; // // colTimesheetManagerNameIn // this.colTimesheetManagerNameIn.Caption = "Edit (In)"; this.colTimesheetManagerNameIn.FieldName = "strManagerNameIn"; this.colTimesheetManagerNameIn.Name = "colTimesheetManagerNameIn"; this.colTimesheetManagerNameIn.Visible = true; this.colTimesheetManagerNameIn.VisibleIndex = 7; this.colTimesheetManagerNameIn.Width = 120; // // colTimesheetManagerNameOut // this.colTimesheetManagerNameOut.Caption = "Edit (Out)"; this.colTimesheetManagerNameOut.FieldName = "strManagerNameOut"; this.colTimesheetManagerNameOut.Name = "colTimesheetManagerNameOut"; this.colTimesheetManagerNameOut.Visible = true; this.colTimesheetManagerNameOut.VisibleIndex = 8; this.colTimesheetManagerNameOut.Width = 122; // // colTimesheetLateness // this.colTimesheetLateness.Caption = "Lateness"; this.colTimesheetLateness.ColumnEdit = this.repositoryItemCheckEdit2; this.colTimesheetLateness.FieldName = "fLateness"; this.colTimesheetLateness.Name = "colTimesheetLateness"; this.colTimesheetLateness.Visible = true; this.colTimesheetLateness.VisibleIndex = 9; this.colTimesheetLateness.Width = 54; // // repositoryItemCheckEdit2 // this.repositoryItemCheckEdit2.AutoHeight = false; this.repositoryItemCheckEdit2.Name = "repositoryItemCheckEdit2"; this.repositoryItemCheckEdit2.NullStyle = DevExpress.XtraEditors.Controls.StyleIndeterminate.Unchecked; // // colTimesheetTotalLateness // this.colTimesheetTotalLateness.Caption = "Total Lateness"; this.colTimesheetTotalLateness.DisplayFormat.FormatString = "HH:mm"; this.colTimesheetTotalLateness.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime; this.colTimesheetTotalLateness.FieldName = "dtLateness"; this.colTimesheetTotalLateness.Name = "colTimesheetTotalLateness"; this.colTimesheetTotalLateness.Visible = true; this.colTimesheetTotalLateness.VisibleIndex = 10; this.colTimesheetTotalLateness.Width = 80; // // groupOvertime // this.groupOvertime.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowOnly; this.groupOvertime.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder; this.groupOvertime.Controls.Add(this.groupControl15); this.groupOvertime.Location = new System.Drawing.Point(0, 32); this.groupOvertime.Name = "groupOvertime"; this.groupOvertime.ShowCaption = false; this.groupOvertime.Size = new System.Drawing.Size(1007, 576); this.groupOvertime.TabIndex = 15; this.groupOvertime.Text = "GroupControl1"; this.groupOvertime.Visible = false; // // groupControl15 // this.groupControl15.Appearance.BackColor = System.Drawing.SystemColors.Control; this.groupControl15.Appearance.Options.UseBackColor = true; this.groupControl15.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowOnly; this.groupControl15.Controls.Add(this.sbtnOvertimeDelete); this.groupControl15.Controls.Add(this.groupControl16); this.groupControl15.Controls.Add(this.sbtnApplyOvertime); this.groupControl15.Controls.Add(this.gridctrOvertime); this.groupControl15.Location = new System.Drawing.Point(8, 0); this.groupControl15.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003; this.groupControl15.LookAndFeel.UseDefaultLookAndFeel = false; this.groupControl15.Name = "groupControl15"; this.groupControl15.Size = new System.Drawing.Size(992, 574); this.groupControl15.TabIndex = 1; this.groupControl15.Text = "OVERTIME"; // // sbtnOvertimeDelete // this.sbtnOvertimeDelete.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold); this.sbtnOvertimeDelete.Appearance.Options.UseFont = true; this.sbtnOvertimeDelete.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple; this.sbtnOvertimeDelete.Location = new System.Drawing.Point(452, 48); this.sbtnOvertimeDelete.Name = "sbtnOvertimeDelete"; this.sbtnOvertimeDelete.Size = new System.Drawing.Size(104, 20); this.sbtnOvertimeDelete.TabIndex = 2; this.sbtnOvertimeDelete.Text = "Cancel Overtime"; this.sbtnOvertimeDelete.Click += new System.EventHandler(this.sbtnOvertimeDelete_Click); // // groupControl16 // this.groupControl16.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowOnly; this.groupControl16.Controls.Add(this.cbOvertimeYear); this.groupControl16.Controls.Add(this.label14); this.groupControl16.Controls.Add(this.label15); this.groupControl16.Controls.Add(this.cbOvertimeMonth); this.groupControl16.Controls.Add(this.sbtnOvertimeInquiry); this.groupControl16.Location = new System.Drawing.Point(6, 24); this.groupControl16.Name = "groupControl16"; this.groupControl16.Size = new System.Drawing.Size(328, 52); this.groupControl16.TabIndex = 0; this.groupControl16.Text = "Inquiry"; // // cbOvertimeYear // this.cbOvertimeYear.EditValue = ""; this.cbOvertimeYear.ImeMode = System.Windows.Forms.ImeMode.On; this.cbOvertimeYear.Location = new System.Drawing.Point(178, 24); this.cbOvertimeYear.Name = "cbOvertimeYear"; this.cbOvertimeYear.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)}); this.cbOvertimeYear.Properties.PopupSizeable = true; this.cbOvertimeYear.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor; this.cbOvertimeYear.Size = new System.Drawing.Size(64, 20); this.cbOvertimeYear.TabIndex = 1; // // label14 // this.label14.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label14.Location = new System.Drawing.Point(140, 24); this.label14.Name = "label14"; this.label14.Size = new System.Drawing.Size(34, 20); this.label14.TabIndex = 15; this.label14.Text = "Year:"; // // label15 // this.label15.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label15.Location = new System.Drawing.Point(12, 24); this.label15.Name = "label15"; this.label15.Size = new System.Drawing.Size(42, 20); this.label15.TabIndex = 14; this.label15.Text = "Month:"; // // cbOvertimeMonth // this.cbOvertimeMonth.EditValue = "January"; this.cbOvertimeMonth.ImeMode = System.Windows.Forms.ImeMode.On; this.cbOvertimeMonth.Location = new System.Drawing.Point(56, 24); this.cbOvertimeMonth.Name = "cbOvertimeMonth"; this.cbOvertimeMonth.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)}); this.cbOvertimeMonth.Properties.Items.AddRange(new object[] { "January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"}); this.cbOvertimeMonth.Properties.PopupSizeable = true; this.cbOvertimeMonth.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor; this.cbOvertimeMonth.Size = new System.Drawing.Size(80, 20); this.cbOvertimeMonth.TabIndex = 0; // // sbtnOvertimeInquiry // this.sbtnOvertimeInquiry.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold); this.sbtnOvertimeInquiry.Appearance.Options.UseFont = true; this.sbtnOvertimeInquiry.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple; this.sbtnOvertimeInquiry.Location = new System.Drawing.Point(246, 24); this.sbtnOvertimeInquiry.Name = "sbtnOvertimeInquiry"; this.sbtnOvertimeInquiry.Size = new System.Drawing.Size(72, 20); this.sbtnOvertimeInquiry.TabIndex = 2; this.sbtnOvertimeInquiry.Text = "Inquiry"; this.sbtnOvertimeInquiry.Click += new System.EventHandler(this.sbtnOvertimeInquiry_Click); // // sbtnApplyOvertime // this.sbtnApplyOvertime.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold); this.sbtnApplyOvertime.Appearance.Options.UseFont = true; this.sbtnApplyOvertime.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple; this.sbtnApplyOvertime.Location = new System.Drawing.Point(340, 48); this.sbtnApplyOvertime.Name = "sbtnApplyOvertime"; this.sbtnApplyOvertime.Size = new System.Drawing.Size(104, 20); this.sbtnApplyOvertime.TabIndex = 1; this.sbtnApplyOvertime.Text = "Apply Overtime"; this.sbtnApplyOvertime.Click += new System.EventHandler(this.sbtnApplyOvertime_Click); // // gridctrOvertime // this.gridctrOvertime.Dock = System.Windows.Forms.DockStyle.Bottom; this.gridctrOvertime.EmbeddedNavigator.Name = ""; this.gridctrOvertime.Location = new System.Drawing.Point(2, 80); this.gridctrOvertime.LookAndFeel.UseDefaultLookAndFeel = false; this.gridctrOvertime.MainView = this.gvOvertime; this.gridctrOvertime.Name = "gridctrOvertime"; this.gridctrOvertime.Size = new System.Drawing.Size(988, 492); this.gridctrOvertime.TabIndex = 3; this.gridctrOvertime.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] { this.gvOvertime}); // // gvOvertime // this.gvOvertime.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] { this.colOvertimeDate, this.colOvertimeHours, this.colOvertimeReason, this.colOvertimeCharging, this.colOvertimeManager, this.colOvertimeApprovingManagerID, this.colOvertimeStatus}); this.gvOvertime.GridControl = this.gridctrOvertime; this.gvOvertime.Name = "gvOvertime"; this.gvOvertime.OptionsBehavior.AllowIncrementalSearch = true; this.gvOvertime.OptionsBehavior.Editable = false; this.gvOvertime.OptionsCustomization.AllowFilter = false; this.gvOvertime.OptionsView.ShowGroupPanel = false; this.gvOvertime.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] { new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.colOvertimeDate, DevExpress.Data.ColumnSortOrder.Descending)}); // // colOvertimeDate // this.colOvertimeDate.Caption = "Date"; this.colOvertimeDate.DisplayFormat.FormatString = "dd/MM/yyyy"; this.colOvertimeDate.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime; this.colOvertimeDate.FieldName = "dtDate"; this.colOvertimeDate.Name = "colOvertimeDate"; this.colOvertimeDate.Visible = true; this.colOvertimeDate.VisibleIndex = 0; this.colOvertimeDate.Width = 115; // // colOvertimeHours // this.colOvertimeHours.Caption = "Hours"; this.colOvertimeHours.FieldName = "nHours"; this.colOvertimeHours.Name = "colOvertimeHours"; this.colOvertimeHours.Visible = true; this.colOvertimeHours.VisibleIndex = 1; this.colOvertimeHours.Width = 96; // // colOvertimeReason // this.colOvertimeReason.Caption = "Reason"; this.colOvertimeReason.FieldName = "strReason"; this.colOvertimeReason.Name = "colOvertimeReason"; this.colOvertimeReason.Visible = true; this.colOvertimeReason.VisibleIndex = 2; this.colOvertimeReason.Width = 320; // // colOvertimeCharging // this.colOvertimeCharging.Caption = "Charging"; this.colOvertimeCharging.FieldName = "Charging"; this.colOvertimeCharging.Name = "colOvertimeCharging"; this.colOvertimeCharging.Visible = true; this.colOvertimeCharging.VisibleIndex = 3; this.colOvertimeCharging.Width = 84; // // colOvertimeManager // this.colOvertimeManager.Caption = "Approving Manager"; this.colOvertimeManager.FieldName = "strEmployeeName"; this.colOvertimeManager.Name = "colOvertimeManager"; this.colOvertimeManager.Visible = true; this.colOvertimeManager.VisibleIndex = 4; this.colOvertimeManager.Width = 194; // // colOvertimeApprovingManagerID // this.colOvertimeApprovingManagerID.Caption = "Approving Manager ID"; this.colOvertimeApprovingManagerID.FieldName = "nApprovingManagerID"; this.colOvertimeApprovingManagerID.Name = "colOvertimeApprovingManagerID"; this.colOvertimeApprovingManagerID.Visible = true; this.colOvertimeApprovingManagerID.VisibleIndex = 5; this.colOvertimeApprovingManagerID.Width = 57; // // colOvertimeStatus // this.colOvertimeStatus.Caption = "Status"; this.colOvertimeStatus.FieldName = "Status"; this.colOvertimeStatus.Name = "colOvertimeStatus"; this.colOvertimeStatus.Visible = true; this.colOvertimeStatus.VisibleIndex = 6; this.colOvertimeStatus.Width = 101; // // groupLateness // this.groupLateness.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowOnly; this.groupLateness.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder; this.groupLateness.Controls.Add(this.groupControl13); this.groupLateness.Location = new System.Drawing.Point(0, 32); this.groupLateness.Name = "groupLateness"; this.groupLateness.ShowCaption = false; this.groupLateness.Size = new System.Drawing.Size(1007, 576); this.groupLateness.TabIndex = 14; this.groupLateness.Text = "GroupControl1"; // // groupControl13 // this.groupControl13.Appearance.BackColor = System.Drawing.SystemColors.Control; this.groupControl13.Appearance.Options.UseBackColor = true; this.groupControl13.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowOnly; this.groupControl13.Controls.Add(this.groupControl14); this.groupControl13.Controls.Add(this.gridctrLateness); this.groupControl13.Location = new System.Drawing.Point(8, 0); this.groupControl13.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003; this.groupControl13.LookAndFeel.UseDefaultLookAndFeel = false; this.groupControl13.Name = "groupControl13"; this.groupControl13.Size = new System.Drawing.Size(992, 574); this.groupControl13.TabIndex = 1; this.groupControl13.Text = "LATENESS"; // // groupControl14 // this.groupControl14.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowOnly; this.groupControl14.Controls.Add(this.cbLatenessYear); this.groupControl14.Controls.Add(this.label12); this.groupControl14.Controls.Add(this.label13); this.groupControl14.Controls.Add(this.cbLatenessMonth); this.groupControl14.Controls.Add(this.sbtnLatenessInquiry); this.groupControl14.Location = new System.Drawing.Point(6, 24); this.groupControl14.Name = "groupControl14"; this.groupControl14.Size = new System.Drawing.Size(328, 52); this.groupControl14.TabIndex = 0; this.groupControl14.Text = "Inquiry"; // // cbLatenessYear // this.cbLatenessYear.EditValue = ""; this.cbLatenessYear.ImeMode = System.Windows.Forms.ImeMode.On; this.cbLatenessYear.Location = new System.Drawing.Point(178, 24); this.cbLatenessYear.Name = "cbLatenessYear"; this.cbLatenessYear.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)}); this.cbLatenessYear.Properties.PopupSizeable = true; this.cbLatenessYear.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor; this.cbLatenessYear.Size = new System.Drawing.Size(64, 20); this.cbLatenessYear.TabIndex = 1; // // label12 // this.label12.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label12.Location = new System.Drawing.Point(140, 24); this.label12.Name = "label12"; this.label12.Size = new System.Drawing.Size(34, 20); this.label12.TabIndex = 15; this.label12.Text = "Year:"; // // label13 // this.label13.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label13.Location = new System.Drawing.Point(12, 24); this.label13.Name = "label13"; this.label13.Size = new System.Drawing.Size(42, 20); this.label13.TabIndex = 14; this.label13.Text = "Month:"; // // cbLatenessMonth // this.cbLatenessMonth.EditValue = "January"; this.cbLatenessMonth.ImeMode = System.Windows.Forms.ImeMode.On; this.cbLatenessMonth.Location = new System.Drawing.Point(56, 24); this.cbLatenessMonth.Name = "cbLatenessMonth"; this.cbLatenessMonth.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)}); this.cbLatenessMonth.Properties.Items.AddRange(new object[] { "January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"}); this.cbLatenessMonth.Properties.PopupSizeable = true; this.cbLatenessMonth.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor; this.cbLatenessMonth.Size = new System.Drawing.Size(80, 20); this.cbLatenessMonth.TabIndex = 0; // // sbtnLatenessInquiry // this.sbtnLatenessInquiry.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold); this.sbtnLatenessInquiry.Appearance.Options.UseFont = true; this.sbtnLatenessInquiry.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple; this.sbtnLatenessInquiry.Location = new System.Drawing.Point(246, 24); this.sbtnLatenessInquiry.Name = "sbtnLatenessInquiry"; this.sbtnLatenessInquiry.Size = new System.Drawing.Size(72, 20); this.sbtnLatenessInquiry.TabIndex = 2; this.sbtnLatenessInquiry.Text = "Inquiry"; this.sbtnLatenessInquiry.Click += new System.EventHandler(this.sbtnLatenessInquiry_Click); // // gridctrLateness // this.gridctrLateness.Dock = System.Windows.Forms.DockStyle.Bottom; this.gridctrLateness.EmbeddedNavigator.Name = ""; this.gridctrLateness.Location = new System.Drawing.Point(2, 80); this.gridctrLateness.LookAndFeel.UseDefaultLookAndFeel = false; this.gridctrLateness.MainView = this.gvLateness; this.gridctrLateness.Name = "gridctrLateness"; this.gridctrLateness.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] { this.repositoryItemTimeEdit1, this.repositoryItemTimeEdit2}); this.gridctrLateness.Size = new System.Drawing.Size(988, 492); this.gridctrLateness.TabIndex = 1; this.gridctrLateness.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] { this.gvLateness}); // // gvLateness // this.gvLateness.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] { this.colLatenessRosterID, this.colLatenessDate, this.colLatenessBranch, this.colLatenessType, this.colLatenessExpected, this.colLatenessActual, this.colLatenessLateness}); this.gvLateness.GridControl = this.gridctrLateness; this.gvLateness.Name = "gvLateness"; this.gvLateness.OptionsBehavior.AllowIncrementalSearch = true; this.gvLateness.OptionsBehavior.Editable = false; this.gvLateness.OptionsCustomization.AllowFilter = false; this.gvLateness.OptionsView.ShowFooter = true; this.gvLateness.OptionsView.ShowGroupPanel = false; this.gvLateness.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] { new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.colLatenessDate, DevExpress.Data.ColumnSortOrder.Descending)}); // // colLatenessRosterID // this.colLatenessRosterID.Caption = "Roster ID"; this.colLatenessRosterID.FieldName = "nRosterID"; this.colLatenessRosterID.Name = "colLatenessRosterID"; // // colLatenessDate // this.colLatenessDate.Caption = "Date"; this.colLatenessDate.DisplayFormat.FormatString = "dd/MM/yyyy"; this.colLatenessDate.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime; this.colLatenessDate.FieldName = "dtDate"; this.colLatenessDate.Name = "colLatenessDate"; this.colLatenessDate.Visible = true; this.colLatenessDate.VisibleIndex = 0; this.colLatenessDate.Width = 185; // // colLatenessBranch // this.colLatenessBranch.Caption = "Branch Code"; this.colLatenessBranch.FieldName = "strBranchCode"; this.colLatenessBranch.Name = "colLatenessBranch"; this.colLatenessBranch.Visible = true; this.colLatenessBranch.VisibleIndex = 1; this.colLatenessBranch.Width = 85; // // colLatenessType // this.colLatenessType.Caption = "Type"; this.colLatenessType.FieldName = "strType"; this.colLatenessType.Name = "colLatenessType"; this.colLatenessType.Visible = true; this.colLatenessType.VisibleIndex = 2; this.colLatenessType.Width = 124; // // colLatenessExpected // this.colLatenessExpected.Caption = "Expected Time"; this.colLatenessExpected.ColumnEdit = this.repositoryItemTimeEdit1; this.colLatenessExpected.FieldName = "dtExpected"; this.colLatenessExpected.Name = "colLatenessExpected"; this.colLatenessExpected.Visible = true; this.colLatenessExpected.VisibleIndex = 3; this.colLatenessExpected.Width = 196; // // repositoryItemTimeEdit1 // this.repositoryItemTimeEdit1.AutoHeight = false; this.repositoryItemTimeEdit1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton()}); this.repositoryItemTimeEdit1.Name = "repositoryItemTimeEdit1"; // // colLatenessActual // this.colLatenessActual.Caption = "Actual Time"; this.colLatenessActual.ColumnEdit = this.repositoryItemTimeEdit2; this.colLatenessActual.FieldName = "dtActual"; this.colLatenessActual.Name = "colLatenessActual"; this.colLatenessActual.Visible = true; this.colLatenessActual.VisibleIndex = 4; this.colLatenessActual.Width = 208; // // repositoryItemTimeEdit2 // this.repositoryItemTimeEdit2.AutoHeight = false; this.repositoryItemTimeEdit2.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton()}); this.repositoryItemTimeEdit2.Name = "repositoryItemTimeEdit2"; // // colLatenessLateness // this.colLatenessLateness.Caption = "Lateness (Minutes)"; this.colLatenessLateness.DisplayFormat.FormatString = "#.00"; this.colLatenessLateness.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric; this.colLatenessLateness.FieldName = "nLateness"; this.colLatenessLateness.Name = "colLatenessLateness"; this.colLatenessLateness.SummaryItem.DisplayFormat = "{0:#.00}"; this.colLatenessLateness.SummaryItem.SummaryType = DevExpress.Data.SummaryItemType.Sum; this.colLatenessLateness.Visible = true; this.colLatenessLateness.VisibleIndex = 5; this.colLatenessLateness.Width = 169; // // tabStaffFour // this.tabStaffFour.Appearance.Header.Font = new System.Drawing.Font("Tahoma", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.tabStaffFour.Appearance.Header.Options.UseFont = true; this.tabStaffFour.Controls.Add(this.lblFour_2); this.tabStaffFour.Controls.Add(this.lblFour_1); this.tabStaffFour.Controls.Add(this.groupAppointment); this.tabStaffFour.Controls.Add(this.groupContact); this.tabStaffFour.Name = "tabStaffFour"; this.tabStaffFour.PageVisible = false; this.tabStaffFour.Size = new System.Drawing.Size(1007, 612); this.tabStaffFour.Text = "Appointments"; this.tabStaffFour.VisibleChanged += new System.EventHandler(this.tabStaffAppointments_VisibleChanged); // // 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(160, 8); 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 = "Contact"; 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, 8); 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 = "Appointment"; this.lblFour_1.Click += new System.EventHandler(this.lblFour_1_Click); // // groupAppointment // this.groupAppointment.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowOnly; this.groupAppointment.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder; this.groupAppointment.Controls.Add(this.groupAppointmentEntry); this.groupAppointment.Location = new System.Drawing.Point(0, 34); this.groupAppointment.Name = "groupAppointment"; this.groupAppointment.ShowCaption = false; this.groupAppointment.Size = new System.Drawing.Size(1007, 584); this.groupAppointment.TabIndex = 21; this.groupAppointment.Text = "GroupControl3"; // // groupAppointmentEntry // this.groupAppointmentEntry.Appearance.BackColor = System.Drawing.SystemColors.Control; this.groupAppointmentEntry.Appearance.Options.UseBackColor = true; this.groupAppointmentEntry.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowOnly; this.groupAppointmentEntry.Controls.Add(this.groupControl12); this.groupAppointmentEntry.Controls.Add(this.sbtnAppointmentDelete); this.groupAppointmentEntry.Controls.Add(this.sbtnAppointmentPrint); this.groupAppointmentEntry.Controls.Add(this.sbtnAppointmentEdit); this.groupAppointmentEntry.Controls.Add(this.sbtnAppointmentNew); this.groupAppointmentEntry.Controls.Add(this.gridctrAppointment); this.groupAppointmentEntry.Location = new System.Drawing.Point(8, 0); this.groupAppointmentEntry.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003; this.groupAppointmentEntry.LookAndFeel.UseDefaultLookAndFeel = false; this.groupAppointmentEntry.Name = "groupAppointmentEntry"; this.groupAppointmentEntry.Size = new System.Drawing.Size(992, 576); this.groupAppointmentEntry.TabIndex = 0; this.groupAppointmentEntry.Text = "APPOINTMENT"; // // groupControl12 // this.groupControl12.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowOnly; this.groupControl12.Controls.Add(this.cbAppointmentYear); this.groupControl12.Controls.Add(this.label26); this.groupControl12.Controls.Add(this.label27); this.groupControl12.Controls.Add(this.cbAppointmentMonth); this.groupControl12.Controls.Add(this.sbtnAppointmentInquiry); this.groupControl12.Location = new System.Drawing.Point(8, 24); this.groupControl12.Name = "groupControl12"; this.groupControl12.Size = new System.Drawing.Size(328, 52); this.groupControl12.TabIndex = 0; this.groupControl12.Text = "Inquiry"; // // cbAppointmentYear // this.cbAppointmentYear.EditValue = ""; this.cbAppointmentYear.ImeMode = System.Windows.Forms.ImeMode.On; this.cbAppointmentYear.Location = new System.Drawing.Point(178, 24); this.cbAppointmentYear.Name = "cbAppointmentYear"; this.cbAppointmentYear.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)}); this.cbAppointmentYear.Properties.PopupSizeable = true; this.cbAppointmentYear.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor; this.cbAppointmentYear.Size = new System.Drawing.Size(64, 20); this.cbAppointmentYear.TabIndex = 1; // // label26 // this.label26.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label26.Location = new System.Drawing.Point(140, 24); this.label26.Name = "label26"; this.label26.Size = new System.Drawing.Size(34, 20); this.label26.TabIndex = 15; this.label26.Text = "Year:"; // // label27 // this.label27.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label27.Location = new System.Drawing.Point(12, 24); this.label27.Name = "label27"; this.label27.Size = new System.Drawing.Size(42, 20); this.label27.TabIndex = 14; this.label27.Text = "Month:"; // // cbAppointmentMonth // this.cbAppointmentMonth.EditValue = "January"; this.cbAppointmentMonth.ImeMode = System.Windows.Forms.ImeMode.On; this.cbAppointmentMonth.Location = new System.Drawing.Point(56, 24); this.cbAppointmentMonth.Name = "cbAppointmentMonth"; this.cbAppointmentMonth.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)}); this.cbAppointmentMonth.Properties.Items.AddRange(new object[] { "January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"}); this.cbAppointmentMonth.Properties.PopupSizeable = true; this.cbAppointmentMonth.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor; this.cbAppointmentMonth.Size = new System.Drawing.Size(80, 20); this.cbAppointmentMonth.TabIndex = 0; // // sbtnAppointmentInquiry // this.sbtnAppointmentInquiry.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold); this.sbtnAppointmentInquiry.Appearance.Options.UseFont = true; this.sbtnAppointmentInquiry.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple; this.sbtnAppointmentInquiry.Location = new System.Drawing.Point(246, 24); this.sbtnAppointmentInquiry.Name = "sbtnAppointmentInquiry"; this.sbtnAppointmentInquiry.Size = new System.Drawing.Size(72, 20); this.sbtnAppointmentInquiry.TabIndex = 2; this.sbtnAppointmentInquiry.Text = "Inquiry"; this.sbtnAppointmentInquiry.Click += new System.EventHandler(this.sbtnAppointmentInquiry_Click); // // sbtnAppointmentDelete // this.sbtnAppointmentDelete.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold); this.sbtnAppointmentDelete.Appearance.Options.UseFont = true; this.sbtnAppointmentDelete.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple; this.sbtnAppointmentDelete.Location = new System.Drawing.Point(504, 48); this.sbtnAppointmentDelete.Name = "sbtnAppointmentDelete"; this.sbtnAppointmentDelete.Size = new System.Drawing.Size(72, 20); this.sbtnAppointmentDelete.TabIndex = 3; this.sbtnAppointmentDelete.Text = "Delete"; this.sbtnAppointmentDelete.Click += new System.EventHandler(this.sbtnAppointmentDelete_Click); // // sbtnAppointmentPrint // this.sbtnAppointmentPrint.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold); this.sbtnAppointmentPrint.Appearance.Options.UseFont = true; this.sbtnAppointmentPrint.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple; this.sbtnAppointmentPrint.Location = new System.Drawing.Point(584, 48); this.sbtnAppointmentPrint.Name = "sbtnAppointmentPrint"; this.sbtnAppointmentPrint.Size = new System.Drawing.Size(72, 20); this.sbtnAppointmentPrint.TabIndex = 3; this.sbtnAppointmentPrint.Text = "Print"; this.sbtnAppointmentPrint.Click += new System.EventHandler(this.sbtnAppointmentPrint_Click); // // sbtnAppointmentEdit // this.sbtnAppointmentEdit.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold); this.sbtnAppointmentEdit.Appearance.Options.UseFont = true; this.sbtnAppointmentEdit.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple; this.sbtnAppointmentEdit.Location = new System.Drawing.Point(424, 48); this.sbtnAppointmentEdit.Name = "sbtnAppointmentEdit"; this.sbtnAppointmentEdit.Size = new System.Drawing.Size(72, 20); this.sbtnAppointmentEdit.TabIndex = 2; this.sbtnAppointmentEdit.Text = "Edit"; this.sbtnAppointmentEdit.Click += new System.EventHandler(this.sbtnAppointmentEdit_Click); // // sbtnAppointmentNew // this.sbtnAppointmentNew.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold); this.sbtnAppointmentNew.Appearance.Options.UseFont = true; this.sbtnAppointmentNew.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple; this.sbtnAppointmentNew.Location = new System.Drawing.Point(344, 48); this.sbtnAppointmentNew.Name = "sbtnAppointmentNew"; this.sbtnAppointmentNew.Size = new System.Drawing.Size(72, 20); this.sbtnAppointmentNew.TabIndex = 1; this.sbtnAppointmentNew.Text = "New"; this.sbtnAppointmentNew.Click += new System.EventHandler(this.sbtnAppointmentNew_Click); // // gridctrAppointment // this.gridctrAppointment.Dock = System.Windows.Forms.DockStyle.Bottom; this.gridctrAppointment.EmbeddedNavigator.Name = ""; this.gridctrAppointment.Location = new System.Drawing.Point(2, 86); this.gridctrAppointment.LookAndFeel.UseDefaultLookAndFeel = false; this.gridctrAppointment.MainView = this.gvAppointment; this.gridctrAppointment.Name = "gridctrAppointment"; this.gridctrAppointment.Size = new System.Drawing.Size(988, 488); this.gridctrAppointment.TabIndex = 4; this.gridctrAppointment.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] { this.gvAppointment}); // // gvAppointment // this.gvAppointment.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] { this.colAppointmentDate, this.colAppointmentStartDate, this.colAppointmentEndDate, this.colAppointmentOrganization, this.colAppointmentContact, this.colAppointmentTypeID, this.colAppointmentRemarks}); this.gvAppointment.GridControl = this.gridctrAppointment; this.gvAppointment.Name = "gvAppointment"; this.gvAppointment.OptionsBehavior.AllowIncrementalSearch = true; this.gvAppointment.OptionsBehavior.Editable = false; this.gvAppointment.OptionsCustomization.AllowFilter = false; this.gvAppointment.OptionsView.ShowGroupPanel = false; this.gvAppointment.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] { new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.colAppointmentDate, DevExpress.Data.ColumnSortOrder.Descending)}); // // colAppointmentDate // this.colAppointmentDate.Caption = "Date"; this.colAppointmentDate.DisplayFormat.FormatString = "dd/MM/yyyy"; this.colAppointmentDate.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime; this.colAppointmentDate.FieldName = "dtDate"; this.colAppointmentDate.Name = "colAppointmentDate"; this.colAppointmentDate.Visible = true; this.colAppointmentDate.VisibleIndex = 0; this.colAppointmentDate.Width = 93; // // colAppointmentStartDate // this.colAppointmentStartDate.Caption = "Start Time"; this.colAppointmentStartDate.DisplayFormat.FormatString = "hh:mm tt"; this.colAppointmentStartDate.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime; this.colAppointmentStartDate.FieldName = "dtStartTime"; this.colAppointmentStartDate.Name = "colAppointmentStartDate"; this.colAppointmentStartDate.Visible = true; this.colAppointmentStartDate.VisibleIndex = 1; this.colAppointmentStartDate.Width = 85; // // colAppointmentEndDate // this.colAppointmentEndDate.Caption = "End Time"; this.colAppointmentEndDate.DisplayFormat.FormatString = "hh:mm tt"; this.colAppointmentEndDate.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime; this.colAppointmentEndDate.FieldName = "dtEndTime"; this.colAppointmentEndDate.Name = "colAppointmentEndDate"; this.colAppointmentEndDate.Visible = true; this.colAppointmentEndDate.VisibleIndex = 2; this.colAppointmentEndDate.Width = 79; // // colAppointmentOrganization // this.colAppointmentOrganization.Caption = "Organization / Place of Appointment"; this.colAppointmentOrganization.FieldName = "strOrganization"; this.colAppointmentOrganization.Name = "colAppointmentOrganization"; this.colAppointmentOrganization.Visible = true; this.colAppointmentOrganization.VisibleIndex = 3; this.colAppointmentOrganization.Width = 215; // // colAppointmentContact // this.colAppointmentContact.Caption = "Contact"; this.colAppointmentContact.FieldName = "strContactName"; this.colAppointmentContact.Name = "colAppointmentContact"; this.colAppointmentContact.Visible = true; this.colAppointmentContact.VisibleIndex = 4; this.colAppointmentContact.Width = 153; // // colAppointmentTypeID // this.colAppointmentTypeID.Caption = "Appointment Type"; this.colAppointmentTypeID.FieldName = "nAppointmentTypeId"; this.colAppointmentTypeID.Name = "colAppointmentTypeID"; this.colAppointmentTypeID.Visible = true; this.colAppointmentTypeID.VisibleIndex = 5; // // colAppointmentRemarks // this.colAppointmentRemarks.Caption = "Remarks"; this.colAppointmentRemarks.FieldName = "strRemarks"; this.colAppointmentRemarks.Name = "colAppointmentRemarks"; this.colAppointmentRemarks.Visible = true; this.colAppointmentRemarks.VisibleIndex = 6; this.colAppointmentRemarks.Width = 342; // // groupContact // this.groupContact.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowOnly; this.groupContact.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder; this.groupContact.Controls.Add(this.groupContactEntry); this.groupContact.Location = new System.Drawing.Point(0, 34); this.groupContact.Name = "groupContact"; this.groupContact.ShowCaption = false; this.groupContact.Size = new System.Drawing.Size(1007, 584); this.groupContact.TabIndex = 20; this.groupContact.Text = "GroupControl3"; // // groupContactEntry // this.groupContactEntry.Appearance.BackColor = System.Drawing.SystemColors.Control; this.groupContactEntry.Appearance.Options.UseBackColor = true; this.groupContactEntry.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowOnly; this.groupContactEntry.Controls.Add(this.sbtnContactEdit); this.groupContactEntry.Controls.Add(this.sbtnContactDelete); this.groupContactEntry.Controls.Add(this.sbtnContactNew); this.groupContactEntry.Controls.Add(this.gridctrContact); this.groupContactEntry.Location = new System.Drawing.Point(8, 0); this.groupContactEntry.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003; this.groupContactEntry.LookAndFeel.UseDefaultLookAndFeel = false; this.groupContactEntry.Name = "groupContactEntry"; this.groupContactEntry.Size = new System.Drawing.Size(992, 576); this.groupContactEntry.TabIndex = 1; this.groupContactEntry.Text = "CONTACT"; // // sbtnContactEdit // this.sbtnContactEdit.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold); this.sbtnContactEdit.Appearance.Options.UseFont = true; this.sbtnContactEdit.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple; this.sbtnContactEdit.Location = new System.Drawing.Point(96, 32); this.sbtnContactEdit.Name = "sbtnContactEdit"; this.sbtnContactEdit.Size = new System.Drawing.Size(72, 20); this.sbtnContactEdit.TabIndex = 1; this.sbtnContactEdit.Text = "Edit"; this.sbtnContactEdit.Click += new System.EventHandler(this.sbtnContactEdit_Click); // // sbtnContactDelete // this.sbtnContactDelete.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold); this.sbtnContactDelete.Appearance.Options.UseFont = true; this.sbtnContactDelete.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple; this.sbtnContactDelete.Location = new System.Drawing.Point(176, 32); this.sbtnContactDelete.Name = "sbtnContactDelete"; this.sbtnContactDelete.Size = new System.Drawing.Size(72, 20); this.sbtnContactDelete.TabIndex = 2; this.sbtnContactDelete.Text = "Delete"; this.sbtnContactDelete.Click += new System.EventHandler(this.sbtnContactDelete_Click); // // sbtnContactNew // this.sbtnContactNew.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold); this.sbtnContactNew.Appearance.Options.UseFont = true; this.sbtnContactNew.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple; this.sbtnContactNew.Location = new System.Drawing.Point(16, 32); this.sbtnContactNew.Name = "sbtnContactNew"; this.sbtnContactNew.Size = new System.Drawing.Size(72, 20); this.sbtnContactNew.TabIndex = 0; this.sbtnContactNew.Text = "New"; this.sbtnContactNew.Click += new System.EventHandler(this.sbtnContactNew_Click); // // gridctrContact // this.gridctrContact.Dock = System.Windows.Forms.DockStyle.Bottom; this.gridctrContact.EmbeddedNavigator.Name = ""; this.gridctrContact.Location = new System.Drawing.Point(2, 62); this.gridctrContact.LookAndFeel.UseDefaultLookAndFeel = false; this.gridctrContact.MainView = this.gvContact; this.gridctrContact.Name = "gridctrContact"; this.gridctrContact.Size = new System.Drawing.Size(988, 512); this.gridctrContact.TabIndex = 3; this.gridctrContact.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] { this.gvContact}); // // gvContact // this.gvContact.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] { this.colContactPerson, this.colContactOrganization, this.colContactMobile, this.colContactOfficeNo, this.colContactEmail, this.colContactFax, this.colContactAddress}); this.gvContact.GridControl = this.gridctrContact; this.gvContact.Name = "gvContact"; this.gvContact.OptionsBehavior.AllowIncrementalSearch = true; this.gvContact.OptionsBehavior.Editable = false; this.gvContact.OptionsCustomization.AllowFilter = false; this.gvContact.OptionsView.ShowGroupPanel = false; // // colContactPerson // this.colContactPerson.Caption = "Contact Person"; this.colContactPerson.FieldName = "strContactName"; this.colContactPerson.Name = "colContactPerson"; this.colContactPerson.Visible = true; this.colContactPerson.VisibleIndex = 0; this.colContactPerson.Width = 128; // // colContactOrganization // this.colContactOrganization.Caption = "Organization"; this.colContactOrganization.FieldName = "strOrganization"; this.colContactOrganization.Name = "colContactOrganization"; this.colContactOrganization.Visible = true; this.colContactOrganization.VisibleIndex = 1; this.colContactOrganization.Width = 150; // // colContactMobile // this.colContactMobile.Caption = "Mobile No."; this.colContactMobile.FieldName = "strMobileNo"; this.colContactMobile.Name = "colContactMobile"; this.colContactMobile.Visible = true; this.colContactMobile.VisibleIndex = 2; this.colContactMobile.Width = 107; // // colContactOfficeNo // this.colContactOfficeNo.Caption = "Office No."; this.colContactOfficeNo.FieldName = "strOfficeNo"; this.colContactOfficeNo.Name = "colContactOfficeNo"; this.colContactOfficeNo.Visible = true; this.colContactOfficeNo.VisibleIndex = 3; this.colContactOfficeNo.Width = 111; // // colContactEmail // this.colContactEmail.Caption = "Email Address"; this.colContactEmail.FieldName = "strEmail"; this.colContactEmail.Name = "colContactEmail"; this.colContactEmail.Visible = true; this.colContactEmail.VisibleIndex = 4; this.colContactEmail.Width = 159; // // colContactFax // this.colContactFax.Caption = "Fax"; this.colContactFax.FieldName = "strFax"; this.colContactFax.Name = "colContactFax"; this.colContactFax.Visible = true; this.colContactFax.VisibleIndex = 5; this.colContactFax.Width = 102; // // colContactAddress // this.colContactAddress.Caption = "Address"; this.colContactAddress.FieldName = "strAddress"; this.colContactAddress.Name = "colContactAddress"; this.colContactAddress.Visible = true; this.colContactAddress.VisibleIndex = 6; this.colContactAddress.Width = 210; // // tabStaffFive // this.tabStaffFive.Appearance.Header.Font = new System.Drawing.Font("Tahoma", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.tabStaffFive.Appearance.Header.Options.UseFont = true; this.tabStaffFive.Controls.Add(this.groupCustomerVoice); this.tabStaffFive.Name = "tabStaffFive"; this.tabStaffFive.PageVisible = false; this.tabStaffFive.Size = new System.Drawing.Size(1007, 612); this.tabStaffFive.Text = "Customer Voice"; this.tabStaffFive.VisibleChanged += new System.EventHandler(this.tabStaffCustomerVoice_VisibleChanged); // // groupCustomerVoice // this.groupCustomerVoice.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowOnly; this.groupCustomerVoice.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder; this.groupCustomerVoice.Controls.Add(this.lblmnuCustomerVoiceActionHistory); this.groupCustomerVoice.Controls.Add(this.lblmnuCustomerVoiceCVDetails); this.groupCustomerVoice.Controls.Add(this.GroupControl24); this.groupCustomerVoice.Controls.Add(this.groupCustomerVoiceActionHistory); this.groupCustomerVoice.Controls.Add(this.groupCustomerVoiceCVDetails); this.groupCustomerVoice.Location = new System.Drawing.Point(0, 8); this.groupCustomerVoice.Name = "groupCustomerVoice"; this.groupCustomerVoice.ShowCaption = false; this.groupCustomerVoice.Size = new System.Drawing.Size(1007, 584); this.groupCustomerVoice.TabIndex = 11; this.groupCustomerVoice.Text = "GroupControl1"; // // lblmnuCustomerVoiceActionHistory // this.lblmnuCustomerVoiceActionHistory.AutoSize = true; this.lblmnuCustomerVoiceActionHistory.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.lblmnuCustomerVoiceActionHistory.Location = new System.Drawing.Point(184, 320); this.lblmnuCustomerVoiceActionHistory.Name = "lblmnuCustomerVoiceActionHistory"; this.lblmnuCustomerVoiceActionHistory.Size = new System.Drawing.Size(104, 16); this.lblmnuCustomerVoiceActionHistory.TabIndex = 10; this.lblmnuCustomerVoiceActionHistory.Text = "Action History"; this.lblmnuCustomerVoiceActionHistory.Click += new System.EventHandler(this.lblmnuCustomerVoiceActionHistory_Click); // // lblmnuCustomerVoiceCVDetails // this.lblmnuCustomerVoiceCVDetails.AutoSize = true; this.lblmnuCustomerVoiceCVDetails.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.lblmnuCustomerVoiceCVDetails.Location = new System.Drawing.Point(24, 320); this.lblmnuCustomerVoiceCVDetails.Name = "lblmnuCustomerVoiceCVDetails"; this.lblmnuCustomerVoiceCVDetails.Size = new System.Drawing.Size(170, 16); this.lblmnuCustomerVoiceCVDetails.TabIndex = 9; this.lblmnuCustomerVoiceCVDetails.Text = "Customer Voice Details"; this.lblmnuCustomerVoiceCVDetails.Click += new System.EventHandler(this.lblmnuCustomerVoiceCVDetails_Click); // // GroupControl24 // this.GroupControl24.Appearance.BackColor = System.Drawing.SystemColors.Control; this.GroupControl24.Appearance.Options.UseBackColor = true; this.GroupControl24.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowOnly; this.GroupControl24.Controls.Add(this.luedtCVSubmitter); this.GroupControl24.Controls.Add(this.sbtnAssign); this.GroupControl24.Controls.Add(this.sbtnCVPrint); this.GroupControl24.Controls.Add(this.sbtnCVEdit); this.GroupControl24.Controls.Add(this.sbtnCVDelete); this.GroupControl24.Controls.Add(this.sbtnCVNew); this.GroupControl24.Controls.Add(this.cbListCV); this.GroupControl24.Controls.Add(this.gctrCV); this.GroupControl24.Controls.Add(this.label17); this.GroupControl24.Controls.Add(this.luedtCVAssignTo); this.GroupControl24.Controls.Add(this.lblCVSubmitter); this.GroupControl24.Location = new System.Drawing.Point(8, 0); this.GroupControl24.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003; this.GroupControl24.LookAndFeel.UseDefaultLookAndFeel = false; this.GroupControl24.Name = "GroupControl24"; this.GroupControl24.Size = new System.Drawing.Size(992, 312); this.GroupControl24.TabIndex = 0; this.GroupControl24.Text = "CUSTOMER VOICE"; // // luedtCVSubmitter // this.luedtCVSubmitter.Location = new System.Drawing.Point(400, 32); this.luedtCVSubmitter.Name = "luedtCVSubmitter"; this.luedtCVSubmitter.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)}); this.luedtCVSubmitter.Size = new System.Drawing.Size(176, 20); this.luedtCVSubmitter.TabIndex = 2; this.luedtCVSubmitter.EditValueChanged += new System.EventHandler(this.luedtCVSubmiter_EditValueChanged); // // sbtnAssign // this.sbtnAssign.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold); this.sbtnAssign.Appearance.Options.UseFont = true; this.sbtnAssign.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple; this.sbtnAssign.Location = new System.Drawing.Point(824, 32); this.sbtnAssign.Name = "sbtnAssign"; this.sbtnAssign.Size = new System.Drawing.Size(80, 20); this.sbtnAssign.TabIndex = 6; this.sbtnAssign.Text = "Assign To"; this.sbtnAssign.Click += new System.EventHandler(this.sbtnAssign_Click); // // sbtnCVPrint // this.sbtnCVPrint.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold); this.sbtnCVPrint.Appearance.Options.UseFont = true; this.sbtnCVPrint.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple; this.sbtnCVPrint.Location = new System.Drawing.Point(912, 32); this.sbtnCVPrint.Name = "sbtnCVPrint"; this.sbtnCVPrint.Size = new System.Drawing.Size(72, 20); this.sbtnCVPrint.TabIndex = 7; this.sbtnCVPrint.Text = "Print"; this.sbtnCVPrint.Click += new System.EventHandler(this.sbtnCVPrint_Click); // // sbtnCVEdit // this.sbtnCVEdit.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold); this.sbtnCVEdit.Appearance.Options.UseFont = true; this.sbtnCVEdit.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple; this.sbtnCVEdit.Location = new System.Drawing.Point(744, 32); this.sbtnCVEdit.Name = "sbtnCVEdit"; this.sbtnCVEdit.Size = new System.Drawing.Size(72, 20); this.sbtnCVEdit.TabIndex = 5; this.sbtnCVEdit.Text = "Update"; this.sbtnCVEdit.Click += new System.EventHandler(this.sbtnCVEdit_Click); // // sbtnCVDelete // this.sbtnCVDelete.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold); this.sbtnCVDelete.Appearance.Options.UseFont = true; this.sbtnCVDelete.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple; this.sbtnCVDelete.Location = new System.Drawing.Point(664, 32); this.sbtnCVDelete.Name = "sbtnCVDelete"; this.sbtnCVDelete.Size = new System.Drawing.Size(72, 20); this.sbtnCVDelete.TabIndex = 4; this.sbtnCVDelete.Text = "Delete"; this.sbtnCVDelete.Click += new System.EventHandler(this.sbtnCVDelete_Click); // // sbtnCVNew // this.sbtnCVNew.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold); this.sbtnCVNew.Appearance.Options.UseFont = true; this.sbtnCVNew.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple; this.sbtnCVNew.Location = new System.Drawing.Point(584, 32); this.sbtnCVNew.Name = "sbtnCVNew"; this.sbtnCVNew.Size = new System.Drawing.Size(72, 20); this.sbtnCVNew.TabIndex = 3; this.sbtnCVNew.Text = "New"; this.sbtnCVNew.Click += new System.EventHandler(this.sbtnCVNew_Click); // // cbListCV // this.cbListCV.EditValue = "All"; this.cbListCV.Location = new System.Drawing.Point(8, 32); this.cbListCV.Name = "cbListCV"; this.cbListCV.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)}); this.cbListCV.Properties.Items.AddRange(new object[] { "All", "New", "Open", "Closed"}); this.cbListCV.Properties.PopupSizeable = true; this.cbListCV.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor; this.cbListCV.Size = new System.Drawing.Size(88, 20); this.cbListCV.TabIndex = 0; this.cbListCV.SelectedIndexChanged += new System.EventHandler(this.cbListCV_SelectedIndexChanged); // // gctrCV // this.gctrCV.Dock = System.Windows.Forms.DockStyle.Bottom; this.gctrCV.EmbeddedNavigator.Name = ""; this.gctrCV.Location = new System.Drawing.Point(2, 62); this.gctrCV.LookAndFeel.UseDefaultLookAndFeel = false; this.gctrCV.MainView = this.gvCV; this.gctrCV.Name = "gctrCV"; this.gctrCV.Size = new System.Drawing.Size(988, 248); this.gctrCV.TabIndex = 8; this.gctrCV.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] { this.gvCV}); // // gvCV // this.gvCV.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] { this.colRefNo, this.colDtReceived, this.colBranch, this.colMembershipID, this.colMemberName, this.colDepartment, this.colType, this.colCategory, this.colSubject, this.colSubmittedBy, this.colStaffSubject, this.colDepartmentAssignedTo, this.colLastUpdatedDate, this.colStatus}); this.gvCV.GridControl = this.gctrCV; this.gvCV.Name = "gvCV"; this.gvCV.OptionsBehavior.AllowIncrementalSearch = true; this.gvCV.OptionsBehavior.Editable = false; this.gvCV.OptionsCustomization.AllowFilter = false; this.gvCV.OptionsView.ColumnAutoWidth = false; this.gvCV.OptionsView.ShowGroupPanel = false; this.gvCV.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] { new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.colDtReceived, DevExpress.Data.ColumnSortOrder.Descending)}); this.gvCV.FocusedRowChanged += new DevExpress.XtraGrid.Views.Base.FocusedRowChangedEventHandler(this.gvCV_FocusedRowChanged); this.gvCV.DataSourceChanged += new System.EventHandler(this.gvCV_DataSourceChanged); // // colRefNo // this.colRefNo.Caption = "Ref No"; this.colRefNo.FieldName = "nCaseID"; this.colRefNo.Name = "colRefNo"; this.colRefNo.Visible = true; this.colRefNo.VisibleIndex = 0; // // colDtReceived // this.colDtReceived.Caption = "Date Received"; this.colDtReceived.DisplayFormat.FormatString = "dd/MM/yyyy"; this.colDtReceived.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime; this.colDtReceived.FieldName = "dtDate"; this.colDtReceived.Name = "colDtReceived"; this.colDtReceived.Visible = true; this.colDtReceived.VisibleIndex = 1; this.colDtReceived.Width = 100; // // colBranch // this.colBranch.Caption = "Branch"; this.colBranch.FieldName = "strBranchCode"; this.colBranch.Name = "colBranch"; this.colBranch.Visible = true; this.colBranch.VisibleIndex = 2; // // colMembershipID // this.colMembershipID.Caption = "Membership Id"; this.colMembershipID.FieldName = "strMembershipID"; this.colMembershipID.Name = "colMembershipID"; this.colMembershipID.Visible = true; this.colMembershipID.VisibleIndex = 6; this.colMembershipID.Width = 100; // // colMemberName // this.colMemberName.Caption = "Member Name"; this.colMemberName.FieldName = "strMembershipName"; this.colMemberName.Name = "colMemberName"; this.colMemberName.Visible = true; this.colMemberName.VisibleIndex = 3; this.colMemberName.Width = 101; // // colDepartment // this.colDepartment.Caption = "Department"; this.colDepartment.FieldName = "strDepartmentDescription"; this.colDepartment.Name = "colDepartment"; this.colDepartment.Visible = true; this.colDepartment.VisibleIndex = 7; this.colDepartment.Width = 89; // // colType // this.colType.Caption = "Type"; this.colType.FieldName = "strCaseTypeDescription"; this.colType.Name = "colType"; this.colType.Visible = true; this.colType.VisibleIndex = 4; // // colCategory // this.colCategory.Caption = "Category"; this.colCategory.FieldName = "strCaseCategoryDescription"; this.colCategory.Name = "colCategory"; this.colCategory.Visible = true; this.colCategory.VisibleIndex = 5; // // colSubject // this.colSubject.Caption = "Subject"; this.colSubject.FieldName = "strSubject"; this.colSubject.Name = "colSubject"; // // colSubmittedBy // this.colSubmittedBy.Caption = "Submitted By"; this.colSubmittedBy.FieldName = "strSubmittedBy"; this.colSubmittedBy.Name = "colSubmittedBy"; this.colSubmittedBy.Visible = true; this.colSubmittedBy.VisibleIndex = 8; this.colSubmittedBy.Width = 97; // // colStaffSubject // this.colStaffSubject.Caption = "Subject Staff "; this.colStaffSubject.FieldName = "strSubjectStaff"; this.colStaffSubject.Name = "colStaffSubject"; // // colDepartmentAssignedTo // this.colDepartmentAssignedTo.Caption = "Department Assigned To"; this.colDepartmentAssignedTo.FieldName = "strDepartmentAssignedTo"; this.colDepartmentAssignedTo.Name = "colDepartmentAssignedTo"; this.colDepartmentAssignedTo.Visible = true; this.colDepartmentAssignedTo.VisibleIndex = 9; this.colDepartmentAssignedTo.Width = 130; // // colLastUpdatedDate // this.colLastUpdatedDate.Caption = "Last Updated Date"; this.colLastUpdatedDate.DisplayFormat.FormatString = "dd/MM/yyyy"; this.colLastUpdatedDate.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime; this.colLastUpdatedDate.FieldName = "dtLastEditDate"; this.colLastUpdatedDate.Name = "colLastUpdatedDate"; this.colLastUpdatedDate.Visible = true; this.colLastUpdatedDate.VisibleIndex = 10; this.colLastUpdatedDate.Width = 100; // // colStatus // this.colStatus.Caption = "Status"; this.colStatus.FieldName = "strStatus"; this.colStatus.Name = "colStatus"; this.colStatus.Visible = true; this.colStatus.VisibleIndex = 11; // // label17 // this.label17.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label17.Location = new System.Drawing.Point(104, 32); this.label17.Name = "label17"; this.label17.Size = new System.Drawing.Size(64, 20); this.label17.TabIndex = 19; this.label17.Text = "Assign To:"; // // luedtCVAssignTo // this.luedtCVAssignTo.Location = new System.Drawing.Point(168, 32); this.luedtCVAssignTo.Name = "luedtCVAssignTo"; this.luedtCVAssignTo.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)}); this.luedtCVAssignTo.Size = new System.Drawing.Size(160, 20); this.luedtCVAssignTo.TabIndex = 1; this.luedtCVAssignTo.EditValueChanged += new System.EventHandler(this.luedtCVAssignTo_EditValueChanged); // // lblCVSubmitter // this.lblCVSubmitter.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.lblCVSubmitter.Location = new System.Drawing.Point(336, 32); this.lblCVSubmitter.Name = "lblCVSubmitter"; this.lblCVSubmitter.Size = new System.Drawing.Size(64, 20); this.lblCVSubmitter.TabIndex = 16; this.lblCVSubmitter.Text = "Submitter:"; // // groupCustomerVoiceActionHistory // this.groupCustomerVoiceActionHistory.Appearance.BackColor = System.Drawing.SystemColors.Control; this.groupCustomerVoiceActionHistory.Appearance.Options.UseBackColor = true; this.groupCustomerVoiceActionHistory.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowOnly; this.groupCustomerVoiceActionHistory.Controls.Add(this.GroupControl26); this.groupCustomerVoiceActionHistory.Location = new System.Drawing.Point(7, 344); this.groupCustomerVoiceActionHistory.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003; this.groupCustomerVoiceActionHistory.LookAndFeel.UseDefaultLookAndFeel = false; this.groupCustomerVoiceActionHistory.Name = "groupCustomerVoiceActionHistory"; this.groupCustomerVoiceActionHistory.Size = new System.Drawing.Size(992, 232); this.groupCustomerVoiceActionHistory.TabIndex = 11; this.groupCustomerVoiceActionHistory.Text = "ACTION HISTORY"; // // GroupControl26 // this.GroupControl26.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowOnly; this.GroupControl26.Controls.Add(this.sbtnNewCVAction); this.GroupControl26.Controls.Add(this.gctrCVAction); this.GroupControl26.Dock = System.Windows.Forms.DockStyle.Fill; this.GroupControl26.Location = new System.Drawing.Point(2, 19); this.GroupControl26.Name = "GroupControl26"; this.GroupControl26.ShowCaption = false; this.GroupControl26.Size = new System.Drawing.Size(988, 211); this.GroupControl26.TabIndex = 0; this.GroupControl26.Text = "GroupControl1"; // // sbtnNewCVAction // this.sbtnNewCVAction.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold); this.sbtnNewCVAction.Appearance.Options.UseFont = true; this.sbtnNewCVAction.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple; this.sbtnNewCVAction.Location = new System.Drawing.Point(16, 16); this.sbtnNewCVAction.Name = "sbtnNewCVAction"; this.sbtnNewCVAction.Size = new System.Drawing.Size(72, 20); this.sbtnNewCVAction.TabIndex = 0; this.sbtnNewCVAction.Text = "New"; this.sbtnNewCVAction.Click += new System.EventHandler(this.sbtnNewCVAction_Click); // // gctrCVAction // this.gctrCVAction.Dock = System.Windows.Forms.DockStyle.Bottom; this.gctrCVAction.EmbeddedNavigator.Name = ""; this.gctrCVAction.Location = new System.Drawing.Point(2, 49); this.gctrCVAction.LookAndFeel.UseDefaultLookAndFeel = false; this.gctrCVAction.MainView = this.gvCVAction; this.gctrCVAction.Name = "gctrCVAction"; this.gctrCVAction.Size = new System.Drawing.Size(984, 160); this.gctrCVAction.TabIndex = 1; this.gctrCVAction.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] { this.gvCVAction}); // // gvCVAction // this.gvCVAction.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] { this.colActionID, this.coldtDate, this.coldtTime, this.colMode, this.colActionDetail, this.colActionTakenBy, this.colActionTakenByID}); this.gvCVAction.GridControl = this.gctrCVAction; this.gvCVAction.Name = "gvCVAction"; this.gvCVAction.OptionsBehavior.AllowIncrementalSearch = true; this.gvCVAction.OptionsBehavior.Editable = false; this.gvCVAction.OptionsCustomization.AllowFilter = false; this.gvCVAction.OptionsView.ShowGroupPanel = false; this.gvCVAction.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] { new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.coldtDate, DevExpress.Data.ColumnSortOrder.Descending)}); // // colActionID // this.colActionID.Caption = "ID"; this.colActionID.FieldName = "nActionID"; this.colActionID.Name = "colActionID"; this.colActionID.Visible = true; this.colActionID.VisibleIndex = 0; this.colActionID.Width = 64; // // coldtDate // this.coldtDate.Caption = "Date"; this.coldtDate.DisplayFormat.FormatString = "dd/MM/yyy"; this.coldtDate.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime; this.coldtDate.FieldName = "dtDate"; this.coldtDate.Name = "coldtDate"; this.coldtDate.Visible = true; this.coldtDate.VisibleIndex = 1; this.coldtDate.Width = 117; // // coldtTime // this.coldtTime.Caption = "Time"; this.coldtTime.DisplayFormat.FormatString = "hh:mm tt"; this.coldtTime.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime; this.coldtTime.FieldName = "dtDate"; this.coldtTime.GroupFormat.FormatString = "hh:mm tt"; this.coldtTime.GroupFormat.FormatType = DevExpress.Utils.FormatType.DateTime; this.coldtTime.Name = "coldtTime"; this.coldtTime.Visible = true; this.coldtTime.VisibleIndex = 2; this.coldtTime.Width = 78; // // colMode // this.colMode.Caption = "Mode"; this.colMode.FieldName = "strMode"; this.colMode.Name = "colMode"; this.colMode.Visible = true; this.colMode.VisibleIndex = 3; this.colMode.Width = 207; // // colActionDetail // this.colActionDetail.Caption = "Action Taken"; this.colActionDetail.FieldName = "strActionDetails"; this.colActionDetail.Name = "colActionDetail"; this.colActionDetail.Visible = true; this.colActionDetail.VisibleIndex = 4; this.colActionDetail.Width = 262; // // colActionTakenBy // this.colActionTakenBy.Caption = "Action Taken By"; this.colActionTakenBy.FieldName = "strActionTakenBy"; this.colActionTakenBy.Name = "colActionTakenBy"; this.colActionTakenBy.Visible = true; this.colActionTakenBy.VisibleIndex = 5; this.colActionTakenBy.Width = 231; // // colActionTakenByID // this.colActionTakenByID.Caption = "Action Taken By ID"; this.colActionTakenByID.FieldName = "nActionByID"; this.colActionTakenByID.Name = "colActionTakenByID"; this.colActionTakenByID.Visible = true; this.colActionTakenByID.VisibleIndex = 6; // // groupCustomerVoiceCVDetails // this.groupCustomerVoiceCVDetails.Appearance.BackColor = System.Drawing.SystemColors.Control; this.groupCustomerVoiceCVDetails.Appearance.Options.UseBackColor = true; this.groupCustomerVoiceCVDetails.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowOnly; this.groupCustomerVoiceCVDetails.Controls.Add(this.GroupControl28); this.groupCustomerVoiceCVDetails.Location = new System.Drawing.Point(7, 344); this.groupCustomerVoiceCVDetails.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003; this.groupCustomerVoiceCVDetails.LookAndFeel.UseDefaultLookAndFeel = false; this.groupCustomerVoiceCVDetails.Name = "groupCustomerVoiceCVDetails"; this.groupCustomerVoiceCVDetails.Size = new System.Drawing.Size(992, 232); this.groupCustomerVoiceCVDetails.TabIndex = 6; this.groupCustomerVoiceCVDetails.Text = "CUSTOMER VOICE DETAILS"; // // GroupControl28 // this.GroupControl28.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowOnly; this.GroupControl28.Controls.Add(this.txtHomeNo); this.GroupControl28.Controls.Add(this.label31); this.GroupControl28.Controls.Add(this.txtEmail); this.GroupControl28.Controls.Add(this.label10); this.GroupControl28.Controls.Add(this.txtContactNo); this.GroupControl28.Controls.Add(this.label9); this.GroupControl28.Controls.Add(this.memoeditSummaryCV); this.GroupControl28.Controls.Add(this.Label32); this.GroupControl28.Dock = System.Windows.Forms.DockStyle.Fill; this.GroupControl28.Location = new System.Drawing.Point(2, 19); this.GroupControl28.Name = "GroupControl28"; this.GroupControl28.ShowCaption = false; this.GroupControl28.Size = new System.Drawing.Size(988, 211); this.GroupControl28.TabIndex = 0; this.GroupControl28.Text = "GroupControl1"; // // txtHomeNo // this.txtHomeNo.EditValue = ""; this.txtHomeNo.Location = new System.Drawing.Point(360, 16); this.txtHomeNo.Name = "txtHomeNo"; this.txtHomeNo.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold); this.txtHomeNo.Properties.Appearance.Options.UseFont = true; this.txtHomeNo.Properties.ReadOnly = true; this.txtHomeNo.Size = new System.Drawing.Size(152, 22); this.txtHomeNo.TabIndex = 18; // // label31 // this.label31.AutoSize = true; this.label31.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label31.Location = new System.Drawing.Point(288, 16); this.label31.Name = "label31"; this.label31.Size = new System.Drawing.Size(73, 16); this.label31.TabIndex = 19; this.label31.Text = "Home No"; // // txtEmail // this.txtEmail.EditValue = ""; this.txtEmail.Location = new System.Drawing.Point(640, 16); this.txtEmail.Name = "txtEmail"; this.txtEmail.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold); this.txtEmail.Properties.Appearance.Options.UseFont = true; this.txtEmail.Properties.ReadOnly = true; this.txtEmail.Size = new System.Drawing.Size(280, 22); this.txtEmail.TabIndex = 1; // // label10 // this.label10.AutoSize = true; this.label10.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label10.Location = new System.Drawing.Point(528, 16); this.label10.Name = "label10"; this.label10.Size = new System.Drawing.Size(109, 16); this.label10.TabIndex = 17; this.label10.Text = "Email Address"; // // txtContactNo // this.txtContactNo.EditValue = ""; this.txtContactNo.Location = new System.Drawing.Point(120, 16); this.txtContactNo.Name = "txtContactNo"; this.txtContactNo.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold); this.txtContactNo.Properties.Appearance.Options.UseFont = true; this.txtContactNo.Properties.ReadOnly = true; this.txtContactNo.Size = new System.Drawing.Size(152, 22); this.txtContactNo.TabIndex = 0; // // label9 // this.label9.AutoSize = true; this.label9.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label9.Location = new System.Drawing.Point(8, 16); this.label9.Name = "label9"; this.label9.Size = new System.Drawing.Size(79, 16); this.label9.TabIndex = 15; this.label9.Text = "Mobile No"; // // memoeditSummaryCV // this.memoeditSummaryCV.EditValue = ""; this.memoeditSummaryCV.Location = new System.Drawing.Point(120, 48); this.memoeditSummaryCV.Name = "memoeditSummaryCV"; this.memoeditSummaryCV.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold); this.memoeditSummaryCV.Properties.Appearance.Options.UseFont = true; this.memoeditSummaryCV.Properties.ReadOnly = true; this.memoeditSummaryCV.Size = new System.Drawing.Size(800, 152); this.memoeditSummaryCV.TabIndex = 2; // // Label32 // this.Label32.AutoSize = true; this.Label32.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.Label32.Location = new System.Drawing.Point(8, 56); this.Label32.Name = "Label32"; this.Label32.Size = new System.Drawing.Size(113, 16); this.Label32.TabIndex = 13; this.Label32.Text = "Summary of CV"; // // tabStaffSix // this.tabStaffSix.Appearance.Header.Font = new System.Drawing.Font("Tahoma", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.tabStaffSix.Appearance.Header.Options.UseFont = true; this.tabStaffSix.Controls.Add(this.groupControl1); this.tabStaffSix.Name = "tabStaffSix"; this.tabStaffSix.PageVisible = false; this.tabStaffSix.Size = new System.Drawing.Size(1007, 612); this.tabStaffSix.Text = "Leave"; // // groupControl1 // this.groupControl1.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowOnly; this.groupControl1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder; this.groupControl1.Controls.Add(this.lblSix_2); this.groupControl1.Controls.Add(this.lblSix_1); this.groupControl1.Controls.Add(this.groupLeave); this.groupControl1.Controls.Add(this.groupLeaveRoster); this.groupControl1.Controls.Add(this.luedtLeaveEmployeeID); this.groupControl1.Controls.Add(this.lblLeaveEmployeeID); this.groupControl1.Location = new System.Drawing.Point(0, 0); this.groupControl1.Name = "groupControl1"; this.groupControl1.ShowCaption = false; this.groupControl1.Size = new System.Drawing.Size(1007, 610); this.groupControl1.TabIndex = 0; this.groupControl1.Text = "GroupControl1"; // // lblSix_2 // this.lblSix_2.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold); this.lblSix_2.Appearance.ForeColor = System.Drawing.Color.MediumBlue; this.lblSix_2.Appearance.Options.UseFont = true; this.lblSix_2.Appearance.Options.UseForeColor = true; this.lblSix_2.Location = new System.Drawing.Point(156, 4); this.lblSix_2.Name = "lblSix_2"; this.lblSix_2.Size = new System.Drawing.Size(138, 23); this.lblSix_2.TabIndex = 144; this.lblSix_2.Text = "Roster"; this.lblSix_2.Click += new System.EventHandler(this.lblSix_2_Click); // // lblSix_1 // this.lblSix_1.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold); this.lblSix_1.Appearance.ForeColor = System.Drawing.Color.MediumBlue; this.lblSix_1.Appearance.Options.UseFont = true; this.lblSix_1.Appearance.Options.UseForeColor = true; this.lblSix_1.Location = new System.Drawing.Point(12, 4); this.lblSix_1.Name = "lblSix_1"; this.lblSix_1.Size = new System.Drawing.Size(138, 23); this.lblSix_1.TabIndex = 143; this.lblSix_1.Text = "Leave"; this.lblSix_1.Click += new System.EventHandler(this.lblSix_2_Click); // // groupLeave // this.groupLeave.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowOnly; this.groupLeave.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder; this.groupLeave.Controls.Add(this.groupLeaveLeaveDetails); this.groupLeave.Controls.Add(this.groupLeaveLeaveBalance); this.groupLeave.Location = new System.Drawing.Point(0, 30); this.groupLeave.Name = "groupLeave"; this.groupLeave.Size = new System.Drawing.Size(1004, 578); this.groupLeave.TabIndex = 4; this.groupLeave.Text = "groupControl12"; // // groupLeaveLeaveDetails // this.groupLeaveLeaveDetails.Appearance.BackColor = System.Drawing.SystemColors.Control; this.groupLeaveLeaveDetails.Appearance.Options.UseBackColor = true; this.groupLeaveLeaveDetails.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowOnly; this.groupLeaveLeaveDetails.Controls.Add(this.groupControl11); this.groupLeaveLeaveDetails.Location = new System.Drawing.Point(8, 0); this.groupLeaveLeaveDetails.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003; this.groupLeaveLeaveDetails.LookAndFeel.UseDefaultLookAndFeel = false; this.groupLeaveLeaveDetails.Name = "groupLeaveLeaveDetails"; this.groupLeaveLeaveDetails.Size = new System.Drawing.Size(990, 282); this.groupLeaveLeaveDetails.TabIndex = 5; this.groupLeaveLeaveDetails.Text = "LEAVE DETAILS"; // // groupControl11 // this.groupControl11.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowOnly; this.groupControl11.Controls.Add(this.cbLeaveStatus); this.groupControl11.Controls.Add(this.label35); this.groupControl11.Controls.Add(this.txtLeaveEntitlement); this.groupControl11.Controls.Add(this.label34); this.groupControl11.Controls.Add(this.dateedtLeaveJoinDate); this.groupControl11.Controls.Add(this.label33); this.groupControl11.Controls.Add(this.sbtnLeaveEdit); this.groupControl11.Controls.Add(this.sbtnLeaveDelete); this.groupControl11.Controls.Add(this.sbtnLeaveApply); this.groupControl11.Controls.Add(this.gridctrLeaveDetail); this.groupControl11.Controls.Add(this.cbLeaveNYearID); this.groupControl11.Controls.Add(this.lblNYearID); this.groupControl11.Dock = System.Windows.Forms.DockStyle.Fill; this.groupControl11.Location = new System.Drawing.Point(2, 19); this.groupControl11.Name = "groupControl11"; this.groupControl11.ShowCaption = false; this.groupControl11.Size = new System.Drawing.Size(986, 261); this.groupControl11.TabIndex = 0; this.groupControl11.Text = "GroupControl1"; // // cbLeaveStatus // this.cbLeaveStatus.EditValue = "All"; this.cbLeaveStatus.Location = new System.Drawing.Point(168, 8); this.cbLeaveStatus.Name = "cbLeaveStatus"; this.cbLeaveStatus.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)}); this.cbLeaveStatus.Properties.Items.AddRange(new object[] { "Pending Approval", "Approved", "Rejected", "Cancelled", "All"}); this.cbLeaveStatus.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor; this.cbLeaveStatus.Size = new System.Drawing.Size(118, 20); this.cbLeaveStatus.TabIndex = 19; this.cbLeaveStatus.SelectedIndexChanged += new System.EventHandler(this.cbLeaveStatus_SelectedIndexChanged); // // label35 // this.label35.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label35.Location = new System.Drawing.Point(120, 10); this.label35.Name = "label35"; this.label35.Size = new System.Drawing.Size(46, 18); this.label35.TabIndex = 18; this.label35.Text = "Status:"; // // txtLeaveEntitlement // this.txtLeaveEntitlement.EditValue = ""; this.txtLeaveEntitlement.Location = new System.Drawing.Point(884, 8); this.txtLeaveEntitlement.Name = "txtLeaveEntitlement"; this.txtLeaveEntitlement.Properties.ReadOnly = true; this.txtLeaveEntitlement.Size = new System.Drawing.Size(52, 20); this.txtLeaveEntitlement.TabIndex = 6; // // label34 // this.label34.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label34.Location = new System.Drawing.Point(702, 10); this.label34.Name = "label34"; this.label34.Size = new System.Drawing.Size(180, 18); this.label34.TabIndex = 17; this.label34.Text = "Leave Entitlement For This Year:"; // // dateedtLeaveJoinDate // this.dateedtLeaveJoinDate.EditValue = null; this.dateedtLeaveJoinDate.Location = new System.Drawing.Point(588, 8); this.dateedtLeaveJoinDate.Name = "dateedtLeaveJoinDate"; this.dateedtLeaveJoinDate.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)}); this.dateedtLeaveJoinDate.Properties.ReadOnly = true; this.dateedtLeaveJoinDate.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton()}); this.dateedtLeaveJoinDate.Size = new System.Drawing.Size(110, 20); this.dateedtLeaveJoinDate.TabIndex = 5; this.dateedtLeaveJoinDate.QueryPopUp += new System.ComponentModel.CancelEventHandler(this.dateedtLeaveJoinDate_QueryPopUp); // // label33 // this.label33.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label33.Location = new System.Drawing.Point(526, 10); this.label33.Name = "label33"; this.label33.Size = new System.Drawing.Size(60, 18); this.label33.TabIndex = 15; this.label33.Text = "Join Date:"; // // sbtnLeaveEdit // this.sbtnLeaveEdit.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold); this.sbtnLeaveEdit.Appearance.Options.UseFont = true; this.sbtnLeaveEdit.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple; this.sbtnLeaveEdit.Location = new System.Drawing.Point(370, 8); this.sbtnLeaveEdit.Name = "sbtnLeaveEdit"; this.sbtnLeaveEdit.Size = new System.Drawing.Size(72, 20); this.sbtnLeaveEdit.TabIndex = 3; this.sbtnLeaveEdit.Text = "Edit"; this.sbtnLeaveEdit.Click += new System.EventHandler(this.sbtnLeaveEdit_Click); // // sbtnLeaveDelete // this.sbtnLeaveDelete.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold); this.sbtnLeaveDelete.Appearance.Options.UseFont = true; this.sbtnLeaveDelete.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple; this.sbtnLeaveDelete.Location = new System.Drawing.Point(448, 8); this.sbtnLeaveDelete.Name = "sbtnLeaveDelete"; this.sbtnLeaveDelete.Size = new System.Drawing.Size(72, 20); this.sbtnLeaveDelete.TabIndex = 4; this.sbtnLeaveDelete.Text = "Cancel"; this.sbtnLeaveDelete.Click += new System.EventHandler(this.sbtnLeaveDelete_Click); // // sbtnLeaveApply // this.sbtnLeaveApply.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold); this.sbtnLeaveApply.Appearance.Options.UseFont = true; this.sbtnLeaveApply.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple; this.sbtnLeaveApply.Location = new System.Drawing.Point(292, 8); this.sbtnLeaveApply.Name = "sbtnLeaveApply"; this.sbtnLeaveApply.Size = new System.Drawing.Size(72, 20); this.sbtnLeaveApply.TabIndex = 2; this.sbtnLeaveApply.Text = "Apply"; this.sbtnLeaveApply.Click += new System.EventHandler(this.sbtnLeaveApply_Click); // // gridctrLeaveDetail // this.gridctrLeaveDetail.EmbeddedNavigator.Name = ""; this.gridctrLeaveDetail.Location = new System.Drawing.Point(4, 36); this.gridctrLeaveDetail.LookAndFeel.UseDefaultLookAndFeel = false; this.gridctrLeaveDetail.MainView = this.gvLeave; this.gridctrLeaveDetail.Name = "gridctrLeaveDetail"; this.gridctrLeaveDetail.Size = new System.Drawing.Size(978, 222); this.gridctrLeaveDetail.TabIndex = 7; this.gridctrLeaveDetail.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] { this.gvLeave}); // // gvLeave // this.gvLeave.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] { this.colLeaveStartDate, this.colLeaveStartTime, this.colLeaveEndTime, this.gridColumn2, this.gridColumn1, this.nLeaveQuantity, this.nUnpaidLeave, this.colLeaveTimeOff, this.colfFullDay, this.colLeaveLeaveType, this.colLeaveReason, this.colLeaveLeaveStatus, this.colLeaveApprovingManager}); this.gvLeave.GridControl = this.gridctrLeaveDetail; this.gvLeave.Name = "gvLeave"; this.gvLeave.OptionsBehavior.AllowIncrementalSearch = true; this.gvLeave.OptionsBehavior.Editable = false; this.gvLeave.OptionsCustomization.AllowFilter = false; this.gvLeave.OptionsView.ShowFooter = true; this.gvLeave.OptionsView.ShowGroupPanel = false; this.gvLeave.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] { new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.colLeaveStartDate, DevExpress.Data.ColumnSortOrder.Ascending)}); // // colLeaveStartDate // this.colLeaveStartDate.Caption = "Date"; this.colLeaveStartDate.DisplayFormat.FormatString = "dd/MM/yyyy"; this.colLeaveStartDate.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime; this.colLeaveStartDate.FieldName = "dtStartTime"; this.colLeaveStartDate.Name = "colLeaveStartDate"; this.colLeaveStartDate.Visible = true; this.colLeaveStartDate.VisibleIndex = 0; // // colLeaveStartTime // this.colLeaveStartTime.Caption = "Start Time"; this.colLeaveStartTime.DisplayFormat.FormatString = "hh:mm tt"; this.colLeaveStartTime.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime; this.colLeaveStartTime.FieldName = "StartTime"; this.colLeaveStartTime.Name = "colLeaveStartTime"; this.colLeaveStartTime.Visible = true; this.colLeaveStartTime.VisibleIndex = 1; this.colLeaveStartTime.Width = 60; // // colLeaveEndTime // this.colLeaveEndTime.Caption = "End Time"; this.colLeaveEndTime.DisplayFormat.FormatString = "hh:mm tt"; this.colLeaveEndTime.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime; this.colLeaveEndTime.FieldName = "EndTime"; this.colLeaveEndTime.Name = "colLeaveEndTime"; this.colLeaveEndTime.Visible = true; this.colLeaveEndTime.VisibleIndex = 2; this.colLeaveEndTime.Width = 56; // // gridColumn2 // this.gridColumn2.Caption = "Off (Hrs)"; this.gridColumn2.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric; this.gridColumn2.FieldName = "nTimeOffQuantity"; this.gridColumn2.GroupFormat.FormatType = DevExpress.Utils.FormatType.Numeric; this.gridColumn2.Name = "gridColumn2"; this.gridColumn2.SummaryItem.DisplayFormat = "{0}"; this.gridColumn2.SummaryItem.SummaryType = DevExpress.Data.SummaryItemType.Sum; this.gridColumn2.Visible = true; this.gridColumn2.VisibleIndex = 3; this.gridColumn2.Width = 70; // // gridColumn1 // this.gridColumn1.Caption = "Unpaid(Hrs)"; this.gridColumn1.FieldName = "nUnpaidTimeOff"; this.gridColumn1.Name = "gridColumn1"; this.gridColumn1.SummaryItem.DisplayFormat = "{0}"; this.gridColumn1.SummaryItem.SummaryType = DevExpress.Data.SummaryItemType.Sum; this.gridColumn1.Visible = true; this.gridColumn1.VisibleIndex = 4; this.gridColumn1.Width = 73; // // nLeaveQuantity // this.nLeaveQuantity.Caption = "Leave (Days)"; this.nLeaveQuantity.FieldName = "nLeaveQuantity"; this.nLeaveQuantity.Name = "nLeaveQuantity"; this.nLeaveQuantity.SummaryItem.DisplayFormat = "{0}"; this.nLeaveQuantity.SummaryItem.SummaryType = DevExpress.Data.SummaryItemType.Sum; this.nLeaveQuantity.Visible = true; this.nLeaveQuantity.VisibleIndex = 5; this.nLeaveQuantity.Width = 78; // // nUnpaidLeave // this.nUnpaidLeave.Caption = "Unpaid (Days)"; this.nUnpaidLeave.FieldName = "nUnpaidLeave"; this.nUnpaidLeave.Name = "nUnpaidLeave"; this.nUnpaidLeave.SummaryItem.DisplayFormat = "{0}"; this.nUnpaidLeave.SummaryItem.SummaryType = DevExpress.Data.SummaryItemType.Sum; this.nUnpaidLeave.Visible = true; this.nUnpaidLeave.VisibleIndex = 6; this.nUnpaidLeave.Width = 85; // // colLeaveTimeOff // this.colLeaveTimeOff.Caption = "Time Off"; this.colLeaveTimeOff.FieldName = "fTimeOff"; this.colLeaveTimeOff.Name = "colLeaveTimeOff"; this.colLeaveTimeOff.Width = 64; // // colfFullDay // this.colfFullDay.Caption = "Full Day"; this.colfFullDay.FieldName = "fFullDay"; this.colfFullDay.Name = "colfFullDay"; this.colfFullDay.Visible = true; this.colfFullDay.VisibleIndex = 7; this.colfFullDay.Width = 54; // // colLeaveLeaveType // this.colLeaveLeaveType.Caption = "Type"; this.colLeaveLeaveType.FieldName = "strLeaveType"; this.colLeaveLeaveType.Name = "colLeaveLeaveType"; this.colLeaveLeaveType.Visible = true; this.colLeaveLeaveType.VisibleIndex = 8; this.colLeaveLeaveType.Width = 68; // // colLeaveReason // this.colLeaveReason.Caption = "Reason"; this.colLeaveReason.FieldName = "strRemarks"; this.colLeaveReason.Name = "colLeaveReason"; this.colLeaveReason.Visible = true; this.colLeaveReason.VisibleIndex = 9; this.colLeaveReason.Width = 62; // // colLeaveLeaveStatus // this.colLeaveLeaveStatus.Caption = "Status"; this.colLeaveLeaveStatus.FieldName = "strStatus"; this.colLeaveLeaveStatus.Name = "colLeaveLeaveStatus"; this.colLeaveLeaveStatus.Visible = true; this.colLeaveLeaveStatus.VisibleIndex = 10; this.colLeaveLeaveStatus.Width = 64; // // colLeaveApprovingManager // this.colLeaveApprovingManager.Caption = "Approving Manager"; this.colLeaveApprovingManager.FieldName = "strApprovingManager"; this.colLeaveApprovingManager.Name = "colLeaveApprovingManager"; this.colLeaveApprovingManager.Visible = true; this.colLeaveApprovingManager.VisibleIndex = 11; this.colLeaveApprovingManager.Width = 212; // // cbLeaveNYearID // this.cbLeaveNYearID.EditValue = "1"; this.cbLeaveNYearID.Location = new System.Drawing.Point(60, 8); this.cbLeaveNYearID.Name = "cbLeaveNYearID"; this.cbLeaveNYearID.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)}); this.cbLeaveNYearID.Properties.Items.AddRange(new object[] { "1"}); this.cbLeaveNYearID.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor; this.cbLeaveNYearID.Size = new System.Drawing.Size(56, 20); this.cbLeaveNYearID.TabIndex = 1; this.cbLeaveNYearID.SelectedIndexChanged += new System.EventHandler(this.cbLeaveNYearID_SelectedIndexChanged); // // lblNYearID // this.lblNYearID.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.lblNYearID.Location = new System.Drawing.Point(6, 10); this.lblNYearID.Name = "lblNYearID"; this.lblNYearID.Size = new System.Drawing.Size(52, 18); this.lblNYearID.TabIndex = 15; this.lblNYearID.Text = "Year ID:"; // // groupLeaveLeaveBalance // this.groupLeaveLeaveBalance.Appearance.BackColor = System.Drawing.SystemColors.Control; this.groupLeaveLeaveBalance.Appearance.Options.UseBackColor = true; this.groupLeaveLeaveBalance.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowOnly; this.groupLeaveLeaveBalance.Controls.Add(this.groupControl5); this.groupLeaveLeaveBalance.Location = new System.Drawing.Point(8, 286); this.groupLeaveLeaveBalance.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003; this.groupLeaveLeaveBalance.LookAndFeel.UseDefaultLookAndFeel = false; this.groupLeaveLeaveBalance.Name = "groupLeaveLeaveBalance"; this.groupLeaveLeaveBalance.Size = new System.Drawing.Size(990, 290); this.groupLeaveLeaveBalance.TabIndex = 7; this.groupLeaveLeaveBalance.Text = "LEAVE BALANCE"; // // groupControl5 // this.groupControl5.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowOnly; this.groupControl5.Controls.Add(this.btnConvert); this.groupControl5.Controls.Add(this.txtDaysConvert); this.groupControl5.Controls.Add(this.label36); this.groupControl5.Controls.Add(this.btnAdjust); this.groupControl5.Controls.Add(this.txtLeaveAdjust); this.groupControl5.Controls.Add(this.label29); this.groupControl5.Controls.Add(this.sbtnLeaveBalanceInquiry); this.groupControl5.Controls.Add(this.label25); this.groupControl5.Controls.Add(this.cbLeaveBalance); this.groupControl5.Controls.Add(this.gridctrLeaveBalance); this.groupControl5.Dock = System.Windows.Forms.DockStyle.Fill; this.groupControl5.Location = new System.Drawing.Point(2, 19); this.groupControl5.Name = "groupControl5"; this.groupControl5.ShowCaption = false; this.groupControl5.Size = new System.Drawing.Size(986, 269); this.groupControl5.TabIndex = 0; this.groupControl5.Text = "GroupControl1"; // // btnConvert // this.btnConvert.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.btnConvert.Location = new System.Drawing.Point(822, 10); this.btnConvert.Name = "btnConvert"; this.btnConvert.Size = new System.Drawing.Size(56, 22); this.btnConvert.TabIndex = 21; this.btnConvert.Text = "Convert"; this.btnConvert.Click += new System.EventHandler(this.button1_Click_1); // // txtDaysConvert // this.txtDaysConvert.Location = new System.Drawing.Point(782, 10); this.txtDaysConvert.Name = "txtDaysConvert"; this.txtDaysConvert.Size = new System.Drawing.Size(36, 20); this.txtDaysConvert.TabIndex = 20; // // label36 // this.label36.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label36.Location = new System.Drawing.Point(642, 12); this.label36.Name = "label36"; this.label36.Size = new System.Drawing.Size(136, 20); this.label36.TabIndex = 19; this.label36.Text = "Convert Leave to Hours:"; // // btnAdjust // this.btnAdjust.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.btnAdjust.Location = new System.Drawing.Point(518, 10); this.btnAdjust.Name = "btnAdjust"; this.btnAdjust.Size = new System.Drawing.Size(46, 22); this.btnAdjust.TabIndex = 18; this.btnAdjust.Text = "Adjust"; this.btnAdjust.Click += new System.EventHandler(this.button1_Click); // // txtLeaveAdjust // this.txtLeaveAdjust.Location = new System.Drawing.Point(478, 10); this.txtLeaveAdjust.Name = "txtLeaveAdjust"; this.txtLeaveAdjust.Size = new System.Drawing.Size(36, 20); this.txtLeaveAdjust.TabIndex = 17; // // label29 // this.label29.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label29.Location = new System.Drawing.Point(288, 12); this.label29.Name = "label29"; this.label29.Size = new System.Drawing.Size(184, 20); this.label29.TabIndex = 15; this.label29.Text = "Adjustment for selected Year ID :"; // // sbtnLeaveBalanceInquiry // this.sbtnLeaveBalanceInquiry.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold); this.sbtnLeaveBalanceInquiry.Appearance.Options.UseFont = true; this.sbtnLeaveBalanceInquiry.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple; this.sbtnLeaveBalanceInquiry.Location = new System.Drawing.Point(186, 10); this.sbtnLeaveBalanceInquiry.Name = "sbtnLeaveBalanceInquiry"; this.sbtnLeaveBalanceInquiry.Size = new System.Drawing.Size(72, 20); this.sbtnLeaveBalanceInquiry.TabIndex = 2; this.sbtnLeaveBalanceInquiry.Text = "Inquiry"; this.sbtnLeaveBalanceInquiry.Click += new System.EventHandler(this.sbtnLeaveBalanceInquiry_Click); // // label25 // this.label25.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label25.Location = new System.Drawing.Point(8, 12); this.label25.Name = "label25"; this.label25.Size = new System.Drawing.Size(40, 18); this.label25.TabIndex = 14; this.label25.Text = "Type:"; // // cbLeaveBalance // this.cbLeaveBalance.EditValue = "Annual Leave balance"; this.cbLeaveBalance.Location = new System.Drawing.Point(52, 10); this.cbLeaveBalance.Name = "cbLeaveBalance"; this.cbLeaveBalance.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)}); this.cbLeaveBalance.Properties.Items.AddRange(new object[] { "Annual Leave balance", "Time Off balance", "Misc Leave balance"}); this.cbLeaveBalance.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor; this.cbLeaveBalance.Size = new System.Drawing.Size(130, 20); this.cbLeaveBalance.TabIndex = 0; // // gridctrLeaveBalance // this.gridctrLeaveBalance.EmbeddedNavigator.Name = ""; this.gridctrLeaveBalance.Location = new System.Drawing.Point(4, 38); this.gridctrLeaveBalance.LookAndFeel.UseDefaultLookAndFeel = false; this.gridctrLeaveBalance.MainView = this.gvLeaveBalance; this.gridctrLeaveBalance.Name = "gridctrLeaveBalance"; this.gridctrLeaveBalance.Size = new System.Drawing.Size(978, 226); this.gridctrLeaveBalance.TabIndex = 3; this.gridctrLeaveBalance.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] { this.gvLeaveBalance}); // // gvLeaveBalance // this.gvLeaveBalance.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] { this.colLeaveBalanceDate, this.colLeaveBalanceTransaction, this.colLeaveBalanceStatus, this.colLeaveBalanceNoOfDays}); this.gvLeaveBalance.GridControl = this.gridctrLeaveBalance; this.gvLeaveBalance.Name = "gvLeaveBalance"; this.gvLeaveBalance.OptionsBehavior.AllowIncrementalSearch = true; this.gvLeaveBalance.OptionsBehavior.Editable = false; this.gvLeaveBalance.OptionsCustomization.AllowFilter = false; this.gvLeaveBalance.OptionsCustomization.AllowSort = false; this.gvLeaveBalance.OptionsLayout.Columns.AddNewColumns = false; this.gvLeaveBalance.OptionsView.ShowFooter = true; this.gvLeaveBalance.OptionsView.ShowGroupPanel = false; this.gvLeaveBalance.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] { new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.colLeaveBalanceTransaction, DevExpress.Data.ColumnSortOrder.Ascending)}); // // colLeaveBalanceDate // this.colLeaveBalanceDate.Caption = "Date"; this.colLeaveBalanceDate.DisplayFormat.FormatString = "dd/MM/yyyy"; this.colLeaveBalanceDate.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime; this.colLeaveBalanceDate.FieldName = "dtDate"; this.colLeaveBalanceDate.Name = "colLeaveBalanceDate"; this.colLeaveBalanceDate.Visible = true; this.colLeaveBalanceDate.VisibleIndex = 0; this.colLeaveBalanceDate.Width = 173; // // colLeaveBalanceTransaction // this.colLeaveBalanceTransaction.Caption = "Transaction"; this.colLeaveBalanceTransaction.FieldName = "Transaction"; this.colLeaveBalanceTransaction.Name = "colLeaveBalanceTransaction"; this.colLeaveBalanceTransaction.Visible = true; this.colLeaveBalanceTransaction.VisibleIndex = 1; this.colLeaveBalanceTransaction.Width = 512; // // colLeaveBalanceStatus // this.colLeaveBalanceStatus.Caption = "Status"; this.colLeaveBalanceStatus.FieldName = "strStatus"; this.colLeaveBalanceStatus.Name = "colLeaveBalanceStatus"; this.colLeaveBalanceStatus.Visible = true; this.colLeaveBalanceStatus.VisibleIndex = 2; this.colLeaveBalanceStatus.Width = 172; // // colLeaveBalanceNoOfDays // this.colLeaveBalanceNoOfDays.Caption = "No. of Days"; this.colLeaveBalanceNoOfDays.FieldName = "NoOfDays"; this.colLeaveBalanceNoOfDays.Name = "colLeaveBalanceNoOfDays"; this.colLeaveBalanceNoOfDays.SummaryItem.SummaryType = DevExpress.Data.SummaryItemType.Sum; this.colLeaveBalanceNoOfDays.Visible = true; this.colLeaveBalanceNoOfDays.VisibleIndex = 3; this.colLeaveBalanceNoOfDays.Width = 100; // // groupLeaveRoster // this.groupLeaveRoster.Appearance.BackColor = System.Drawing.SystemColors.Control; this.groupLeaveRoster.Appearance.Options.UseBackColor = true; this.groupLeaveRoster.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowOnly; this.groupLeaveRoster.Controls.Add(this.groupControl2); this.groupLeaveRoster.Controls.Add(this.panelControl1); this.groupLeaveRoster.Controls.Add(this.sbtnLeaveNextMonth); this.groupLeaveRoster.Controls.Add(this.sbtnLeavePreviousMonth); this.groupLeaveRoster.Location = new System.Drawing.Point(8, 30); this.groupLeaveRoster.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003; this.groupLeaveRoster.LookAndFeel.UseDefaultLookAndFeel = false; this.groupLeaveRoster.Name = "groupLeaveRoster"; this.groupLeaveRoster.Size = new System.Drawing.Size(994, 576); this.groupLeaveRoster.TabIndex = 1; this.groupLeaveRoster.Text = "ROSTER"; // // groupControl2 // this.groupControl2.Appearance.BackColor = System.Drawing.SystemColors.Control; this.groupControl2.Appearance.ForeColor = System.Drawing.Color.Black; this.groupControl2.Appearance.Options.UseBackColor = true; this.groupControl2.Appearance.Options.UseForeColor = true; this.groupControl2.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowOnly; this.groupControl2.Controls.Add(this.label23); this.groupControl2.Controls.Add(this.label24); this.groupControl2.Controls.Add(this.label21); this.groupControl2.Controls.Add(this.label22); this.groupControl2.Controls.Add(this.label19); this.groupControl2.Controls.Add(this.label20); this.groupControl2.Controls.Add(this.label18); this.groupControl2.Controls.Add(this.label4); this.groupControl2.Location = new System.Drawing.Point(694, 38); this.groupControl2.Name = "groupControl2"; this.groupControl2.Size = new System.Drawing.Size(210, 138); this.groupControl2.TabIndex = 30; this.groupControl2.Text = "Legend"; // // label23 // this.label23.Location = new System.Drawing.Point(42, 114); this.label23.Name = "label23"; this.label23.Size = new System.Drawing.Size(162, 16); this.label23.TabIndex = 7; this.label23.Text = "Time off"; // // label24 // this.label24.BackColor = System.Drawing.Color.Green; this.label24.Location = new System.Drawing.Point(10, 108); this.label24.Name = "label24"; this.label24.Size = new System.Drawing.Size(26, 23); this.label24.TabIndex = 6; // // label21 // this.label21.Location = new System.Drawing.Point(42, 84); this.label21.Name = "label21"; this.label21.Size = new System.Drawing.Size(162, 16); this.label21.TabIndex = 5; this.label21.Text = "Full day leave"; // // label22 // this.label22.BackColor = System.Drawing.Color.LightBlue; this.label22.Location = new System.Drawing.Point(10, 78); this.label22.Name = "label22"; this.label22.Size = new System.Drawing.Size(26, 23); this.label22.TabIndex = 4; // // label19 // this.label19.Location = new System.Drawing.Point(42, 56); this.label19.Name = "label19"; this.label19.Size = new System.Drawing.Size(162, 16); this.label19.TabIndex = 3; this.label19.Text = "Half day leave"; // // label20 // this.label20.BackColor = System.Drawing.Color.Yellow; this.label20.Location = new System.Drawing.Point(10, 50); this.label20.Name = "label20"; this.label20.Size = new System.Drawing.Size(26, 23); this.label20.TabIndex = 2; // // label18 // this.label18.Location = new System.Drawing.Point(42, 28); this.label18.Name = "label18"; this.label18.Size = new System.Drawing.Size(162, 16); this.label18.TabIndex = 1; this.label18.Text = "Applied leave in pending status"; // // label4 // this.label4.BackColor = System.Drawing.Color.Red; this.label4.Location = new System.Drawing.Point(10, 22); this.label4.Name = "label4"; this.label4.Size = new System.Drawing.Size(26, 23); this.label4.TabIndex = 0; // // panelControl1 // this.panelControl1.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowOnly; this.panelControl1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder; this.panelControl1.Controls.Add(this.acmsRosterHeader6); this.panelControl1.Controls.Add(this.acmsRosterHeader5); this.panelControl1.Controls.Add(this.acmsRosterHeader4); this.panelControl1.Controls.Add(this.acmsRosterHeader3); this.panelControl1.Controls.Add(this.acmsRosterHeader2); this.panelControl1.Controls.Add(this.acmsRosterHeader1); this.panelControl1.Location = new System.Drawing.Point(6, 44); this.panelControl1.Name = "panelControl1"; this.panelControl1.Size = new System.Drawing.Size(668, 530); this.panelControl1.TabIndex = 29; // // acmsRosterHeader6 // this.acmsRosterHeader6.dtLeaveDetails = null; this.acmsRosterHeader6.dtRoster = null; this.acmsRosterHeader6.dtRosterDetail = null; this.acmsRosterHeader6.EmpID = null; this.acmsRosterHeader6.IsShowLeave = false; this.acmsRosterHeader6.Location = new System.Drawing.Point(-146, 442); this.acmsRosterHeader6.Name = "acmsRosterHeader6"; this.acmsRosterHeader6.ShowHeaderLabel = false; this.acmsRosterHeader6.Size = new System.Drawing.Size(794, 85); this.acmsRosterHeader6.TabIndex = 5; this.acmsRosterHeader6.WeekDay = null; this.acmsRosterHeader6.WeekNo = null; this.acmsRosterHeader6.year = null; this.acmsRosterHeader6.Click += new System.EventHandler(this.acmsRosterHeader_Click); // // acmsRosterHeader5 // this.acmsRosterHeader5.dtLeaveDetails = null; this.acmsRosterHeader5.dtRoster = null; this.acmsRosterHeader5.dtRosterDetail = null; this.acmsRosterHeader5.EmpID = null; this.acmsRosterHeader5.IsShowLeave = false; this.acmsRosterHeader5.Location = new System.Drawing.Point(-146, 354); this.acmsRosterHeader5.Name = "acmsRosterHeader5"; this.acmsRosterHeader5.ShowHeaderLabel = false; this.acmsRosterHeader5.Size = new System.Drawing.Size(794, 85); this.acmsRosterHeader5.TabIndex = 4; this.acmsRosterHeader5.WeekDay = null; this.acmsRosterHeader5.WeekNo = null; this.acmsRosterHeader5.year = null; this.acmsRosterHeader5.Click += new System.EventHandler(this.acmsRosterHeader_Click); // // acmsRosterHeader4 // this.acmsRosterHeader4.dtLeaveDetails = null; this.acmsRosterHeader4.dtRoster = null; this.acmsRosterHeader4.dtRosterDetail = null; this.acmsRosterHeader4.EmpID = null; this.acmsRosterHeader4.IsShowLeave = false; this.acmsRosterHeader4.Location = new System.Drawing.Point(-146, 266); this.acmsRosterHeader4.Name = "acmsRosterHeader4"; this.acmsRosterHeader4.ShowHeaderLabel = false; this.acmsRosterHeader4.Size = new System.Drawing.Size(794, 85); this.acmsRosterHeader4.TabIndex = 3; this.acmsRosterHeader4.WeekDay = null; this.acmsRosterHeader4.WeekNo = null; this.acmsRosterHeader4.year = null; this.acmsRosterHeader4.Click += new System.EventHandler(this.acmsRosterHeader_Click); // // acmsRosterHeader3 // this.acmsRosterHeader3.dtLeaveDetails = null; this.acmsRosterHeader3.dtRoster = null; this.acmsRosterHeader3.dtRosterDetail = null; this.acmsRosterHeader3.EmpID = null; this.acmsRosterHeader3.IsShowLeave = false; this.acmsRosterHeader3.Location = new System.Drawing.Point(-146, 178); this.acmsRosterHeader3.Name = "acmsRosterHeader3"; this.acmsRosterHeader3.ShowHeaderLabel = false; this.acmsRosterHeader3.Size = new System.Drawing.Size(794, 85); this.acmsRosterHeader3.TabIndex = 2; this.acmsRosterHeader3.WeekDay = null; this.acmsRosterHeader3.WeekNo = null; this.acmsRosterHeader3.year = null; this.acmsRosterHeader3.Click += new System.EventHandler(this.acmsRosterHeader_Click); // // acmsRosterHeader2 // this.acmsRosterHeader2.dtLeaveDetails = null; this.acmsRosterHeader2.dtRoster = null; this.acmsRosterHeader2.dtRosterDetail = null; this.acmsRosterHeader2.EmpID = null; this.acmsRosterHeader2.IsShowLeave = false; this.acmsRosterHeader2.Location = new System.Drawing.Point(-146, 90); this.acmsRosterHeader2.Name = "acmsRosterHeader2"; this.acmsRosterHeader2.ShowHeaderLabel = false; this.acmsRosterHeader2.Size = new System.Drawing.Size(794, 85); this.acmsRosterHeader2.TabIndex = 1; this.acmsRosterHeader2.WeekDay = null; this.acmsRosterHeader2.WeekNo = null; this.acmsRosterHeader2.year = null; this.acmsRosterHeader2.Click += new System.EventHandler(this.acmsRosterHeader_Click); // // acmsRosterHeader1 // this.acmsRosterHeader1.dtLeaveDetails = null; this.acmsRosterHeader1.dtRoster = null; this.acmsRosterHeader1.dtRosterDetail = null; this.acmsRosterHeader1.EmpID = null; this.acmsRosterHeader1.IsShowLeave = false; this.acmsRosterHeader1.Location = new System.Drawing.Point(-146, 2); this.acmsRosterHeader1.Name = "acmsRosterHeader1"; this.acmsRosterHeader1.ShowHeaderLabel = false; this.acmsRosterHeader1.Size = new System.Drawing.Size(794, 85); this.acmsRosterHeader1.TabIndex = 0; this.acmsRosterHeader1.WeekDay = null; this.acmsRosterHeader1.WeekNo = null; this.acmsRosterHeader1.year = null; this.acmsRosterHeader1.Click += new System.EventHandler(this.acmsRosterHeader_Click); // // sbtnLeaveNextMonth // this.sbtnLeaveNextMonth.Appearance.BackColor = System.Drawing.Color.LightGray; this.sbtnLeaveNextMonth.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold); this.sbtnLeaveNextMonth.Appearance.Options.UseBackColor = true; this.sbtnLeaveNextMonth.Appearance.Options.UseFont = true; this.sbtnLeaveNextMonth.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple; this.sbtnLeaveNextMonth.Location = new System.Drawing.Point(572, 22); this.sbtnLeaveNextMonth.Name = "sbtnLeaveNextMonth"; this.sbtnLeaveNextMonth.Size = new System.Drawing.Size(80, 20); this.sbtnLeaveNextMonth.TabIndex = 1; this.sbtnLeaveNextMonth.Text = "Next >>"; this.sbtnLeaveNextMonth.Click += new System.EventHandler(this.sbtnLeaveNextMonth_Click); // // sbtnLeavePreviousMonth // this.sbtnLeavePreviousMonth.Appearance.BackColor = System.Drawing.Color.LightGray; this.sbtnLeavePreviousMonth.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold); this.sbtnLeavePreviousMonth.Appearance.Options.UseBackColor = true; this.sbtnLeavePreviousMonth.Appearance.Options.UseFont = true; this.sbtnLeavePreviousMonth.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple; this.sbtnLeavePreviousMonth.Location = new System.Drawing.Point(12, 22); this.sbtnLeavePreviousMonth.Name = "sbtnLeavePreviousMonth"; this.sbtnLeavePreviousMonth.Size = new System.Drawing.Size(80, 20); this.sbtnLeavePreviousMonth.TabIndex = 0; this.sbtnLeavePreviousMonth.Text = "<<Previous"; this.sbtnLeavePreviousMonth.Click += new System.EventHandler(this.sbtnLeavePreviousMonth_Click); // // luedtLeaveEmployeeID // this.luedtLeaveEmployeeID.Location = new System.Drawing.Point(778, 2); this.luedtLeaveEmployeeID.Name = "luedtLeaveEmployeeID"; this.luedtLeaveEmployeeID.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)}); this.luedtLeaveEmployeeID.Size = new System.Drawing.Size(208, 20); this.luedtLeaveEmployeeID.TabIndex = 3; this.luedtLeaveEmployeeID.EditValueChanged += new System.EventHandler(this.luedtLeaveEmployeeID_EditValueChanged); // // lblLeaveEmployeeID // this.lblLeaveEmployeeID.AutoSize = true; this.lblLeaveEmployeeID.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.lblLeaveEmployeeID.Location = new System.Drawing.Point(690, 6); this.lblLeaveEmployeeID.Name = "lblLeaveEmployeeID"; this.lblLeaveEmployeeID.Size = new System.Drawing.Size(88, 16); this.lblLeaveEmployeeID.TabIndex = 32; this.lblLeaveEmployeeID.Text = "Staff Name:"; // // tabStaffSeven // this.tabStaffSeven.Appearance.Header.Font = new System.Drawing.Font("Tahoma", 11.25F, System.Drawing.FontStyle.Bold); this.tabStaffSeven.Appearance.Header.Options.UseFont = true; this.tabStaffSeven.Controls.Add(this.groupControl17); this.tabStaffSeven.Name = "tabStaffSeven"; this.tabStaffSeven.Size = new System.Drawing.Size(1007, 612); this.tabStaffSeven.Text = "To-Do-List"; // // groupControl17 // this.groupControl17.Appearance.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.groupControl17.Appearance.Options.UseFont = true; this.groupControl17.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowOnly; this.groupControl17.Location = new System.Drawing.Point(0, 0); this.groupControl17.Name = "groupControl17"; this.groupControl17.Size = new System.Drawing.Size(992, 576); this.groupControl17.TabIndex = 1; this.groupControl17.Text = "You Won\'t Behind Schedule Anymore"; // // tabStaffEight // this.tabStaffEight.Appearance.Header.Font = new System.Drawing.Font("Tahoma", 11.25F, System.Drawing.FontStyle.Bold); this.tabStaffEight.Appearance.Header.Options.UseFont = true; this.tabStaffEight.Controls.Add(this.xtraTabControl1); this.tabStaffEight.Controls.Add(this.groupControl18); this.tabStaffEight.Name = "tabStaffEight"; this.tabStaffEight.Size = new System.Drawing.Size(1007, 612); this.tabStaffEight.Text = "Work Flow"; // // xtraTabControl1 // this.xtraTabControl1.Location = new System.Drawing.Point(0, 337); this.xtraTabControl1.Name = "xtraTabControl1"; this.xtraTabControl1.SelectedTabPage = this.xtraTabPage1; this.xtraTabControl1.Size = new System.Drawing.Size(1004, 281); this.xtraTabControl1.TabIndex = 3; this.xtraTabControl1.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] { this.xtraTabPage1, this.xtraTabPage2, this.xtraTabPage3}); this.xtraTabControl1.Text = "xtraTabControl1"; // // xtraTabPage1 // this.xtraTabPage1.Controls.Add(this.memoEdit2); this.xtraTabPage1.Controls.Add(this.labelControl1); this.xtraTabPage1.Image = ((System.Drawing.Image)(resources.GetObject("xtraTabPage1.Image"))); this.xtraTabPage1.Name = "xtraTabPage1"; this.xtraTabPage1.Size = new System.Drawing.Size(995, 240); this.xtraTabPage1.Text = "Detail"; // // memoEdit2 // this.memoEdit2.EditValue = ""; this.memoEdit2.Location = new System.Drawing.Point(10, 33); this.memoEdit2.Name = "memoEdit2"; this.memoEdit2.Size = new System.Drawing.Size(706, 187); this.memoEdit2.TabIndex = 6; // // labelControl1 // this.labelControl1.Location = new System.Drawing.Point(12, 8); this.labelControl1.Name = "labelControl1"; this.labelControl1.Size = new System.Drawing.Size(53, 13); this.labelControl1.TabIndex = 0; this.labelControl1.Text = "Description"; // // xtraTabPage2 // this.xtraTabPage2.Controls.Add(this.lookUpEdit4); this.xtraTabPage2.Controls.Add(this.label40); this.xtraTabPage2.Controls.Add(this.lookUpEdit3); this.xtraTabPage2.Controls.Add(this.label39); this.xtraTabPage2.Controls.Add(this.lookUpEdit2); this.xtraTabPage2.Controls.Add(this.label38); this.xtraTabPage2.Controls.Add(this.lookUpEdit1); this.xtraTabPage2.Controls.Add(this.label28); this.xtraTabPage2.Image = ((System.Drawing.Image)(resources.GetObject("xtraTabPage2.Image"))); this.xtraTabPage2.Name = "xtraTabPage2"; this.xtraTabPage2.Size = new System.Drawing.Size(995, 240); this.xtraTabPage2.Text = "Attachment"; // // lookUpEdit4 // this.lookUpEdit4.Location = new System.Drawing.Point(100, 39); this.lookUpEdit4.Name = "lookUpEdit4"; this.lookUpEdit4.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)}); this.lookUpEdit4.Size = new System.Drawing.Size(139, 20); this.lookUpEdit4.TabIndex = 7; // // label40 // this.label40.AutoSize = true; this.label40.Location = new System.Drawing.Point(19, 43); this.label40.Name = "label40"; this.label40.Size = new System.Drawing.Size(61, 13); this.label40.TabIndex = 6; this.label40.Text = "Attachment"; // // lookUpEdit3 // this.lookUpEdit3.Location = new System.Drawing.Point(100, 70); this.lookUpEdit3.Name = "lookUpEdit3"; this.lookUpEdit3.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)}); this.lookUpEdit3.Size = new System.Drawing.Size(139, 20); this.lookUpEdit3.TabIndex = 5; // // label39 // this.label39.AutoSize = true; this.label39.Location = new System.Drawing.Point(19, 77); this.label39.Name = "label39"; this.label39.Size = new System.Drawing.Size(61, 13); this.label39.TabIndex = 4; this.label39.Text = "Attachment"; // // lookUpEdit2 // this.lookUpEdit2.Location = new System.Drawing.Point(100, 106); this.lookUpEdit2.Name = "lookUpEdit2"; this.lookUpEdit2.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)}); this.lookUpEdit2.Size = new System.Drawing.Size(139, 20); this.lookUpEdit2.TabIndex = 3; // // label38 // this.label38.AutoSize = true; this.label38.Location = new System.Drawing.Point(19, 110); this.label38.Name = "label38"; this.label38.Size = new System.Drawing.Size(61, 13); this.label38.TabIndex = 2; this.label38.Text = "Attachment"; // // lookUpEdit1 // this.lookUpEdit1.Location = new System.Drawing.Point(100, 10); this.lookUpEdit1.Name = "lookUpEdit1"; this.lookUpEdit1.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)}); this.lookUpEdit1.Size = new System.Drawing.Size(139, 20); this.lookUpEdit1.TabIndex = 1; // // label28 // this.label28.AutoSize = true; this.label28.Location = new System.Drawing.Point(19, 14); this.label28.Name = "label28"; this.label28.Size = new System.Drawing.Size(61, 13); this.label28.TabIndex = 0; this.label28.Text = "Attachment"; // // xtraTabPage3 // this.xtraTabPage3.Image = ((System.Drawing.Image)(resources.GetObject("xtraTabPage3.Image"))); this.xtraTabPage3.Name = "xtraTabPage3"; this.xtraTabPage3.Size = new System.Drawing.Size(995, 240); this.xtraTabPage3.Text = "Video"; // // groupControl18 // this.groupControl18.Appearance.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.groupControl18.Appearance.Options.UseFont = true; this.groupControl18.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowOnly; this.groupControl18.Dock = System.Windows.Forms.DockStyle.Top; this.groupControl18.Location = new System.Drawing.Point(0, 0); this.groupControl18.Name = "groupControl18"; this.groupControl18.Size = new System.Drawing.Size(1007, 337); this.groupControl18.TabIndex = 2; this.groupControl18.Text = "You Won\'t Behind Schedule Anymore"; // // timer1 // this.timer1.Tick += new System.EventHandler(this.timer1_Tick); // // frmStaff // this.AutoScaleBaseSize = new System.Drawing.Size(5, 13); this.ClientSize = new System.Drawing.Size(1016, 713); this.Controls.Add(this.tabStaff); this.Controls.Add(this.barDockControlLeft); this.Controls.Add(this.barDockControlRight); this.Controls.Add(this.barDockControlBottom); this.Controls.Add(this.barDockControlTop); this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle; this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); this.Menu = this.MainMenu1; this.Name = "frmStaff"; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; this.Text = "ACMS Staff"; this.WindowState = System.Windows.Forms.FormWindowState.Maximized; this.Load += new System.EventHandler(this.frmStaff_Load); this.Closing += new System.ComponentModel.CancelEventHandler(this.frmStaff_Closing); ((System.ComponentModel.ISupportInitialize)(this.BarManager1)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.BarAndDockingController1)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.tabStaff)).EndInit(); this.tabStaff.ResumeLayout(false); this.tabStaffOne.ResumeLayout(false); this.tabStaffOne.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.luedtMemoEmployeeID.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.groupMessages)).EndInit(); this.groupMessages.ResumeLayout(false); this.groupMessages.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.groupMessagesEntry)).EndInit(); this.groupMessagesEntry.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.cbViewMemo.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.gctrMemo)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.gvMemo)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.groupMessagesFollowUpAction)).EndInit(); this.groupMessagesFollowUpAction.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.GroupControl4)).EndInit(); this.GroupControl4.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.gctrReplies)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.gvReplies)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.groupMessagesMemoInfo)).EndInit(); this.groupMessagesMemoInfo.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.GroupControl8)).EndInit(); this.GroupControl8.ResumeLayout(false); this.GroupControl8.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.memoedtMessage.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.groupMessagesReceipient)).EndInit(); this.groupMessagesReceipient.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.GroupControl6)).EndInit(); this.GroupControl6.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.cbMemoReceipient.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.gctrReceipient)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.gvReceipient)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.groupReceipientGroup)).EndInit(); this.groupReceipientGroup.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.groupReceipientGroupEntry)).EndInit(); this.groupReceipientGroupEntry.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.gctrRecpGrp)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.gvRecpGrp)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.groupReceipientGroupReceipientEntries)).EndInit(); this.groupReceipientGroupReceipientEntries.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.GroupControl10)).EndInit(); this.GroupControl10.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.gctrRecpEntry)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.gvRecpEntry)).EndInit(); this.tabStaffTwo.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.groupService)).EndInit(); this.groupService.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.groupServiceEntry)).EndInit(); this.groupServiceEntry.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.groupControl3)).EndInit(); this.groupControl3.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.luedtCommissionServiceBranch.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.cbServiceYear.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.cbServiceMonth.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.cbServiceServiceType.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.gctrService)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.gvService)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.groupSales)).EndInit(); this.groupSales.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.groupSalesEntry)).EndInit(); this.groupSalesEntry.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.groupControl7)).EndInit(); this.groupControl7.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.luedtSalesBranchCode.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.cbSalesYear.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.cbSalesMonth.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.cbSalesType.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.gctrSales)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.gvSales)).EndInit(); this.tabStaffThree.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.groupTimesheet)).EndInit(); this.groupTimesheet.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.groupTimesheetEntry)).EndInit(); this.groupTimesheetEntry.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.groupControl9)).EndInit(); this.groupControl9.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.cbTimesheetYear.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.cbTimesheetMonth.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.gridctrTimesheet)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.gvTimesheet)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit2)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.groupOvertime)).EndInit(); this.groupOvertime.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.groupControl15)).EndInit(); this.groupControl15.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.groupControl16)).EndInit(); this.groupControl16.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.cbOvertimeYear.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.cbOvertimeMonth.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.gridctrOvertime)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.gvOvertime)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.groupLateness)).EndInit(); this.groupLateness.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.groupControl13)).EndInit(); this.groupControl13.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.groupControl14)).EndInit(); this.groupControl14.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.cbLatenessYear.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.cbLatenessMonth.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.gridctrLateness)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.gvLateness)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTimeEdit1)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTimeEdit2)).EndInit(); this.tabStaffFour.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.groupAppointment)).EndInit(); this.groupAppointment.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.groupAppointmentEntry)).EndInit(); this.groupAppointmentEntry.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.groupControl12)).EndInit(); this.groupControl12.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.cbAppointmentYear.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.cbAppointmentMonth.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.gridctrAppointment)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.gvAppointment)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.groupContact)).EndInit(); this.groupContact.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.groupContactEntry)).EndInit(); this.groupContactEntry.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.gridctrContact)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.gvContact)).EndInit(); this.tabStaffFive.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.groupCustomerVoice)).EndInit(); this.groupCustomerVoice.ResumeLayout(false); this.groupCustomerVoice.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.GroupControl24)).EndInit(); this.GroupControl24.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.luedtCVSubmitter.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.cbListCV.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.gctrCV)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.gvCV)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.luedtCVAssignTo.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.groupCustomerVoiceActionHistory)).EndInit(); this.groupCustomerVoiceActionHistory.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.GroupControl26)).EndInit(); this.GroupControl26.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.gctrCVAction)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.gvCVAction)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.groupCustomerVoiceCVDetails)).EndInit(); this.groupCustomerVoiceCVDetails.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.GroupControl28)).EndInit(); this.GroupControl28.ResumeLayout(false); this.GroupControl28.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.txtHomeNo.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.txtEmail.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.txtContactNo.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.memoeditSummaryCV.Properties)).EndInit(); this.tabStaffSix.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit(); this.groupControl1.ResumeLayout(false); this.groupControl1.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.groupLeave)).EndInit(); this.groupLeave.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.groupLeaveLeaveDetails)).EndInit(); this.groupLeaveLeaveDetails.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.groupControl11)).EndInit(); this.groupControl11.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.cbLeaveStatus.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.txtLeaveEntitlement.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.dateedtLeaveJoinDate.Properties.VistaTimeProperties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.dateedtLeaveJoinDate.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.gridctrLeaveDetail)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.gvLeave)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.cbLeaveNYearID.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.groupLeaveLeaveBalance)).EndInit(); this.groupLeaveLeaveBalance.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.groupControl5)).EndInit(); this.groupControl5.ResumeLayout(false); this.groupControl5.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.cbLeaveBalance.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.gridctrLeaveBalance)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.gvLeaveBalance)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.groupLeaveRoster)).EndInit(); this.groupLeaveRoster.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).EndInit(); this.groupControl2.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit(); this.panelControl1.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.luedtLeaveEmployeeID.Properties)).EndInit(); this.tabStaffSeven.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.groupControl17)).EndInit(); this.tabStaffEight.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).EndInit(); this.xtraTabControl1.ResumeLayout(false); this.xtraTabPage1.ResumeLayout(false); this.xtraTabPage1.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.memoEdit2.Properties)).EndInit(); this.xtraTabPage2.ResumeLayout(false); this.xtraTabPage2.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.lookUpEdit4.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.lookUpEdit3.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.lookUpEdit2.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.lookUpEdit1.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.groupControl18)).EndInit(); this.ResumeLayout(false); }