Ver Mensaje Individual
  #1 (permalink)  
Antiguo 11/04/2007, 10:07
betomoralesrios
 
Fecha de Ingreso: febrero-2007
Mensajes: 7
Antigüedad: 17 años, 10 meses
Puntos: 0
ayuda con applet sencillo

hola soy nuevo en esto tengo este pequeño codigo, al compilarlo no me marca error pero al ejecutar el applet me salen errores q no entiendo porfa ayudenme, gracias de antemano.







import java.awt.*;

import java.awt.event.*;
import javax.swing.*;
public class Ejemplo extends JApplet
{


private JButton b;


private JTextField t;



int valor;
String salida="";
String v;
public void init()
{
JTextArea area = new JTextArea();

Container con = getContentPane();
con.add(area);




b = new JButton("Púlsame");
add (b);

t = new JTextField(20);
add(t);

b.addActionListener(new ActionListener()
{
public void actionPerformed(ActionEvent e)
{
int arreglo[]= new int[100];
int y[]= new int[15];

for(int a=0;a<100;a++){
valor =1+(int)(Math.random()*50);
arreglo[a]=valor;
salida+=arreglo[a]+" ";

}




t.setText ("Hola mundo");
}
});

area.setText(salida);
}

}