Want to become a Vibe Coder? Join Vibe Coding Training here
x
C# Corner
Tech
News
Videos
Forums
Jobs
Books
Events
More
Interviews
Live
Learn
Training
Career
Members
Blogs
Challenges
Certification
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
668
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