private void BtnEdit_Click(object sender, EventArgs e) { Delegates.BackToCompany back = this.BackHere; Delegates.DestroyCompany destroy = this.Destroyform; new SignupForm(back, destroy, this.BackHome, this.Ds).Visible = true; this.Visible = false; }
private void DgvPostedJobs_CellDoubleClick(object sender, DataGridViewCellEventArgs e) { Delegates.BackToCompany back = this.BackHere; DataGridViewRow row = this.dgvPostedJobs.CurrentRow; new JobForm(row, back).Visible = true; this.Visible = false; }
public JobCircularForm(Delegates.BackToCompany back, DataGridViewRow row) { InitializeComponent(); this.BackToCompany = back; this.Row = row; this.Purpose = "update"; this.SetAll(); }
public JobCircularForm(Delegates.BackToCompany back, string companyId) { InitializeComponent(); this.BackToCompany = back; this.CompanyId = companyId; this.JobId = DataAccess.SearchMaxJobID() + 1; this.Purpose = "addJob"; }
public SearchForm(Delegates.BackToCompany backToCompany) { InitializeComponent(); this.BackToCompany = backToCompany; this.CurrentUser = "******"; this.pnlJobSeeker.Visible = true; this.PopulateDefaultDGV(); this.Text = "Search Peoples"; }
public JobForm(DataGridViewRow row, Delegates.BackToCompany back) { InitializeComponent(); this.Row = row; this.BackToCompany = back; this.SetAll(); this.pnlVewPeoples.Visible = true; this.BackForm = "Company"; }
public JobSeekerForm(Delegates.BackToCompany back, DataGridViewRow row) { InitializeComponent(); this.BackToCompany = back; this.SetAll(row); this.pnlLogout.Visible = false; this.BackPage = "Company"; this.Text = "Curriculum Vitae"; }
public SignupForm(Delegates.BackToCompany back, Delegates.DestroyCompany destroy, Delegates.BackToHome backHome, DataSet ds) { InitializeComponent(); this.pnlCompanyOrJobSeeker.Visible = false; this.pnlCompany.Visible = true; this.pnlJobSeeker.Visible = false; this.backToCompany = back; this.DestroyCompany = destroy; this.Back = backHome; this.Purpose = "update"; this.Ds = ds; this.setCompany(); this.Text = "Update Account"; }
private void BtnSearchJobSeekers_Click(object sender, EventArgs e) { Delegates.BackToCompany back = this.BackHere; new SearchForm(back).Visible = true; this.Visible = false; }
private void BtnPostJobCirculer_Click(object sender, EventArgs e) { Delegates.BackToCompany backHere = this.BackHere; new JobCircularForm(BackHere, this.Id).Visible = true; this.Visible = false; }