27/10/2004, 16:07
|
| | Fecha de Ingreso: marzo-2003
Mensajes: 524
Antigüedad: 21 años, 8 meses Puntos: 2 | |
una preguntita cual es la diferencia en declarar asi
JButton boton1,boton2;
..
..
..
boton1= new JButton("Boton1");
boton1.addActionListener(this);
panel.add(boton1);
y declararlas como tu hugo777
jButton2 = new javax.swing.JButton();
..
..
..
jButton2.setText("Grabar");
getContentPane().add(jButton2);
jButton2.setBounds(160, 130, 73, 26); |