Morgen, wie kann ich denn eine combobox befüllen? die methode setText gibtes js nicht. mfg
G Guest Gast 12. Okt 2004 #1 Morgen, wie kann ich denn eine combobox befüllen? die methode setText gibtes js nicht. mfg
S Sky Top Contributor 12. Okt 2004 #3 Code:In die Zwischenablage kopieren // AWT Choice x = new Choice(); x.add("Eintrag 1"); x.add("Eintrag 2"); x.add("Eintrag 3"); x.add("Eintrag 4"); // SWING JComboBox y = new JComboBox(); y.addItem("Eintrag 1"); y.addItem("Eintrag 2"); y.addItem("Eintrag 3"); y.addItem("Eintrag 4");
Code:In die Zwischenablage kopieren // AWT Choice x = new Choice(); x.add("Eintrag 1"); x.add("Eintrag 2"); x.add("Eintrag 3"); x.add("Eintrag 4"); // SWING JComboBox y = new JComboBox(); y.addItem("Eintrag 1"); y.addItem("Eintrag 2"); y.addItem("Eintrag 3"); y.addItem("Eintrag 4");
D dotlens Top Contributor 12. Okt 2004 #4 schon mal was von api gehört? http://java.sun.com/docs/books/tutorial/uiswing/components/combobox.html
schon mal was von api gehört? http://java.sun.com/docs/books/tutorial/uiswing/components/combobox.html
M Matflasch Aktives Mitglied 12. Okt 2004 #5 3 Minuten um sich die Frage selbst zu beantworten.... lol