private void Modifier_Click(object sender, EventArgs e) { int index = c1TrueDBGrid1.Row; string Code = c1TrueDBGrid1.Columns["Code"].CellText(index); IndoFacture Facture = new IndoFacture(Code); Facture.ShowDialog(this); }
private void Ajouter_Click(object sender, EventArgs e) { IndoFacture f = new IndoFacture(); f.ShowDialog(this); }