| Author |
getSelectedIndex
|
nitish dhar
Greenhorn
Joined: Aug 19, 2007
Posts: 11
|
|
Calendar cal = new GregorianCalendar(); int date=cal.get(Calendar.DATE); i passed date into the jComboBox.getSelectedIndex(date) so that it shows the current date only in the combo box as the first item but the command seems to have an error ....???
|
 |
Campbell Ritchie
Sheriff
Joined: Oct 13, 2005
Posts: 32712
|
|
|
Read the API documentation for JComboBox#getSelectedIndex. You are using incorrect arguments.
|
 |
Rob Spoor
Sheriff
Joined: Oct 27, 2005
Posts: 19216
|
|
|
Days of the month / year are 1 based, whereas the JComboBox index is 0 based.
|
SCJP 1.4 - SCJP 6 - SCWCD 5
How To Ask Questions How To Answer Questions
|
 |
 |
|
|
subject: getSelectedIndex
|
|
|