button listener
Hello
I have a button "myButton" in JPanel. To handle an action when user clicks this button, I have
myButtonActionPerformed(java.awt.event.ActionEvent evt){
doAction();
}
Now I want that when user press Enter key, I can also do action "doAction()" as when user click button "myButton"
Please help
regards
shuhu

