MOSTRAR LOS CAMPOS DE UNA LISTA EN UN CUADRO DE DIALOGO

NUEVO EJEMPLO
import javax.swing.*;
import java.awt.event.*;
import java.applet.Applet;
import java.awt.*;
public class BUSCAR_TEXTO_LISTA extends Applet implements ActionListener
{
   public TextArea t1;
   public Button b1;
  
   public void init()
   {
    t1=new TextArea("YA ES LA HORA",30,20,TextArea.SCROLLBARS_BOTH);
    add(t1);
    b1=new Button("BUSCAR AHORA");
    add(b1);
    b1.addActionListener(this);
   }
  
   public void actionPerformed(ActionEvent e)
   {
    if(e.getSource()==b1)  
    {
        String s=t1.getText();
       String mostrar;
       JOptionPane.showMessageDialog(this,s);
    }
   }//metodo
}

0 comentarios:

Publicar un comentario