コード例 #1
0
        private void BTN_Nouveau_Click(object sender, EventArgs e)
        {
            Form newUser = new FEN_User(modeOuverture.CREATION);

            newUser.ShowDialog();

            this.chargerTable();
        }
コード例 #2
0
        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
ファイル: FEN_Home.cs プロジェクト: Alex-C-IT/GSBCarpooling
        private void BTN_Param_Click(object sender, EventArgs e)
        {
            Form param = new FEN_User(modeOuverture.MODIFICATION, Global.user.getId());

            param.ShowDialog();
        }