I'm trying to add an OfficeBean to a  JInternalFrame, but Oo start in a
without-frame window in a full-screen mode, not in the JInternalFrame.
Why this?

This is a snippet with Java source code:

oooPanel = new Panel();
docInternalFrame = new JInternalFrame(
                        "Documento Interno Office Bean",
                        false,
                        true,
                        false,
                        true);
docInternalFrame.setDefaultCloseOperation(HIDE_ON_CLOSE);
docInternalFrame.setFrameIcon(RESEARCH_ICON_MENU);
               
docInternalFrame.setPreferredSize(sizeInternalFrame);
docInternalFrame.setMinimumSize(sizeInternalFrame);
docInternalFrame.setMaximumSize(sizeInternalFrame);

docInternalFrame.setLocation(internalFrameStartX,internalFrameStartY);
                 
docInternalFrame.setContentPane(oooPanel);
jContentDesktopPane.add(docInternalFrame);


Thanks

Roberto

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to