예제 #1
0
        /// <summary>
        /// Author          Date        Comment
        /// BONGVX                      Them thong tin tuyen dung
        /// </summary>
        void actionMenuRecruitmentInfo_PressNew(object sender, EventArgs e)
        {
            frmRecruitmentInfo frm = new frmRecruitmentInfo(mAccount);

            frm.ShowDialog();
            displayRecruitmentInfo();
        }
예제 #2
0
        /// <summary>
        /// Author          Date        Comment
        /// BONGVX                      Sua thong tin tuyen dung
        /// </summary>
        void actionMenuRecruitmentInfo_PressEdit(object sender, EventArgs e)
        {
            String value = "" + gridViewRecruitmentInfo.GetFocusedRowCellValue("Id");

            int.TryParse(value, out idRe);
            if (idRe > 0)
            {
                frmRecruitmentInfo frm = new frmRecruitmentInfo(mAccount, idRe);
                frm.ShowDialog();
                displayRecruitmentInfo();
            }
            else
            {
                MessageBox.Show("Hãy chọn giảng viên cần cập nhật", "Thông báo");
            }
        }