Missing some JButton action events
I have a GUI with multiple windows and a number of buttons and a JTable and various other things (a nontrivial application). Some button presses (perhaps 10% of the time) appear to be recognized by the OS (Windows XP) because the button color changes briefly, yet no ActionEvent is delivered to my actionPerformed() handler. Things work properly the other 90% of the time.
This has occurred with Java 1.4 and 1.5.
Any ideas why some of the events are getting lost?

