I am developing a Swing application and everything is working fine. But I have a problem with the GUI.
When I launch the application and, for example, minimize another window, my application still works, but the central part is JFrameinvisible or hidden. After completing any part of the program logic, the GUI is repainted and displayed again. This will continue until the program ends.
Is there any API to prevent this behavior, or some class to force the GUI to be displayed, or perhaps to add some kind of progress bar?
If anyone needs this information, I am testing this on Windows Vista with java 1.6.
vaske source
share