Reputation: 8340
I did a quick topic look, but did not find something similar.
My query is: how can I prevent a child window appearing on the Windows taskbar when it is shown?
Upvotes: 3
Views: 5619
Reputation: 21981
JDK 1.7 brings you method setType. Use following method.
JFrame.setType(javax.swing.JFrame.Type.UTILITY)
Upvotes: 16