°æ±¸´Ô! Á¦¼Ò½º¸¦ Çѹø.....


[ ´ÙÀ½ ±Ûµé ] [ À̾ ±Û¿Ã¸®±â(´äÇϱâ) ] [ ÀÚ¹Ù ¹¯°í ´äÇϱâ ]

±Û¾´ÀÌ :Á¤¹«»ó 1998³â 1¿ù 17ÀÏ 11:04:00

In Reply to: ¾×¼Ç... posted by À±°æ±¸ on 1998³â 1¿ù 17ÀÏ 10:01:18:

Á¦°¡ Å×½ºÆ® Çß´ø ¼Ò½ºÀä ..
Çѹø ºÁ Áֽʽÿä..

import java.applet.*;
import java.awt.*;
import java.awt.event.*;
public class sam1 extends Applet implements ActionListener {
   TextField text1,text2;
   Button button1;
   public void start() {
      System.out.println("start()");
      setLayout(null);
      text1=new TextField();
      text1.setBounds(12,12,100,20);
      add(text1);
      text2=new TextField();
      text2.setBounds(122,12,100,20);
      add(text2);
      button1=new Button("Click");
      button1.setBounds(12,42,100,20);
      add(button1);
      button1.addActionListener(this);
  }
  public void actionPerformed(ActionEvent event) {
     if(event.getSource()==button1) {
       text2.setText(text1.getText());
    }
  }
}



´ÙÀ½ ±Ûµé:



À̾ ±Û¿Ã¸®±â(´äÇϱâ)

À̸§:
E-Mail:
Á¦¸ñ:
³»¿ë:
°ü·Ã URL(¼±ÅÃ):
URL Á¦¸ñ(¼±ÅÃ):
°ü·Ã À̹ÌÁö URL:


[ ´ÙÀ½ ±Ûµé ] [ À̾ ±Û¿Ã¸®±â(´äÇϱâ) ] [ ÀÚ¹Ù ¹¯°í ´äÇϱâ ]