Ver Mensaje Individual
  #2 (permalink)  
Antiguo 21/03/2007, 10:33
Avatar de chuidiang
chuidiang
Colaborador
 
Fecha de Ingreso: octubre-2004
Mensajes: 3.774
Antigüedad: 20 años, 3 meses
Puntos: 454
Re: Botones en un applet

Hola:

Si heredas de Applet, en el método init() haz esto

Código:
JButton boton = new JButton("boton");
add(boton);
boton.addActionListener (new ActionListener() {
public void actionPerformed()
{
// Aqui tu codigo cuando se pulse el boton.
}
});
Aquí tienes un código sencillo de un Applet con JButton y JTextField.

Se bueno.
__________________
Apuntes Java
Wiki de Programación