time date settings

Do you know of any GUI object to set date and time ?ThanksILAN
[83 byte] By [Ilan_Yaniva] at [2007-11-26 18:08:25]
# 1
no, there isn`t one. but it is easy to write one
grilleda at 2007-7-9 5:40:04 > top of Java-index,Desktop,Core GUI APIs...
# 2
How would you write one ?
Ilan_Yaniva at 2007-7-9 5:40:04 > top of Java-index,Desktop,Core GUI APIs...
# 3
no, there isn`t oneEr, yes there is.new JSpinner(new SpinnerDateModel());
itchyscratchya at 2007-7-9 5:40:04 > top of Java-index,Desktop,Core GUI APIs...
# 4

Swing doesn't provide other than a spinner much in relation to displaying date choosers. Yes you could write your own, but if you wanted to save yourself re-writing already freely available good code, there are plenty of "Date Picker" widgets available already. An example of one if you have a look is SwingX Date Picker.

You may wish to investigate the project homepage:

https://swingx.dev.java.net/

Cheers.

Jason Barraclough.

fireman.sparkeya at 2007-7-9 5:40:04 > top of Java-index,Desktop,Core GUI APIs...