Advertisement
Guest User

Untitled

a guest
Feb 19th, 2018
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. import javax.swing.JOptionPane;
  2. import javax.swing.JDialog;
  3. final JOptionPane pane = new JOptionPane("Hello");
  4. final JDialog d = pane.createDialog((JFrame)null, "Title");
  5. d.setLocation(10,10);
  6. d.setVisible(true);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement