Top "Joptionpane" questions

JOptionPane is a Java class that makes it easy to pop up a standard dialog box that prompts users for a value or informs them of something.

ActionListener on JOptionPane

I am following the Oracle tutorial on how to create a custom dialog box: http://docs.oracle.com/javase/tutorial/…

java swing jdialog joptionpane
How do you change the size and font of a joptionpane?

Can you change the font and size of the text of a JOptionPane? I tried it and it works only …

java swing netbeans fonts joptionpane
User input validation for JOptionPane.showInputDialog

I'm just learning JAVA and having a bit of trouble with this particular part of my code. I searched several …

java validation joptionpane
Resize dialog message (JOptionPane) for long sentence with fixed width

I'm trying to resize the height of the dialog box (JOptionPane) for long sentence with hyperlink. My code is .. public …

java swing resize joptionpane jtextpane
JOptionPane cancel button

Guys Im trying to use the JOptionPane but the cancel button is responding as if I entered a wrong input …

java swing joptionpane cancel-button
Setting component focus in JOptionPane.showOptionDialog()

In order to have custom button captions in an input dialog, I created the following code: String key = null; JTextField …

java swing focus joptionpane
Can I use a Java JOptionPane in a non-modal way?

I am working on an application which pops up a JOptionPane when a certain action happens. I was just wondering …

java joptionpane
JOptionPane.createDialog and OK_CANCEL_OPTION

I have a custom dialog box that collects two strings from the user. I use OK_CANCEL_OPTION for the …

java swing jdialog joptionpane
Text wrap in JOptionPane?

I'm using following code to display error message in my swing application try { ... } catch (Exception exp) { JOptionPane.showMessageDialog(this, exp.…

java html swing exception joptionpane
How can I add a listener on the ok button of JOptionPane?

How can I add a listener on the click of "OK" button of JOptionPane.INFORMATION_MESSAGE. My JOptionPane is: JOptionPane.…

java swing mouseevent joptionpane