Java Forums

Main Menu
Home
Today's Posts
FAQ
Search
Contact Us

Java Network
Linux Archive
Java Tips
Java Tips Blog

Sponsored Links





Welcome to the Java Forums.

You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features. By joining our free community, you will:

  • have access to post topics
  • communicate privately with other members (PM)
  • not see advertisements between posts
  • have the possibility to earn one of our surprises if you are an active member
  • access many other special features that will be introduced later.

Registration is fast, simple and absolutely free so please, join our community today!

If you have any problems with the registration process or your account login, please contact us.

Reply
 
LinkBack Thread Tools Display Modes
  #1 (permalink)  
Old 04-24-2008, 06:16 AM
Member
 
Join Date: Dec 2007
Posts: 30
Leprechaun is on a distinguished road
[SOLVED] Disabling a button not working
I have a button which I can't seem to disable.
Code:
JButton temp = (JButton)event.getSource(); temp.setText("WHY?"); temp.disable();
The text is set to "WHY?" but the button is not disabled, that's the part I find odd.
Bookmark Post in Technorati
Reply With Quote
Sponsored Links
  #2 (permalink)  
Old 04-24-2008, 06:33 AM
sukatoa's Avatar
Senior Member
 
Join Date: Jan 2008
Location: Cebu City, Philippines
Posts: 527
sukatoa is on a distinguished road
Send a message via Yahoo to sukatoa
disable() method is deprecated as of JDK 1.1 and was replaced by
java.awt.Component.setEnabled(boolean)...

try to use temp.setEnabled( boolean b )....
__________________
A specific, detailed, simple, well elaborated, and "tested before asking" question may gather more quick replies. hopefully
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.

Last edited by sukatoa : 04-24-2008 at 07:13 AM.
Bookmark Post in Technorati
Reply With Quote
  #3 (permalink)  
Old 04-24-2008, 06:46 AM
Member
 
Join Date: Dec 2007
Posts: 30
Leprechaun is on a distinguished road
That solved it, thanks for your help!
Bookmark Post in Technorati
Reply With Quote
Sponsored Links
Reply


Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
requestFocusInWindow() not working Iyengar AWT / Swing 2 03-24-2008 03:35 AM
calculator not working Renegade85 New To Java 5 03-10-2008 05:27 PM
Applet button not working letmeoutofhere Java Applets 9 11-14-2007 02:15 PM
disabling JButtons after win in TicTacToe noisepoet New To Java 1 05-19-2007 01:01 AM
Working With ANT JavaForums Eclipse 0 04-26-2007 10:16 PM


All times are GMT +3. The time now is 09:39 PM.


VBulletin, Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Content Relevant URLs by vBSEO ©2007, Crawlability, Inc.
Copyright ©2006 - 2007, www.java-forums.org