Re: Java gui control for incrementing and decrementing a field?



Gil wrote:
What is the java Gui control for incrementing and decrementing a field?

I need an up and a down arrow. Clicking the arrows increases or decreases
a number in the field. Is there anything in Java like this?


example :

field : number ^
               V

clicking the ^ causes number to increase

clicking V causes number to decrease

javax.swing.JSpinner ;-)

http://java.sun.com/docs/books/tutorial/uiswing/components/spinner.html

Karl
.



Relevant Pages