alors voilà ce code marche :
model1 = new DefaultListModel();
String plop = new String("plop" );
model1.addElement(plop);
listResult = new JList(model1);
reception.add(listResult);
JScrollPane scroll = new JScrollPane(listResult); scroll.setHorizontalScrollBarPolicy(JScrollPane.HORIZONTAL_SCROLLBAR_AS_NEEDED);
scroll.setBounds(10, 10, 500, 600);
reception.add(scroll);
mais j'aimerai par exemple que l'orsque je clique sur un bouton ça insert une ligne dans la JList ...
if (e.getSource()==MAJBddLocal)
{
String plop = new String("plop" );
model1.addElement(plop);
}
mais ça ne marche pas ( le bouton se déclenche mais rien n'est inséré ....
please help me !!