i have one txt field and one button.when i entere any test in testfield then only button should be enabled. .when i cleared the test,at that time butoon should be disabled. i need code for this

i have one txt field and one button.when i entere any test in testfield then only button should be enabled. .when i cleared the test,at that time butoon should be disabled. i need code for this

i have one txt field and one button.when i entere any test in testfield then only button should be enabled. .when i cleared the test,at that time butoon should be disabled. i need code for this thanks in advance

View Answers

November 16, 2011 at 4:52 PM

import javax.swing.*;
import java.awt.event.*;
class TextFieldAndButton 
{
    public static void main(String[] args) 
    {
        JFrame f=new JFrame();
        final JTextField text=new JTextField(20);
        final JButton b=new JButton("Check");
        b.setEnabled(false);
        text.addKeyListener(new KeyAdapter(){
        public void keyTyped(KeyEvent keyEvent) {
       if((text.getText()).equals("")){
        b.setEnabled(false);
       }
       else{
        b.setEnabled(true);
       }
      }
    });
    text.setBounds(10,10,150,20);
    b.setBounds(10,30,100,20);
    f.setLayout(null);
    f.add(text);
    f.add(b);
    f.setVisible(true);
    f.setSize(300,100);
  }
}









Related Tutorials/Questions & Answers:
i have one txt field and one button.when i entere any test in testfield then only button should be enabled. i need for this
i have one txt field and one button.when i entere any test in testfield then only button should be enabled. i need for this   i have one txt field and one button.when i entere any test in testfield then only button should
i have one txt field and one button.when i entere any test in testfield then only button should be enabled.
i have one txt field and one button.when i entere any test in testfield then only button should be enabled.  i have one txt field and one button.when i entere any test in testfield then only button should be enabled. i need
Advertisements
how to highlight the field in image,when i have entered into that corresponding field's textbox-any one help out
how to highlight the field in image,when i have entered into that corresponding field's textbox-any one help out  how to highlight the field in image,when i have entered into that corresponding field's textbox. Here webpage
I have only one day to visit the Jaipur..
I have only one day to visit the Jaipur..  Hi, I have only a day to travel in Jaipur ..hence, bit worried about what to see first
When should I learn tensorflow
When should I learn tensorflow  Hi, TensorFlow is now getting used in industry. I am planning to learn it. When should I learn tensorflow? Thanks... TensorFlow is being used in industry now so you should learn it asap. First of you
When should I learn tensorflow
When should I learn tensorflow  Hi, TensorFlow is now getting used in industry. I am planning to learn it. When should I learn tensorflow? Thanks... TensorFlow is being used in industry now so you should learn it asap. First of you
When should I start learning machine learning?
When should I start learning machine learning?  Hi, I am beginner... to learn: When should I start learning machine learning? Try to provide me good examples or tutorials links so that I can learn the topic "When should I
How should I start to learn code with Java?
How should I start to learn code with Java?  Hi, I want to learn programming language and make career in software industry. I have decided to learn... should learn in Core Java. After learning core Java one has to learn the advanced
I have doubt in jsp file.
on start then only stop should be enabled. Other wise it should be disabled. When we click on start button, stop should be enabled and start should be disabled. When we click on stop button, start should be enabled and stop should be disabled
I have a tex box. in that i want user should enter data in the format specified(for eg--a_b_c_d_e_)how to write code for it.
I have a tex box. in that i want user should enter data in the format specified(for eg--a_b_c_d_e_)how to write code for it.  I have a tex box. in that i want user should enter data in the format specified(for eg--abcde_)how
I have need to help
I have need to help  Write a program that, for four points A, B, C and P, draws a triangle formed by ABC and a small cross showing the position of P; and displays a line of text indicating which of the following three cases
Should I study data science?
Should I study data science?  Hi, I am beginner in Data Science and machine learning field. I am searching for the tutorials to learn: Should I... can learn the topic "Should I study data science?". Also tell me
Should I learn Python 2020?
Should I learn Python 2020?  Hi, I am beginner in Data Science and machine learning field. I am searching for the tutorials to learn: Should I... can learn the topic "Should I learn Python 2020?". Also tell me which
Should I learn PHP or Python?
Should I learn PHP or Python?  Hi, I am beginner in Data Science and machine learning field. I am searching for the tutorials to learn: Should I... that I can learn the topic "Should I learn PHP or Python?". Also tell me
Should I learn R and Python?
Should I learn R and Python?  Hi, I am beginner in Data Science and machine learning field. I am searching for the tutorials to learn: Should I... can learn the topic "Should I learn R and Python?". Also tell me
should i learn jsp in 2018
should i learn jsp in 2018  Hi, I have just completed Java... to learn JSP in 2018? should i learn jsp in 2018? Thanks   Hello, Yes.... To learn Servlet you have to write Servlet code, compile it and then run
should i learn spring in 2021
should i learn spring in 2021  Hello, I am planning for 2021... in Spring Framework. Should I learn Spring Framework in 2021? Thanks... the technologies. (adsbygoogle = window.adsbygoogle || []).push({}); I just
How should I learn coding?
How should I learn coding?  Hello Programmers, How should I learn coding? I want to start it from beginning. Its better if someone provides me urls... towards making your career in programming. You can choose any of following
Should i use Ajax? - Ajax
Should i use Ajax?  When a Ajax can be used in programming?  Its completely up to you but there is no harm in using Ajax programming for any website as they are used to increase the speed of website. You need
Why Should I Learn SQL?
Why Should I Learn SQL?  Hi, I have checked many job posts... it? Why Should I Learn SQL? Thanks   Hi, All dynamic website and web... to save data into back end database. And for this you have to write SQL query and run
Why Should I Learn SQL?
Why Should I Learn SQL?  Hi, I have checked many job posts... it? Why Should I Learn SQL? Thanks   Hi, All dynamic website and web... to save data into back end database. And for this you have to write SQL query and run
Why Should I Learn SQL?
Why Should I Learn SQL?  Hi, I have checked many job posts... it? Why Should I Learn SQL? Thanks   Hi, All dynamic website and web... to save data into back end database. And for this you have to write SQL query and run
Why Should I Learn SQL?
Why Should I Learn SQL?  Hi, I have checked many job posts... it? Why Should I Learn SQL? Thanks   Hi, All dynamic website and web... to save data into back end database. And for this you have to write SQL query and run
how should i can solve
how should i can solve  Web based program - Input - Person's contact details with Passport Number as Unique Key. Save data in to oracle / MySQL. Output - List of Persons saved in the database. Technology to be used - JSP
How to disable Browser's back button (at the same time i want my own back button to be enabled) :p
How to disable Browser's back button (at the same time i want my own back button to be enabled) :p  Hi, I have designed a "back" button for jsp page. Now I want to disable Browser's default button So that people will use "back
How to disable Browser's back button (at the same time i want my own back button to be enabled) :p
How to disable Browser's back button (at the same time i want my own back button to be enabled) :p  Hi, I have designed a "back" button for jsp page. Now I want to disable Browser's default button So that people will use "back
I want to Transfer only 1/3rd of contents from one folder to other but my code is transferring all contents
I want to Transfer only 1/3rd of contents from one folder to other but my code...("No files in directory: " + src); } for (int i = 0; i < entries.length; i++) { File file = entries[i
What classes should I take if I want to become a data scientist?
What classes should I take if I want to become a data scientist?  Hi, I am beginner in Data Science and machine learning field. I am searching for the tutorials to learn: What classes should I take if I want to become a data
I want to learn Machine Learning, where should I start?
I want to learn Machine Learning, where should I start?  Hi, I am beginner in Data Science and machine learning field. I am searching for the tutorials to learn: I want to learn Machine Learning, where should I start? Try
I have posted a number of question but no one has answered?
I have posted a number of question but no one has answered?  No one has responded for ten days now. However my first question was answered on the same day. Is there a limit to the number of questions you can ask or am I doing
What should I learn first Spring or Hibernate?
What should I learn first Spring or Hibernate?  Hi, What should I learn first Spring or Hibernate? I learned Java and JDBC. I also have project experience in JSP/Servlet. I used tomcat for running my application. Thanks
what should i do next?? - Java Beginners
exam.Then now i have no idea about what should i do next.I like to come to the web development.I want to know which one i should study first.JSP or servlet.  i think first u should go through servlet bcoz at last ur jsp code
Should I learn Numpy or pandas first?
Should I learn Numpy or pandas first?  Hi, I am beginner in Data Science and machine learning field. I am searching for the tutorials to learn: Should I learn Numpy or pandas first? Try to provide me good examples
What courses should I take for data science?
What courses should I take for data science?  Hi, I am beginner in Data Science and machine learning field. I am searching for the tutorials to learn: What courses should I take for data science? Try to provide me good
Should I put DataCamp on my resume?
Should I put DataCamp on my resume?  Hi, I am beginner in Data Science and machine learning field. I am searching for the tutorials to learn: Should I put DataCamp on my resume? Try to provide me good examples or tutorials
Should I become a data scientist or software engineer?
Should I become a data scientist or software engineer?  Hi, I am beginner in Data Science and machine learning field. I am searching for the tutorials to learn: Should I become a data scientist or software engineer? Try
Should I learn R or Python first?
Should I learn R or Python first?  Hi, I am beginner in Data Science and machine learning field. I am searching for the tutorials to learn: Should I learn R or Python first? Try to provide me good examples or tutorials links
What should I learn before big data?
What should I learn before big data?  Hi, I am beginner in Data Science and machine learning field. I am searching for the tutorials to learn: What should I learn before big data? Try to provide me good examples or tutorials
What should I learn Hadoop or spark?
What should I learn Hadoop or spark?  Hi, I am beginner in Data Science and machine learning field. I am searching for the tutorials to learn: What should I learn Hadoop or spark? Try to provide me good examples or tutorials
Should I study data science or computer science?
Should I study data science or computer science?  Hi, I am beginner in Data Science and machine learning field. I am searching for the tutorials to learn: Should I study data science or computer science? Try to provide me
Should I study machine learning or AI?
Should I study machine learning or AI?  Hi, I am beginner in Data Science and machine learning field. I am searching for the tutorials to learn: Should I study machine learning or AI? Try to provide me good examples
Should I learn AI or machine learning?
Should I learn AI or machine learning?  Hi, I am beginner in Data Science and machine learning field. I am searching for the tutorials to learn: Should I learn AI or machine learning? Try to provide me good examples
Should I learn C before Python?
Should I learn C before Python?  Hi, I am beginner in Data Science and machine learning field. I am searching for the tutorials to learn: Should... that I can learn the topic "Should I learn C before Python?". Also
Should I learn SQL or Python first?
Should I learn SQL or Python first?  Hi, I am beginner in Data Science and machine learning field. I am searching for the tutorials to learn: Should I learn SQL or Python first? Try to provide me good examples or tutorials
How many hours should I practice programming?
How many hours should I practice programming?  Hi, I am beginner in Data Science and machine learning field. I am searching for the tutorials to learn: How many hours should I practice programming? Try to provide me good
Should I learn Python first or C++?
Should I learn Python first or C++?  Hi, I am beginner in Data Science and machine learning field. I am searching for the tutorials to learn: Should I learn Python first or C++? Try to provide me good examples or tutorials
What major should I choose for data science?
What major should I choose for data science?  Hi, I am beginner in Data Science and machine learning field. I am searching for the tutorials to learn: What major should I choose for data science? Try to provide me good
i need the source code to generate id in jsp
i need the source code to generate id in jsp  hai,i need the source code for generate id...which is i need to generate the new id from the maximum+1,like automatically when i click the button...as well i have several kinds
I am Java programmer. Should I learn Java Script or Python?
I am Java programmer. Should I learn Java Script or Python?  Hi, I learned Core Java and Advanced Java. What should I learn next? I am Java programmer. Should I learn Java Script or Python? Thanks   Hi, Actually
How should I start learning Python?
How should I start learning Python?  Hi, I want to learn PySpark... first. How should I learn Python myself. I wish to learn Python programming as soon as possible. How should I start learning Python? Thanks

Ads