View Single Post
  #2 (permalink)  
Old 01-03-2008, 04:19 PM
jelly's Avatar
jelly jelly is offline
Member
 
Join Date: Jan 2008
Location: Somerset, UK
Posts: 46
jelly is on a distinguished road
If that's truly a copy of your code then your problem is a simple typo

you wrote:

public void actionPerfomed(ActionEvent ev){

it should be:

public void actionPerformed(ActionEvent ev){

i.e. you missed the second 'r' in action Performed
Reply With Quote