JList insertion en temps réelle ... - Java - Programmation
Marsh Posté le 21-03-2005 à 20:13:11
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 !!
Make sure you enter the(*)required information where indicate.HTML code is not allowed
Marsh Posté le 21-03-2005 à 20:13:11
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 !!