I have created an application in java which have several forms.
During application start getting open new form on button click event,On windows’s taskbar the number of icons of that form getting increases.
what I want is only applicatoin icon should be displayed on task bar whether one form is open or more than one.
I have created an application in java which have several forms. During application start
Share
The problem happens because each
JFramegets a task-bar icon. See The Use of Multiple JFrames, Good/Bad Practice? for links to a multitude of solutions.