Hello all, I'm trying to add a multiple JTextFields onto a single JPanel that has been already initialized thanks to the Design tool from the JFrame. I'm pretty sure that I already added them and I'm not getting any errors but they aren't showing up when I execute the program. my code is:
initComponents();
for (int i = 0; i < MemoryCell.length; i ++){
MemoryCell[i] = new javax.swing.JTextField();
MemoryCellLocation.add(MemoryCell[i]);
}
//MemoryCellLocation is the JPanel and MemoryCell is the JTextFields