Posted By:
Greg_Murray
Posted On:
Monday, April 2, 2001 11:22 PM
I have over come this problem by adding the following InternalFrameAdapter.
internalFrame.addInternalFrameListener(new InternalFrameAdapter(){
public void internalFrameActivated(InternalFrameEvent e){
// this is a must to restore the focus on the frame
e.getInternalFrame().restoreSubcomponentFocus();
}
});
Enjoy,
greg