Help: InternalFrame desapearing

hi, i have a problem.on both arial l&f and windows l&f:I have a Jframe which opens InternalFrames.when i minimize the InternalFrames they desapear totally.anyone knows a solution to this problem?
[238 byte] By [Bizoa] at [2007-11-27 9:29:36]
# 1
can you post a snippet of your code.
Yannixa at 2007-7-12 22:38:32 > top of Java-index,Java Essentials,Java Programming...
# 2

here is the listener of the menuItem which opens the InternalFrame:

mishtamshimMenuItem.addActionListener(newActionListener()

{

public void actionPerformed(ActionEvent e)

{

Frame.setCursor(Cursor.getPredifinedCursor(Cursor.WAIT_CURSOR));

// Creating the class the extends InternalFrame

uiMishtamshimDsk uiMishtamshim = new uiMishtamshimDsk("UsersWindow");

uiMishtamshim.pack();

uiMishtamshim.setVisibe(true);

menuBar.addRootFrame(uiMishtamshim);

Frame.setCursor(Cursor.getPredifinedCursor(Cursor.DEFAULT_CURSOR));

}

});

gives you any clue?

Bizoa at 2007-7-12 22:38:32 > top of Java-index,Java Essentials,Java Programming...