- jWindow opened for 2 seconds but image doesn't paint... any thoughts?
- image file is in the same folder as class file...
public class CreateSplashScreen extends JWindow {
JWindow jw = new JWindow();
Image scImage = Toolkit.getDefaultToolkit().getImage("testImage.png");
ImageIcon imageIcon = new ImageIcon(scImage);
public CreateSplashScreen() {
try {
jw.setSize(700, 500);
jw.setLocationRelativeTo(null);
jw.setVisible(true);
} catch (Exception e) {
}
}
public void paint(Graphics g) {
super.paint(g);
g.drawImage(scImage, 0, 0, jw);
}
public void CloseSplashScreen() {
jw.setVisible(false);
}
public static void main(String[] args) {
CreateSplashScreen sp = new CreateSplashScreen();
try {
Thread.sleep(2000);
} catch (InterruptedException ex) {
Logger.getLogger(CreateSplashScreen.class.getName()).log(Level.SEVERE, null, ex);
}
sp.CloseSplashScreen();
}
}
- jWindow opened for 2 seconds but image doesn't paint... any thoughts?
- image file is in the same folder as class file...
@Peter For error code, I deleted one line that I added in mamifest.mf file and build a program... This time, didn't give me an error, weird... I was following error code when I got it and it led me to something like "CLASSPATH" section of application generated code... sorry I can't remember exactly Really appreciate Peter for your help. Wish you luck...