Reputation: 8342
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: 5617
Reputation: 21961
JDK 1.7 brings you method setType. Use following method.
JFrame.setType(javax.swing.JFrame.Type.UTILITY)
Upvotes: 16