Wed Nov 30, 2011 9:02 am
import java.applet.*;
import java.net.*;
import java.awt.*;
public class imgLoader extends Applet{
Image img;
public void init()
{
try{
img=getImage(new URL(getCodeBase()+"100.jpg"));
}catch(Exception e){showStatus("FILE MISSING");}
}
public void paint(Graphics g)
{
g.drawImage(img,0,0,this);
}
}
Thu Jan 24, 2013 9:29 pm
Codemiles.com is a participant in the Amazon Services LLC Associates Program, an affiliate advertising program designed to provide a means for sites to earn advertising fees by advertising and linking to Amazon.com
Powered by phpBB © phpBB Group.