1. How to stop threads of a Java program? stackoverflow.comI have made a java program with GUI and have placed a "stop" button on it. When I start the program, the main thread starts 10 threads. Now I want that ... |
2. How can I stop my application? stackoverflow.comI have the main thread from which I start a window using |
3. Stopping a thread that could be looping forever stackoverflow.comI have a program where I compile java code a user types into a text field, and then run it. A run the code in a seperate thread, so that the ... |
4. problem stopping GUI thread in run(). coderanch.comHello, I hope this is not one of those " Oh My God, EVERYBODY knows that!" kind of questions. But implementing threads is new for me. I have a GUI application that is allowed to spawn new copies of itself, which then in turn can spawn more new copies, etc.. No problem there, that functionality works. My problem comes when trying ... |
5. Thread behave differently and stop on some machines?? coderanch.comHi I am developing a Java Swing application, which launches an external exe. Then I am using a Thread to monitor whether the launched exe is running or terminated abruptly by using its PID. If it terminates then the thread shows a msg box. Everything works fine in my machine and in few other machines. But the same thread stop abruptly ... |
6. Stopping AWT threads coderanch.comHere I am again :s This time I'm having problems stopping Swing stuff What I'm doing now is displaying a splash screen in swing when my app start (it has loading bars and stuff so don't suggest using anything other than swing). Then when my application is loaded and updated I need to close the swing stuff and then I start ... |