private void BTN_Nouveau_Click(object sender, EventArgs e)
        {
            Form newUser = new FEN_User(modeOuverture.CREATION);

            newUser.ShowDialog();

            this.chargerTable();
        }
        private void Modifier_Click(object sender, EventArgs e)
        {
            int id;

            id = (int)TABLE_Users.CurrentRow.Cells[0].Value;
            Form newUser = new FEN_User(modeOuverture.MODIFICATION, id);

            newUser.ShowDialog();

            this.miseAJourLigneEnCours();
        }
示例#3
0
        private void BTN_Param_Click(object sender, EventArgs e)
        {
            Form param = new FEN_User(modeOuverture.MODIFICATION, Global.user.getId());

            param.ShowDialog();
        }