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 - TextArea Demo
WhatsApp
Senthilvelan Sambamoorthy
Aug 20
2016
830
0
0
ta.rar
import
java.awt.*;
import
java.applet.*;
import
java.awt.event.*;
public
class
ta
extends
Applet
{
TextArea tt;
public
void
init()
{
tt =
new
TextArea(
10
,
25
);
add(tt);
}
}
/* <body>
<applet code = "ta.class" height = 250 width = 250>
</applet>
</body> */
Java Applet
TextArea Demo
Up Next
Java Applet - TextArea Demo