I really appreciate all the help i've been getting on my project lately from you guys, and hopefully this will be the last problem.
I've written an applet, and it uses ActionListener to detect when the button is pressed. The program is supposed to go through my methods when the button is pressed. However when i launch the applet and put values in the boxes, nothing happens when i click. Using an embedded class is too hard for me (i've been doing java for 5 weeks, and the only prior experience i had was html). Also i can't seem to make two seperate files, because only one can implement ActionListener.
here's what i have so far.
making the button -
enter = new JButton("Click here to calculate numeric palindrome.");
enter.addActionListener(this);
running my methods when i click the button -
public void actionPerformed(ActionEvent e)
{
Numtemp = displayN.getText();
Base = displayB.getText();
convert();
FindPalindrome();
reconvert();
print();
}