you create your objects here:
And later you create them again:Code:public class EncMain extends JFrame { private JLabel imageIcon; private JComboBox box1; private JButton button1; private JLabel label1; private JLabel label2; private JTextField field1;
you should change that last in:Code:JLabel label1 = new JLabel(); JLabel label2 = new JLabel(); JButton button1 = new JButton(); JTextField text1 = new JTextField(); JComboBox box1 = new JComboBox();
Code:this.label1 = new JLabel(); this.label2 = new JLabel(); this.button1 = new JButton(); this.field1 = new JTextField(); this.box1 = new JComboBox();




Reply With Quote