Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- private void formWindowActivated(java.awt.event.WindowEvent evt) {//GEN-FIRST:event_formWindowActivated
- // TODO add your handling code here:
- int tahun = 2000;
- do {
- CmbTahun.addItem(String.valueOf(tahun));
- tahun++;
- if (tahun == 2010) {
- break;
- }
- } while(tahun <=2020);
- }//GEN-LAST:event_formWindowActivated
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement