Mi problema es como agregar un frame a un panel de otro frame.
Cargo un frame externo y lo quiero añadir al jPanel1.
public class Interfaz extends javax.swing.JFrame {
public Interfaz() {
initComponents();
}
private void initComponents() {
jPanel1 = new javax.swing.JPanel();
getContentPane().setLayout(null);
setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);
jPanel1.setLayout(null);
jPanel1.add(jButton1);
getContentPane().add(jPanel1);
jPanel1.setBounds(0, 0, 390, 280);
pack();
}
public static void main(String args[]) {
java.awt.EventQueue.invokeLater(new Runnable() {
public void run() {
new Identificacion().setVisible(true);
}
});
}
private javax.swing.JPanel jPanel1;
}