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 - RadioButton Demo
WhatsApp
Senthilvelan Sambamoorthy
Aug 20
2016
1.3
k
0
0
rad1.rar
import
java.awt.*;
import
java.applet.*;
import
java.awt.event.*;
public
class
rad1
extends
Applet
{
CheckboxGroup cg;
Checkbox r1,r2;
public
void
init()
{
cg=
new
CheckboxGroup();
r1=
new
Checkbox(
"Male"
,cg,
false
);
r2=
new
Checkbox(
"Female"
,cg,
false
);
add(r1);
add(r2);
}
}
/* <body>
<applet code = "rad1.class" height = 250 width = 250>
</applet>
</body> */
Java Applet - RadioButton Demo
Up Next
Java Applet - RadioButton Demo