aspose file tools
The moose likes Swing / AWT / SWT and the fly likes button not working, please help Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login
JavaRanch » Java Forums » Java » Swing / AWT / SWT
Reply Bookmark "button not working, please help" Watch "button not working, please help" New topic
Author

button not working, please help

Madhan Kumar
Greenhorn

Joined: Jan 09, 2006
Posts: 7
Hi, i am developing a chat application using sockets.I have used two panels in a frame. My problem is that the button in panel isnt working, i have used the same action event for both the panels.. i am adding here the part of my code..


My button when clicked has to display corresponding dialog box, but it fails to do so, what could be wrong please help. thanks in advance
jay vas
Ranch Hand

Joined: Aug 30, 2005
Posts: 407
change
JButton buser=new JButton("Users");
to
buser=new JButton("Users");

(Youre declaring buser as a local variable inside
the constructor. You need not declare it locally, because
you want it to reference the gloable instance.)
Madhan Kumar
Greenhorn

Joined: Jan 09, 2006
Posts: 7
Thank you, my headache is over for now.
 
I agree. Here's the link: http://aspose.com/file-tools
 
subject: button not working, please help
 
Similar Threads
Converting an Application into JApplet
Need help on login frame in java.
Calling the repaint() method
JFrame monitor of a calculation
calculation problem in my applet