public VacancyForm(DataModule dm, MainForm mnu) { InitializeComponent(); DM = dm; frmMenu = mnu; BindControls(); }
public STVacancyForm(DataModule dm, MainForm mnu) { InitializeComponent(); DM = dm; frmMenu = mnu; cmSkill = (CurrencyManager)this.BindingContext[DM.lookingGlassDS, "Skill"]; cmVacancy = (CurrencyManager)this.BindingContext[DM.lookingGlassDS, "Vacancy"]; cmVVS = (CurrencyManager)this.BindingContext[DM.lookingGlassDS, "Vacancy.Vacancy_VacancySkill"]; BindControls(); }
public STCandidateForm(DataModule dm, MainForm mnu) { InitializeComponent(); DM = dm; frmMenu = mnu; cmSkill = (CurrencyManager)this.BindingContext[DM.lookingGlassDS, "Skill"]; cmCandidate = (CurrencyManager)this.BindingContext[DM.lookingGlassDS, "Candidate"]; cmCCS = (CurrencyManager)this.BindingContext[DM.lookingGlassDS, "Candidate.Candidate_CandidateSkill"]; BindControls(); }
public CandidateMaintenanceForm(DataModule dm, MainForm mnu) { InitializeComponent(); DM = dm; frmMenu = mnu; BindControls(); pnlAddCandidate.Left = 210; pnlAddCandidate.Top = 25; pnlUpdateCandidate.Left = 210; pnlUpdateCandidate.Top = 25; }
public VacancyMaintenanceForm(DataModule dm, MainForm mnu) { InitializeComponent(); DM = dm; frmMenu = mnu; BindControls(); pnlAddVacancy.Left = 210; pnlAddVacancy.Top = 20; pnlUpdateVacancy.Left = 210; pnlUpdateVacancy.Top = 20; }
public EmployerMaintenanceForm(DataModule dm, MainForm mnu) { //Add reference for a currencyManager and change the constructor to accept the DataModule and Mainform Reference InitializeComponent(); DM = dm; frmMenu = mnu; BindControls(); pnlAddEmployer.Left = 200; pnlAddEmployer.Top = 40; pnlUpdateEmployer.Left = 200; pnlUpdateEmployer.Top = 40; }
private Boolean canSave = false; //To deside if eath loop meet the condition public ApplicationMaintenanceForm(DataModule dm, MainForm mnu) { InitializeComponent(); DM = dm; frmMenu = mnu; pnlAddApplication.Left = 220; pnlAddApplication.Top = 25; cmApplication = (CurrencyManager)this.BindingContext[DM.dsLookingGlass, "Application"]; cmVacancy = (CurrencyManager)this.BindingContext[DM.dsLookingGlass, "Vacancy"]; cmEmployer = (CurrencyManager)this.BindingContext[DM.dsLookingGlass, "Employer"]; cmCandidate = (CurrencyManager)this.BindingContext[DM.dsLookingGlass, "Candidate"]; cmVacancySkill = (CurrencyManager)this.BindingContext[DM.dsLookingGlass, "VacancySkill"]; cmCandidateSkill = (CurrencyManager)this.BindingContext[DM.dsLookingGlass, "CandidateSkill"]; BindControls(); }
public CandidatesReportForm(DataModule dm, MainForm mnu) { InitializeComponent(); DM = dm; frmMenu = mnu; }
private VacancyForm frmVacancy; //the reference to the Vacancy Form //create the data module and load the dataset private void MainForm_Load(object sender, EventArgs e) { DM = new DataModule(); }
private void MainForm_Load(object sender, EventArgs e) { DM = new DataModule();//create the data module and load the dataset }