This week's book giveaway is in the Agile and other Processes forum. We're giving away four copies of The Mikado Method and have Ola Ellnestam and Daniel Brolund on-line! See this thread for details.
Buttons defined in the constructor of a frame which is the main screen of the program don't work. There are two other frames that are registered as ActionListerners with these buttons and are defined as two separate static inner classes within the public class of the file . The source code compiles and runs with the main screen being displayed. However when the buttons are clicked they do nothing. Please any suggestions.
Dave Vick
Ranch Hand
Joined: May 10, 2001
Posts: 3244
posted
0
Post some code so we can see what it is that you're talking about and maybe help to track down any errors.
Dave
Sartaj Syed
Greenhorn
Joined: Nov 11, 2001
Posts: 22
posted
0
Here's the code:
[ January 26, 2002: Message edited by: Jim Yingst ]
Graeme Brown
Ranch Hand
Joined: Oct 13, 2000
Posts: 193
posted
0
Without looking at your code in too much detail, it looks like you have your references to your frames mixed up. Try changing your actionPerformed methods. Instead of: new Feedback(); setVisible(true); try new Feedback().setVisible(true);
or put the call to setVisible into the constructors for the inner classes. [ January 26, 2002: Message edited by: Graeme Brown ]