best example for programmatically creating SplashScreen with text
I need to create a SplashScreen programmatically and add text to it (and change it). Most examples work with thecommand line parameters. Are there solutions working without? Guillaume Polet You can use an undecorated dialog with a background image and a progress bar while loading stuffs in a SwingWorker . When done, hide the dialog and start the UI as usual. Components added to the dialog/splashcreen must be non-opaque in order to "see" the background image. Here is a working example: import java.awt.BorderLayout; import java.awt.Color; import java.awt.Frame; import java.net