Subscribe For Free Updates!

We'll not spam mate! We promise.

Thursday 30 August 2012

Java applet code to Create a label named eMailLable with the caption E-mail address


//The Java Abstract Windowing Toolkit
import java.awt.*;

public class EmailLabel extends java.applet.Applet {
//Create a label named eMailLable with the caption E-mail address:
    Label eMailLabel = new Label("E-mail address: ");

    public void init() {
//Add the label to the screen
        add(eMailLabel);
    }
}

Socializer Widget By CodingLovers
SOCIALIZE IT →
FOLLOW US →
SHARE IT →

0 comments:

Post a Comment