Hi All,
I am reading the datefield into a Date object. But then I want to get the day, month (numeric form) and years separately.
So I am doing this -
-------------------------
int day, month, year;
Date dt = dateField.getDate ();
/* Here I want to get day, month and year out of dt. */
----------------------------
Could you please tell me how to do that?
Thanks in advance
asahlot

Reply With Quote

