Thread: applet error
View Single Post
  #3 (permalink)  
Old 07-04-2007, 08:04 AM
Heather Heather is offline
Senior Member
 
Join Date: Jun 2007
Posts: 164
Heather is on a distinguished road
I had this error when I forgot to import Applet object.

import java.applet.Applet;

All objects you use from the Java class libraries must be imported. The only exception to this rule is the java.lang class which is automatically imported.
Reply With Quote