Salut, Svp j'ai une probleme.
Je vais changer l'icone de la point d'interrogation verte qui apparait dans la boite de dialogue par une autre image
L'orsque j'ecrit ce code:
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
 
int Reponse=JOptionPane.showConfirmDialog(this,"Vouler vous vraiment quitter ?","Etiquettes Java",JOptionPane.YES_NO_OPTION,new ImageIcon( getClass().getResource("/img/Qui.png")));
 
if(Reponse==JOptionPane.YES_OPTION)
            {
                dispose();
            }


Il m'affiche"cannot find symbol method showConfirmDialog(Authentification,java.lang.String,java.lang.String,int,javax.swing.ImageIcon)"

et si j'enleve le text ecrit en vert sa fonctionne mais avec l'icone par defaut

Svp est ce que vous avez des solutions et merci.