private void MTN_EMPLOYEE_LIST_Load(object sender, EventArgs e) { clsTranslate.InitLanguage(this); Util.ChangeStatus(this, true); FillControl.FillStatus(cboStatus, false); FillControl.FillAdminDutyList(cboDuty, false, true); FillControl.FillAdminDegreeList(cboDegree, false, true); FillControl.FillAdminDeptList(cboDept, false, true); DBGrid.Tag = this.Text; LoadData(); }
private void cboDuty_SelectedIndexChanged(object sender, EventArgs e) { if (cboDuty.SelectedValue == null) { return; } if (cboDuty.SelectedValue.ToString().CompareTo("New...") != 0) { return; } MTN_DUTY_LIST frm = new MTN_DUTY_LIST(); frm.ShowDialog(); FillControl.FillAdminDutyList(cboDuty, false, true); }