Featured Post

Step Wise Project Planning

Planning is the most difficult process in project management. The framework described is called the Stepwise method to help to distinguis...

Using java create Applets

Using java create Applets

 package javaapplication20;
import java.applet.*;
import java.awt.*;
import java.io.*;

/**
 *
 * @author Student
 */
public class JavaApplication20  extends Applet
{
public void paint(Graphics g)
{
    g.drawRect(200, 100, 400, 200);
    g.fillRect(200, 100, 400, 200);
    Font f=new Font("arial",Font.BOLD|Font.ITALIC,18);
    g.setFont(f);
    g.setColor(Color.white);
    g.drawString("WELCOME TO THE WORLD OF JAVA!!!", 250, 200);
}

Output


Previous
Next Post »