I want to make a message to JOptionPane.showMessageDialog
- Any place on the screen.
- Regarding JFrame. (not in the center of the JFrame)
For example, this will display a message in the center of the JFrame provided as the argument to thisFrame
JOptionPane.showMessageDialog(thisFrame, "Your message.");
And this will display a message in the center of the screen that is not related to any JFrame.
JOptionPane.showMessageDialog(null, "Your message.");
How?
source share