views:

63

answers:

1

Hello, I need to create something like internal frame in netbeans platform, which loads file from any location. I tried it by jInternalFrame, but I was not able to find some container to which I can add my frame. I am working in netbeans platform, which has own pre-created main window.

Pease help me by any advice, I am dealing with this about 10 hours, still without result.

+1  A: 

Use WindowManager.getDefault().getMainWindow() as parent for JFileChooser dialog.

Ha