IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)
Navigation

Inscrivez-vous gratuitement
pour pouvoir participer, suivre les réponses en temps réel, voter pour les messages, poser vos propres questions et recevoir la newsletter

Interfaces Graphiques en Java Discussion :

Comment faire en sorte que lorsque 2 carte sont reviré, ils se retourne dans un jeu de mémoire


Sujet :

Interfaces Graphiques en Java

  1. #1
    Candidat au Club
    Homme Profil pro
    Étudiant
    Inscrit en
    Mai 2018
    Messages
    15
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : Canada

    Informations professionnelles :
    Activité : Étudiant
    Secteur : Enseignement

    Informations forums :
    Inscription : Mai 2018
    Messages : 15
    Points : 3
    Points
    3
    Par défaut Comment faire en sorte que lorsque 2 carte sont reviré, ils se retourne dans un jeu de mémoire
    Voici mon code
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    101
    102
    103
    104
    105
    106
    107
    108
    109
    110
    111
    112
    113
    114
    115
    116
    117
    118
    119
    120
    121
    122
    123
    124
    125
    126
    127
    128
    129
    130
    131
    132
    133
    134
    135
    136
    137
    138
    139
    140
    141
    142
    143
    144
    145
    146
    147
    148
    149
    150
    151
    152
    153
    154
    155
    156
    157
    158
    159
    160
    161
    162
    163
    164
    165
    166
    167
    168
    169
    170
    171
    172
    173
    174
    175
    176
    177
    178
    179
    180
    181
    182
    183
    184
    185
    186
    187
    188
    189
    190
    191
    192
    193
    194
    195
    196
    197
    198
    199
    200
    201
    202
    203
    204
    205
    206
    207
    208
    209
    210
    211
    212
    213
    214
    215
    216
    217
    218
    219
    220
    221
    222
    223
    224
    225
    226
    227
    228
    229
    230
    231
    232
    233
    234
    235
    236
    237
    238
    239
    240
    241
    242
    243
    244
    245
    246
    247
    248
    249
    250
    251
    252
    253
    254
    255
    256
    257
    258
    259
    260
    261
    262
    263
    264
    265
    266
    267
    268
    269
    270
    271
    272
    273
    274
    275
    276
    277
    278
    279
    280
    281
    282
    283
    284
    285
    286
    287
    288
    289
    290
    291
    292
    293
    294
    295
    296
    297
    298
    299
    300
    301
    302
    303
    304
    305
    306
    307
    308
    309
    310
    311
    312
    313
    314
    315
    316
    317
    318
    319
    320
    321
    322
    323
    324
    325
    326
    327
    328
    329
    330
    331
    332
    333
    334
    335
    336
    337
    338
    339
    340
    341
    342
    343
    344
    345
    346
    347
    348
    349
    350
    351
    352
    353
    354
    355
    356
    357
    358
    359
    360
    361
    362
    363
    364
    365
    366
    367
    368
    369
    370
    371
    372
    373
    374
    375
    376
    377
    378
    379
    380
    381
    382
    383
    384
    385
    386
    387
    388
    389
    390
    391
    392
    393
    394
    395
    396
    397
    398
    399
    400
    401
    402
    403
    404
    405
    406
    407
    408
    409
    410
    411
    412
    413
    414
    415
    416
    417
    418
    419
    420
    421
    422
    423
    424
    425
    426
    427
    import java.util.Random;
    import javax.swing.ImageIcon;
     
    /*
     * To change this license header, choose License Headers in Project Properties.
     * To change this template file, choose Tools | Templates
     * and open the template in the editor.
     */
     
    /**
     *
     * @author essm-codage
     */
    public class Jeu extends javax.swing.JFrame {
    int carte;
     
     
     
     
     
     
        /**
         * Creates new form Jeu
         */
        public Jeu() {
            initComponents();
       jLabel12.setVisible(false);
       jLabel13.setVisible(false);
       jLabel14.setVisible(false);
       jLabel15.setVisible(false);
       jLabel16.setVisible(false);
       jLabel17.setVisible(false);
       jLabel18.setVisible(false);
       jLabel19.setVisible(false);
       jLabel20.setVisible(false);
       jLabel21.setVisible(false);
       jButton3.setEnabled(false);
       jButton4.setEnabled(false);
       jButton5.setEnabled(false);
       jButton6.setEnabled(false);
       jButton7.setEnabled(false);
       jButton8.setEnabled(false);
       jButton9.setEnabled(false);
       jButton10.setEnabled(false);
       jButton11.setEnabled(false);
       jButton12.setEnabled(false);
        }
     
        /**
         * This method is called from within the constructor to initialize the form.
         * WARNING: Do NOT modify this code. The content of this method is always
         * regenerated by the Form Editor.
         */
        @SuppressWarnings("unchecked")
        // <editor-fold defaultstate="collapsed" desc="Generated Code">                          
        private void initComponents() {
     
            jLabel12 = new javax.swing.JLabel();
            jLabel13 = new javax.swing.JLabel();
            jLabel14 = new javax.swing.JLabel();
            jLabel15 = new javax.swing.JLabel();
            jLabel16 = new javax.swing.JLabel();
            jLabel17 = new javax.swing.JLabel();
            jLabel18 = new javax.swing.JLabel();
            jLabel19 = new javax.swing.JLabel();
            jLabel20 = new javax.swing.JLabel();
            jLabel21 = new javax.swing.JLabel();
            jLabel2 = new javax.swing.JLabel();
            jLabel3 = new javax.swing.JLabel();
            jLabel4 = new javax.swing.JLabel();
            jLabel5 = new javax.swing.JLabel();
            jLabel6 = new javax.swing.JLabel();
            jLabel7 = new javax.swing.JLabel();
            jLabel8 = new javax.swing.JLabel();
            jLabel9 = new javax.swing.JLabel();
            jLabel10 = new javax.swing.JLabel();
            jLabel11 = new javax.swing.JLabel();
            jButton1 = new javax.swing.JButton();
            jButton2 = new javax.swing.JButton();
            jLabel1 = new javax.swing.JLabel();
            jButton3 = new javax.swing.JButton();
            jButton4 = new javax.swing.JButton();
            jButton5 = new javax.swing.JButton();
            jButton6 = new javax.swing.JButton();
            jButton7 = new javax.swing.JButton();
            jButton8 = new javax.swing.JButton();
            jButton9 = new javax.swing.JButton();
            jButton10 = new javax.swing.JButton();
            jButton11 = new javax.swing.JButton();
            jButton12 = new javax.swing.JButton();
     
            setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);
            setTitle("Memory");
            getContentPane().setLayout(null);
     
            jLabel12.setIcon(new javax.swing.ImageIcon("E:\\Codage\\FinDAnnée\\src\\image\\8c.jpg")); // NOI18N
            getContentPane().add(jLabel12);
            jLabel12.setBounds(10, 10, 130, 190);
     
            jLabel13.setIcon(new javax.swing.ImageIcon("E:\\Codage\\FinDAnnée\\src\\image\\12c.jpg")); // NOI18N
            getContentPane().add(jLabel13);
            jLabel13.setBounds(160, 10, 130, 190);
     
            jLabel14.setIcon(new javax.swing.ImageIcon("E:\\Codage\\FinDAnnée\\src\\image\\12c.jpg")); // NOI18N
            getContentPane().add(jLabel14);
            jLabel14.setBounds(310, 10, 130, 190);
     
            jLabel15.setIcon(new javax.swing.ImageIcon("E:\\Codage\\FinDAnnée\\src\\image\\11c.jpg")); // NOI18N
            getContentPane().add(jLabel15);
            jLabel15.setBounds(460, 10, 130, 190);
     
            jLabel16.setIcon(new javax.swing.ImageIcon("E:\\Codage\\FinDAnnée\\src\\image\\13c.jpg")); // NOI18N
            getContentPane().add(jLabel16);
            jLabel16.setBounds(600, 10, 130, 190);
     
            jLabel17.setIcon(new javax.swing.ImageIcon("E:\\Codage\\FinDAnnée\\src\\image\\8c.jpg")); // NOI18N
            getContentPane().add(jLabel17);
            jLabel17.setBounds(10, 270, 130, 190);
     
            jLabel18.setIcon(new javax.swing.ImageIcon("E:\\Codage\\FinDAnnée\\src\\image\\1c.jpg")); // NOI18N
            getContentPane().add(jLabel18);
            jLabel18.setBounds(160, 270, 130, 190);
     
            jLabel19.setIcon(new javax.swing.ImageIcon("E:\\Codage\\FinDAnnée\\src\\image\\11c.jpg")); // NOI18N
            getContentPane().add(jLabel19);
            jLabel19.setBounds(310, 270, 130, 190);
     
            jLabel20.setIcon(new javax.swing.ImageIcon("E:\\Codage\\FinDAnnée\\src\\image\\13c.jpg")); // NOI18N
            getContentPane().add(jLabel20);
            jLabel20.setBounds(460, 270, 130, 190);
     
            jLabel21.setIcon(new javax.swing.ImageIcon("E:\\Codage\\FinDAnnée\\src\\image\\1c.jpg")); // NOI18N
            getContentPane().add(jLabel21);
            jLabel21.setBounds(600, 270, 130, 190);
     
            jLabel2.setIcon(new javax.swing.ImageIcon("E:\\Codage\\FinDAnnée\\src\\image\\dos2.png")); // NOI18N
            getContentPane().add(jLabel2);
            jLabel2.setBounds(160, 270, 130, 190);
     
            jLabel3.setIcon(new javax.swing.ImageIcon("E:\\Codage\\FinDAnnée\\src\\image\\dos2.png")); // NOI18N
            getContentPane().add(jLabel3);
            jLabel3.setBounds(310, 10, 130, 190);
     
            jLabel4.setIcon(new javax.swing.ImageIcon("E:\\Codage\\FinDAnnée\\src\\image\\dos2.png")); // NOI18N
            getContentPane().add(jLabel4);
            jLabel4.setBounds(460, 10, 130, 190);
     
            jLabel5.setIcon(new javax.swing.ImageIcon("E:\\Codage\\FinDAnnée\\src\\image\\dos2.png")); // NOI18N
            getContentPane().add(jLabel5);
            jLabel5.setBounds(600, 10, 130, 190);
     
            jLabel6.setIcon(new javax.swing.ImageIcon("E:\\Codage\\FinDAnnée\\src\\image\\dos2.png")); // NOI18N
            getContentPane().add(jLabel6);
            jLabel6.setBounds(10, 270, 130, 190);
     
            jLabel7.setIcon(new javax.swing.ImageIcon("E:\\Codage\\FinDAnnée\\src\\image\\dos2.png")); // NOI18N
            getContentPane().add(jLabel7);
            jLabel7.setBounds(10, 10, 130, 190);
     
            jLabel8.setIcon(new javax.swing.ImageIcon("E:\\Codage\\FinDAnnée\\src\\image\\dos2.png")); // NOI18N
            getContentPane().add(jLabel8);
            jLabel8.setBounds(310, 270, 130, 190);
     
            jLabel9.setIcon(new javax.swing.ImageIcon("E:\\Codage\\FinDAnnée\\src\\image\\dos2.png")); // NOI18N
            getContentPane().add(jLabel9);
            jLabel9.setBounds(460, 270, 130, 190);
     
            jLabel10.setIcon(new javax.swing.ImageIcon("E:\\Codage\\FinDAnnée\\src\\image\\dos2.png")); // NOI18N
            getContentPane().add(jLabel10);
            jLabel10.setBounds(600, 270, 130, 190);
     
            jLabel11.setIcon(new javax.swing.ImageIcon("E:\\Codage\\FinDAnnée\\src\\image\\dos2.png")); // NOI18N
            getContentPane().add(jLabel11);
            jLabel11.setBounds(160, 10, 130, 190);
     
            jButton1.setBackground(new java.awt.Color(204, 204, 204));
            jButton1.setText("Jouer");
            jButton1.addActionListener(new java.awt.event.ActionListener() {
                public void actionPerformed(java.awt.event.ActionEvent evt) {
                    jButton1ActionPerformed(evt);
                }
            });
            getContentPane().add(jButton1);
            jButton1.setBounds(320, 230, 100, 30);
     
            jButton2.setText("Retourner au menu principal");
            jButton2.addActionListener(new java.awt.event.ActionListener() {
                public void actionPerformed(java.awt.event.ActionEvent evt) {
                    jButton2ActionPerformed(evt);
                }
            });
            getContentPane().add(jButton2);
            jButton2.setBounds(270, 480, 210, 23);
     
            jLabel1.setIcon(new javax.swing.ImageIcon("E:\\Codage\\FinDAnnée\\src\\image\\espace.jpg")); // NOI18N
            getContentPane().add(jLabel1);
            jLabel1.setBounds(-10, 0, 740, 520);
     
            jButton3.addActionListener(new java.awt.event.ActionListener() {
                public void actionPerformed(java.awt.event.ActionEvent evt) {
                    jButton3ActionPerformed(evt);
                }
            });
            getContentPane().add(jButton3);
            jButton3.setBounds(10, 10, 130, 190);
     
            jButton4.addActionListener(new java.awt.event.ActionListener() {
                public void actionPerformed(java.awt.event.ActionEvent evt) {
                    jButton4ActionPerformed(evt);
                }
            });
            getContentPane().add(jButton4);
            jButton4.setBounds(160, 10, 130, 190);
     
            jButton5.addActionListener(new java.awt.event.ActionListener() {
                public void actionPerformed(java.awt.event.ActionEvent evt) {
                    jButton5ActionPerformed(evt);
                }
            });
            getContentPane().add(jButton5);
            jButton5.setBounds(310, 10, 130, 190);
     
            jButton6.addActionListener(new java.awt.event.ActionListener() {
                public void actionPerformed(java.awt.event.ActionEvent evt) {
                    jButton6ActionPerformed(evt);
                }
            });
            getContentPane().add(jButton6);
            jButton6.setBounds(460, 10, 130, 190);
     
            jButton7.addActionListener(new java.awt.event.ActionListener() {
                public void actionPerformed(java.awt.event.ActionEvent evt) {
                    jButton7ActionPerformed(evt);
                }
            });
            getContentPane().add(jButton7);
            jButton7.setBounds(600, 10, 130, 190);
     
            jButton8.addActionListener(new java.awt.event.ActionListener() {
                public void actionPerformed(java.awt.event.ActionEvent evt) {
                    jButton8ActionPerformed(evt);
                }
            });
            getContentPane().add(jButton8);
            jButton8.setBounds(10, 270, 130, 190);
     
            jButton9.addActionListener(new java.awt.event.ActionListener() {
                public void actionPerformed(java.awt.event.ActionEvent evt) {
                    jButton9ActionPerformed(evt);
                }
            });
            getContentPane().add(jButton9);
            jButton9.setBounds(160, 270, 130, 190);
     
            jButton10.addActionListener(new java.awt.event.ActionListener() {
                public void actionPerformed(java.awt.event.ActionEvent evt) {
                    jButton10ActionPerformed(evt);
                }
            });
            getContentPane().add(jButton10);
            jButton10.setBounds(310, 270, 130, 190);
     
            jButton11.addActionListener(new java.awt.event.ActionListener() {
                public void actionPerformed(java.awt.event.ActionEvent evt) {
                    jButton11ActionPerformed(evt);
                }
            });
            getContentPane().add(jButton11);
            jButton11.setBounds(460, 270, 130, 190);
     
            jButton12.addActionListener(new java.awt.event.ActionListener() {
                public void actionPerformed(java.awt.event.ActionEvent evt) {
                    jButton12ActionPerformed(evt);
                }
            });
            getContentPane().add(jButton12);
            jButton12.setBounds(600, 270, 130, 190);
     
            setSize(new java.awt.Dimension(745, 554));
            setLocationRelativeTo(null);
        }// </editor-fold>                        
     
        private void jButton2ActionPerformed(java.awt.event.ActionEvent evt) {                                         
        new fenetrePrincipale().setVisible(true);
        this.dispose();
        }                                        
     
        private void jButton3ActionPerformed(java.awt.event.ActionEvent evt) {                                         
     
     
       jLabel12.setVisible(true);
       jLabel7.setVisible(true);
        }                                        
     
        private void jButton4ActionPerformed(java.awt.event.ActionEvent evt) {                                         
     
     
       jLabel13.setVisible(true);
       jLabel11.setVisible(true);
        }                                        
     
        private void jButton5ActionPerformed(java.awt.event.ActionEvent evt) {                                         
     
       jLabel14.setVisible(true);
       jLabel3.setVisible(true);
        }                                        
     
        private void jButton6ActionPerformed(java.awt.event.ActionEvent evt) {                                         
        jLabel15.setVisible(true);
       jLabel4.setVisible(true);
        }                                        
     
        private void jButton7ActionPerformed(java.awt.event.ActionEvent evt) {                                         
        jLabel16.setVisible(true);
       jLabel5.setVisible(true);
        }                                        
     
        private void jButton8ActionPerformed(java.awt.event.ActionEvent evt) {                                         
        jLabel17.setVisible(true);
       jLabel6.setVisible(true);
        }                                        
     
        private void jButton9ActionPerformed(java.awt.event.ActionEvent evt) {                                         
        jLabel18.setVisible(true);
       jLabel2.setVisible(true);
        }                                        
     
        private void jButton10ActionPerformed(java.awt.event.ActionEvent evt) {                                          
        jLabel19.setVisible(true);
       jLabel8.setVisible(true);
        }                                         
     
        private void jButton11ActionPerformed(java.awt.event.ActionEvent evt) {                                          
        jLabel20.setVisible(true);
       jLabel9.setVisible(true);
        }                                         
     
        private void jButton12ActionPerformed(java.awt.event.ActionEvent evt) {                                          
        jLabel21.setVisible(true);
       jLabel10.setVisible(true);
        }                                         
     
        private void jButton1ActionPerformed(java.awt.event.ActionEvent evt) {                                         
        jButton3.setEnabled(true);
        jButton4.setEnabled(true);
        jButton5.setEnabled(true);
        jButton6.setEnabled(true);
        jButton7.setEnabled(true);
        jButton8.setEnabled(true);
        jButton9.setEnabled(true);
        jButton10.setEnabled(true);
        jButton11.setEnabled(true);
        jButton12.setEnabled(true);
     
        }                                        
     
        /**
         * @param args the command line arguments
         */
        public static void main(String args[]) {
            /* Set the Nimbus look and feel */
            //<editor-fold defaultstate="collapsed" desc=" Look and feel setting code (optional) ">
            /* If Nimbus (introduced in Java SE 6) is not available, stay with the default look and feel.
             * For details see http://download.oracle.com/javase/tutorial/uiswing/lookandfeel/plaf.html 
             */
            try {
                for (javax.swing.UIManager.LookAndFeelInfo info : javax.swing.UIManager.getInstalledLookAndFeels()) {
                    if ("Nimbus".equals(info.getName())) {
                        javax.swing.UIManager.setLookAndFeel(info.getClassName());
                        break;
                    }
                }
            } catch (ClassNotFoundException ex) {
                java.util.logging.Logger.getLogger(Jeu.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
            } catch (InstantiationException ex) {
                java.util.logging.Logger.getLogger(Jeu.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
            } catch (IllegalAccessException ex) {
                java.util.logging.Logger.getLogger(Jeu.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
            } catch (javax.swing.UnsupportedLookAndFeelException ex) {
                java.util.logging.Logger.getLogger(Jeu.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
            }
            //</editor-fold>
     
            /* Create and display the form */
            java.awt.EventQueue.invokeLater(new Runnable() {
                public void run() {
                    new Jeu().setVisible(true);
                }
            });
        }
     
        // Variables declaration - do not modify                     
        private javax.swing.JButton jButton1;
        private javax.swing.JButton jButton10;
        private javax.swing.JButton jButton11;
        private javax.swing.JButton jButton12;
        private javax.swing.JButton jButton2;
        private javax.swing.JButton jButton3;
        private javax.swing.JButton jButton4;
        private javax.swing.JButton jButton5;
        private javax.swing.JButton jButton6;
        private javax.swing.JButton jButton7;
        private javax.swing.JButton jButton8;
        private javax.swing.JButton jButton9;
        private javax.swing.JLabel jLabel1;
        private javax.swing.JLabel jLabel10;
        private javax.swing.JLabel jLabel11;
        private javax.swing.JLabel jLabel12;
        private javax.swing.JLabel jLabel13;
        private javax.swing.JLabel jLabel14;
        private javax.swing.JLabel jLabel15;
        private javax.swing.JLabel jLabel16;
        private javax.swing.JLabel jLabel17;
        private javax.swing.JLabel jLabel18;
        private javax.swing.JLabel jLabel19;
        private javax.swing.JLabel jLabel2;
        private javax.swing.JLabel jLabel20;
        private javax.swing.JLabel jLabel21;
        private javax.swing.JLabel jLabel3;
        private javax.swing.JLabel jLabel4;
        private javax.swing.JLabel jLabel5;
        private javax.swing.JLabel jLabel6;
        private javax.swing.JLabel jLabel7;
        private javax.swing.JLabel jLabel8;
        private javax.swing.JLabel jLabel9;
        // End of variables declaration                   
    }

  2. #2
    Membre éprouvé Avatar de Drowan
    Homme Profil pro
    Ingénieur développement logiciels
    Inscrit en
    Juin 2014
    Messages
    460
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 29
    Localisation : France, Isère (Rhône Alpes)

    Informations professionnelles :
    Activité : Ingénieur développement logiciels
    Secteur : High Tech - Électronique et micro-électronique

    Informations forums :
    Inscription : Juin 2014
    Messages : 460
    Points : 1 014
    Points
    1 014
    Par défaut

    Tu peux utiliser un variable qui compte le nombre de cartes retournées. Dès que cette variable dépasse 2, alors tu remet les cartes face cachés.

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    int nbCartesRetournées = 0; //variables qui va compter les cartes retournées
     
        ( ... )
     
        private void jButtonActionPerformed(java.awt.event.ActionEvent evt) {
            jLabel13.setVisible(true);
            jLabel11.setVisible(true);
            nbCartesRetournées++; //incrémente le compteur car une nouvelle carte est retournée
            if(nbCartesRetournées <= 2) { //vérifie si 2 cartes ou plus sont retournées
                  resetCartes(); //appelle d'une méthode qui va remettre toutes les cartes face caché
            }
        }
    "On sera toujours mieux installé assis en 1ère que debout en 2nde", un illustre inconnu


    Avant de poser une question vérifiez si elle n'a pas déjà une réponse dans les cours et tutoriels
    Si votre problème est pensez à marquer la conversation comme telle
    Si un message est utile, pertinent, et/ou vous êtes d'accord avec, pensez à à l'inverse s'il est inutile, faux ou que vous n'êtes pas d'accord, pensez à

Discussions similaires

  1. Comment faire en sorte que \b efface aussi \n
    Par kidpaddle2 dans le forum C
    Réponses: 1
    Dernier message: 20/07/2010, 17h39
  2. [Snow Leopard] Comment faire ne sorte que mes utilisateur n'aie pas le droit administrateur
    Par pierrot10 dans le forum Apple
    Réponses: 1
    Dernier message: 18/10/2009, 22h15
  3. Réponses: 2
    Dernier message: 07/02/2009, 08h43
  4. Réponses: 1
    Dernier message: 10/10/2008, 16h23
  5. Comment faire en sorte que le prog se fasse répéter
    Par LeonHONORE dans le forum Pascal
    Réponses: 3
    Dernier message: 20/04/2008, 21h41

Partager

Partager
  • Envoyer la discussion sur Viadeo
  • Envoyer la discussion sur Twitter
  • Envoyer la discussion sur Google
  • Envoyer la discussion sur Facebook
  • Envoyer la discussion sur Digg
  • Envoyer la discussion sur Delicious
  • Envoyer la discussion sur MySpace
  • Envoyer la discussion sur Yahoo