22/07/2008, 18:44
|
| | Fecha de Ingreso: abril-2006 Ubicación: Recife - Brasil
Mensajes: 23
Antigüedad: 18 años, 8 meses Puntos: 0 | |
Respuesta: Colocar Imagen La vai uma dica
/**
*
* @author Lindberg
*/
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
import javax.swing.Box;
public class ca001 extends javax.swing.JFrame {
/** Creates new form ca001 */
public ca001() {
initComponents();
}
............
............
Box linha1 = Box.createHorizontalBox();
Icon icoFigura = new ImageIcon("imagens/logo4.jpg");
JLabel figura = new JLabel( icoFigura );
linha1.add(figura);
jPanel2.add(linha1);
linha1.setBounds(0, 0, 490, 370);
.......
.......
Espero ter ajudado |