Posted By:
Lars_Eing
Posted On:
Tuesday, August 17, 2004 07:56 AM
I want to add internal frames to my JDesktop object and
set them initially iconified:
oCurrentFrame = new JInternalFrame("Hi!", , true, false, true, true);
oDesktop.add(oCurrentFrame);
oCurrentFrame.setBounds(10,10,200,100);
oDesktop.iconifyFrame(oCurrentFrame);
oCurrentFrame.show();
But when the program starts no frame is visible :(
If i do not iconify them they become visible...