|
Hi,
I am not using JCreator for a long time. But the error look familiar to me. I think JCreator tries to execute your class as a java application, not a java applet. For that purpose, it tries to find a main method but can not find it and gives this error.
Create a new Java Applet project and add this class to your new project or try changing runtime details (somehow select to run it as an applet instead of application if it is possible) from your project properties.
|