posted 18 years ago
Hi Saeed,
If you mean just a splash screen, sure thing. You may first want to just look at javax.swing.JOptionPane which has numerous static methods to pop up a window. Here is an example of its use:
The problem with that approach is that it requires the user to press an OK button to proceed. If you want to get fancy and have the splash screen timeout and disappear on its own then you will probably want to extend a javax.swing.JFrame, build the splash screen on it, set a javax.swing.Timer either internally or externally and when the timer fires, call setVisible(false) on the JFrame.
Any intelligent fool can make things bigger, more complex, and more violent. It takes a touch of genius - and a lot of courage - to move in the opposite direction. - Ernst F. Schumacher