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

Popular posts from this blog

android - getbluetoothservice() called with no bluetoothmanagercallback -

sql - ASP.NET SqlDataSource, like on SelectCommand -

ios - Undefined symbols for architecture armv7: "_OBJC_CLASS_$_SSZipArchive" -