...
> The applet code looks like this:
>
[quoted text clipped - 13 lines]
> Thanks
> si
I changed the name, because I didn't want a class called just "dummy"
floating around in my test directory, and added an import for
java.awt.HeadlessException to get it to compile. The result ran:
import javax.swing.JApplet;
import java.awt.HeadlessException;
public class DummyApplet extends JApplet {
/** Constructor */
public DummyApplet() throws HeadlessException {
super();
// TODO Auto-generated constructor stub
}
}
Does this run on your system?
Patricia
si - 22 Mar 2006 18:58 GMT
> I changed the name, because I didn't want a class called just "dummy"
> floating around in my test directory, and added an import for
[quoted text clipped - 16 lines]
>
> Patricia
Sorry, I forgot about the line with HeadlessException import.
I have it in my code but it crashes anyway.
I have two computers, both XP Pro SP2. The applet runs ok on one of them
(that is on the computer it was created) and crushes on the other one.
Maybe this is a metter of some project settings, I don't know.
si
> Hello
>
[quoted text clipped - 30 lines]
>
> Is this a bug or I'm doing something wrong?
It's a bug. See
http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=5062191
- Oliver
si - 23 Mar 2006 08:34 GMT
> It's a bug. See
> http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=5062191
>
> - Oliver
Thank you!
si