private void btnWijzig_Click(object sender, EventArgs e) { if (lvStage.SelectedItems.Count != 0) { Stageopdracht opdracht = new Stageopdracht(); int bedrijfcode = Convert.ToInt32(lvStage.SelectedItems[0].SubItems[6].Text); // bedrijfcode int contactcode = Convert.ToInt32(lvStage.SelectedItems[0].SubItems[7].Text); // contactcode opdracht.Code = Convert.ToInt32(lvStage.SelectedItems[0].SubItems[0].Text); opdracht.Naam = lvStage.SelectedItems[0].SubItems[1].Text; opdracht.Omschrijving = lvStage.SelectedItems[0].SubItems[2].Text; opdracht.Status = lvStage.SelectedItems[0].SubItems[3].Text; // Haal bedrijfinfo op BedrijfController bc = new BedrijfController(); Bedrijfcontact bedrijf = bc.SelecteerBedrijf(bedrijfcode); opdracht.Bedrijf = bedrijf; //Haal contactinfo op ContactenController cc = new ContactenController(); Persooncontact contact = cc.HaalInfoOp(contactcode.ToString()); opdracht.Contact = contact; opdrachtEditForm OEF = new opdrachtEditForm(); OEF.Editopdracht(opdracht); OEF.ShowDialog(); if (OEF.DialogResult == DialogResult.OK) { setListBox(); } } }
private void btnVoegtoe_Click(object sender, EventArgs e) { opdrachtEditForm form = new opdrachtEditForm(); form.ShowDialog(); if (form.DialogResult == DialogResult.OK) { setListBox(); } }