All Frames in One

On Windows, each new JFrame created also creates a new taskbar at the bottom of the screen. And for the task bar not to show using a JFrame, editing has to be done to the native code, correct?

Well is there a way to have the task bar appear as one and not spread out across the bottom of the screen?

[312 byte] By [blackmagea] at [2007-11-27 11:52:24]
# 1

Use JDialogs or JWindows. These do not have taskbar buttons associated with them. Also, you can use JDesktopPane with multiple JInternalFrames.

kirillga at 2007-7-29 18:44:18 > top of Java-index,Desktop,Core GUI APIs...
# 2

I know I can use all three, but they don't have the minimizing affect I am looking for. If Dialogs can be minimized then ok.

blackmagea at 2007-7-29 18:44:18 > top of Java-index,Desktop,Core GUI APIs...
# 3

> I know I can use all three, but they don't have the

> minimizing affect I am looking for. If Dialogs can be

> minimized then ok.

Except that makes no sense. "I want a frame with no taskbar button, but I want it to be minimizeable." How is the user going to restore the frame when it's minimized to nothing?

bsampieria at 2007-7-29 18:44:18 > top of Java-index,Desktop,Core GUI APIs...
# 4

Maybe the OP is looking to run an app out of the system tray?

http://java.sun.com/developer/technicalArticles/J2SE/Desktop/javase6/systemtray/

tsitha at 2007-7-29 18:44:18 > top of Java-index,Desktop,Core GUI APIs...
# 5

Is this app for an iPhone?

bsampieria at 2007-7-29 18:44:18 > top of Java-index,Desktop,Core GUI APIs...