Q:

Java Applet - TextArea Demo

0

This Program is used to Demonstrate the Applet TextArea Component Program.

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

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> */

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Similar questions


need a help?


find thousands of online teachers now