Esempio n. 1
0
        private void tbtnAdd_Click(object sender, EventArgs e)
        {
            this.Cursor = Cursors.AppStarting;
            frmRecruitmentSourceAdd pForm = new frmRecruitmentSourceAdd();

            pForm.FormCaller = FormCallers.RecruitmentSourceList;
            pForm.FormRecruitmentSourceList = this;
            pForm.ShowDialog();
            this.Cursor = Cursors.Default;
        }
Esempio n. 2
0
        private void btnRecruitmentSourceAdd_Click(object sender, EventArgs e)
        {
            Cursor.Current = Cursors.AppStarting;
            frmRecruitmentSourceAdd pForm = new frmRecruitmentSourceAdd();

            pForm.FormCaller      = FormCallers.EmployeeNew;
            pForm.FormEmployeeNew = this;
            pForm.Show();
            Cursor.Current = Cursors.Default;
        }