Hello Javanauts..<br><br>I have an applet that takes values from textfields and by pressing a button it does some calculations.<br>However I wanted to know how would I use without a button.<br>Ie put values in the textfield and listen the textfields for the values.<br><br>I tried to use the TextListener but I get an error <br><br>ie: atextField.addTextField(this);<br> <br>public void textValueChanged(TextEvent ev)<br>{ Object ob = ev.getSource();<br> if (ob == atextField)<br> { TakeTheValue();<br> }<br> }<br><br>