Exemplo n.º 1
0
        private void btnModifier_Click(object sender, EventArgs e)
        {
            int id = int.Parse(listView1.SelectedItems[0].SubItems[0].Text);
            IHMModifierStock modif = new IHMModifierStock(id);

            this.Hide();
            modif.ShowDialog();
        }
Exemplo n.º 2
0
 private void btnModifier_Click(object sender, EventArgs e)
 {
     if (listView1.SelectedIndices.Count == 0)
     {
         MessageBox.Show("Vous n'avez pas saisi de médicament à modifier");
     }
     else
     {
         int id = int.Parse(listView1.SelectedItems[0].SubItems[0].Text);
         IHMModifierStock modif = new IHMModifierStock(id);
         this.Hide();
         modif.ShowDialog();
     }
 }