C# Corner
Tech
News
Videos
Forums
Trainings
Books
Events
More
Interviews
Jobs
Live
Learn
Career
Members
Blogs
Challenges
Certifications
Bounties
Contribute
Article
Blog
Video
Ebook
Interview Question
Collapse
Feed
Dashboard
Wallet
Learn
Achievements
Network
Refer
Rewards
SharpGPT
Premium
Contribute
Article
Blog
Video
Ebook
Interview Question
Register
Login
Java Applet - Label Demo
WhatsApp
Senthilvelan Sambamoorthy
Aug 20
2016
701
0
0
la1.rar
import
java.awt.*;
import
java.applet.*;
import
java.awt.event.*;
public
class
la1
extends
Applet
{
Label l1,l2,l3;
public
void
init()
{
l1 =
new
Label(
"Name : "
);
l2 =
new
Label(
"Phone No.: "
);
l3 =
new
Label(
"Place : "
);
add(l1);
add(l2);
add(l3);
}
}
/* <body>
<applet code = "la1.class" height = 250 width = 250>
</applet>
</body> */
Java Applet
Label Demo
Up Next
Java Applet - Label Demo