Reputation: 2851
I have to create this pop up with java swing :
and I have a few problems :
Could anyone help me ?
Thank you very much
Upvotes: 2
Views: 1290
Reputation: 94653
You may use JDialog
and setUndecorated(true)
. For more info read Java Tutorial.
JDialog dialog=new JDialog(frmInstance);
dialog.setUndecorated(true);
dialog.setVisible(true);
dialog.setSize(200,100);
Upvotes: 6