Thread: applet
View Single Post
  #1 (permalink)  
Old 05-15-2008, 03:30 PM
amith amith is offline
Member
 
Join Date: May 2008
Posts: 22
amith is on a distinguished road
applet
import java.awt.*;
import java.applet.*;
public class a extends Applet
{
Image q;
public void init()
{

q=getImage(getCodeBase(),"red.png");
}
public void paint(Graphics e)
{
e.drawImage(q,200,290,this);
}
}
i hav written this program but it is not showing any red image it is not showing any thing in applet how can i load the icon.png from a folder do i hav to set the class path if so how
Reply With Quote
Sponsored Links