Results 1 to 2 of 2
Thread: Hide Application
- 09-27-2010, 06:46 AM #1
Senior Member
- Join Date
- Jul 2010
- Posts
- 101
- Rep Power
- 0
Hide Application
Hi All
I want to hide Running application.
Java Code:public final class Test extends UiApplication { public static final void main(String[] args) { // Create a new instance of the application and make the currently // running thread the application's event dispatch thread. new Test().enterEventDispatcher(); } public Test() { TestScreen screen = new TestScreen(); screen.setTitle("Show Screen"); _output = new RichTextField("1St Step"); pushScreen(screen); } private class TestScreen extends MainScreen { private TestScreen () { addMenuItem(TestMenu); } } public void close() { // Here I want to Hide Application(Application Will Run in BackGround) } }
Please help me
- 09-27-2010, 10:29 AM #2
Similar Threads
-
How to hide a control in SWT?
By lottalava in forum SWT / JFaceReplies: 11Last Post: 10-18-2010, 09:52 AM -
How to hide/disable Java application showing on taskbar?
By chyrl in forum Advanced JavaReplies: 7Last Post: 08-19-2010, 01:56 PM -
How can i hide the menu bar ?
By Microman in forum CLDC and MIDPReplies: 0Last Post: 01-18-2010, 12:43 AM -
How to hide a window of application
By Jktu in forum AWT / SwingReplies: 4Last Post: 10-29-2008, 06:53 AM -
java : how to hide application icon from a task bar
By yogeshagashe in forum Advanced JavaReplies: 0Last Post: 03-12-2008, 01:05 PM
Bookmarks