And now I'm off to sleep.[/QUOTE]
Haha. Thanks so much. That made me jump...
Goodnight Lestat.
Code: Select all
<HTML>
<APPLET code="Class name" WIDTH = 300 HEIGHT = 200 ></APPLET>
</HTML>
Code: Select all
/*
* NewApplet.java
*
* Created on 5 May 2006, 09:27
*
* To change this template, choose Tools | Options and locate the template under
* the Source Creation and Management node. Right-click the template and choose
* Open. You can then make changes to the template in the Source Editor.
*/
package Templates.Classes;
/**
*
* @author 4302
*/
public class Applet extends java.applet.Applet {
/** Initialization method that will be called after the applet is loaded
* into the browser.
*/
public void init() {
// TODO start asynchronous download of heavy resources
}
// TODO overwrite start(), stop() and destroy() methods
}