24/09/2014, 09:22
|
| | | Fecha de Ingreso: agosto-2014 Ubicación: Mountain View
Mensajes: 1.323
Antigüedad: 10 años, 3 meses Puntos: 182 | |
Respuesta: jComboBox para Años
Código Java:
Ver original if (cbAnyo == null) { List<Integer> lstAnyos = new ArrayList<>(); for (int i = 1920; i<= year; i++) { lstAnyos.add(i); } } return cbAnyo; }
|