HTML Converter error...
Java applet works fine. Need to use it for web page, but when use html converter to place it on a web page, it does not run.
i get this error..
General Exception
java.lang.NoClassDefFoundError: Calculator$Button
button is a class inside Calculator class I made. it uses JFrame (javax.swing). below is how the code is;
public class ButtonHandler implements ActionListener
{public void actionPerforme(ActionEvent e)
{
}
}
is there some kind of function prototype you gota do? if so, how do i do it for the above ButtonHandler class?
thanks for the help.

