java - No text area in JOptionPane window -
is there anyway have joptionpane window without text area scroll bar,
jtextarea listbox = new jtextarea(alinefromfile); jscrollpane scroll = new jscrollpane(listbox); listbox.setlinewrap(true); listbox.setwrapstyleword(true); scroll.setpreferredsize(new dimension(200, 400)); joptionpane.showmessagedialog(null, scroll, "dictionary enteries", joptionpane.plain_message);
i don't want white background behind text want scroll bar. or anyway make text in text area uneditable.
"or anyway make text in text area uneditable."...
try:
listbox.seteditable(false);
also, might better off using jlabel rather jtextarea.
Comments
Post a Comment