I have a frame in which I have two JComboBoxes - 'dt' for days of a month and 'mt' for the months of a year(2008, in my frame).
I want that the number of days in 'dt' should change with the month selected in 'mt'.
Eg.- If I select 'JAN' in 'mt', there should be 31 days available in 'dt', if I select 'FEB' in 'mt' ,there should be only 29 days available in 'dt', and so on for all months.
How is it possible to interconnect both the JComboBoxes in such manner?
