View Single Post
  #3 (permalink)  
Old 01-16-2008, 01:27 AM
undertow's Avatar
undertow undertow is offline
Member
 
Join Date: Jan 2008
Location: Colorado USA
Posts: 12
undertow is on a distinguished road
Send a message via AIM to undertow Send a message via Skype™ to undertow
Code:
Button b = new Button("Hello"); b.addActionListener(new ActionListener() { public void actionPerformed(ActionEvent e) { //something in response to click } }); Frame f = new Frame("Java Frame"); f.add(b, BorderLayout.NORTH ); f.pack(); f.show();
I would also suggest looking into SUN's documentation on actionListener interface and the Action Object.
Reply With Quote