Hide toolbar and pagebar in a Java app ?
Hi,
Does anyone knows how to hide the toolbar and the pagebar when running a Java application ?
I tried this :
frame.setSize(768, 1024)
frame.setBounds(0, 0, 768, 1024)
But it doesn't works, the toolbar and the pagebar are still there.
I expected for frame.setAlwaysOnTop(true) but it is only available since Java 1.5.
Any ideas ?
Thanks
|