Senin, 21 Mei 2012

textArea

Input:


import javax.swing.*;
public class textArea{
public static void main (String[]args){
JFrame f=new JFrame();
JTextArea area=new JTextArea();
f.setSize(250,200);
area.setBounds(50,50,150,100);
f.add(area);
f.setLayout(null);
f.setVisible(true);
}
}

Output:























Tidak ada komentar:

Posting Komentar