private void butAlta_Click(object sender, EventArgs e) { FichaContacto fc = new FichaContacto(); fc.db = this.db; fc.MdiParent = this.MdiParent; fc.Show(); }
private void butModif_Click(object sender, EventArgs e) { FichaContacto fc = new FichaContacto(); fc.CSelec = (Contacto)contactoBindingSource.Current; fc.db = this.db; fc.MdiParent = this.MdiParent; fc.Show(); }