I have a Java application that launches multiple windows (JFrames). It works fine when I'm running it from the command line. But after packaging the app in a JAR and running it from the JAR, not all of the windows open.
Does anyone know why this could be happening? Is there something about JAR files that prevent opening multiple windows? Google hasn't been helpful with this one ;)
If there is a simple solution, I'd love to hear about it. In the mean time, I'm considering using the Multiple Document Interface so that I can add and remove windows to the MDI while only having a single top level container.