I'm creating this JOptionPane
JOptionPane.showMessageDialog(this, "File was saved", "Save",
JOptionPane.INFORMATION_MESSAGE);
but my JFrame is big so it is scrollable. When I call this command, a window is created in the bottom right corner and I can only see the header. How I can change the position of this JOptionPane?
thisfor whateverJComponent, for example declared as local variable, then you can passJOptionPane.showMessageDialog(myButton, "File..., JOptionPane must be called on the EDT – mKorbel Nov 15 '11 at 22:30