Java applet 'notinited'

I am receiving an error when my applet is loading

Java applet notinited

Using comments i have traced the error to:

Graphics tempGraph;

Image[] grid =new grid[someNumber];

for(int d = 0; d<someNumber; d++)

{

grid[d] = createImage(200,100);

//the following line is where the problem is...

tempGraph = grid[d].getGraphics();

}

Any ideas?>

[597 byte] By [jazza_guya] at [2007-11-26 17:37:43]
# 1
This is just a guess, because I can't see all your code...But did you override the method init() in your applet?
maple_shafta at 2007-7-9 0:05:53 > top of Java-index,Java Essentials,Java Programming...