My code below runs fine but when the applet is up there is no image
I put the image in my classes folder is it supossed to be somewhere else
import java.awt.*; import javax.swing.*; import java.awt.event.*; import java.applet.*; public class HorseRace extends Applet { public void init() { JPanel contentPane = new JPanel(new GridLayout(5, 3)); JLabel backround = new JLabel("Back", new ImageIcon("Horse.bmp"), JLabel.CENTER); contentPane.add(backround); } public void paint(Graphics g) { this.resize(1000, 650); } }