Okay, I have asked several people about this, but with no luck. I have a java applet called Samello (It's a game using Othello rules), and the webpage I use for it uses the following html code:

<html>
<head><title>Samello 1.0</head>
<body>
<center>
<applet code= "Samello.class" width=600 height=400></applet>
</center>
</body>
</html></title>

The applet uses two class files, Samello.class and Board.class (the second is a child of the canvas class used to paint just the board).

I have used cardlayout and subclassed off of JApplet rather than Applet.

The applet loads and works fine in Mozilla (basically a netscape like browser), but will not load in ie (not even a grey square with a red 'X', just nothing). Internet explorer reports being "done" and that's all. I have run many other applets in IE, both from the WEB and from my machine. All of the other applets have run fine with no problems on Mozilla and on Internet Explorer. (I do not have Netscape installed, but am sure it would run well on it)

I am using the same VM on my Interenet Explorer as I am on my Mozilla browser.

Any thoughts on how this is happening?
Thanks.

-Samantha