Google News
logo
Java - Interview Questions
How to change a button from enable to disable after click?
When button is clicked an action event is fired which can be captured by implementing ActionListener interface and actionPerformed(ActionEvent ae) method. You can then call button.setEnable(false) to disable this button.
Advertisement