Example #1
0
 private void CantidadFocusLost(
     java.awt.event.FocusEvent evt) { // GEN-FIRST:event_CantidadFocusLost
   // TODO add your handling code here:
   try {
     if (!(Cantidad.getText().equals(""))) {
       int x = parseInt(Cantidad.getText());
     }
   } catch (NumberFormatException e) {
     this.getToolkit().beep();
     JOptionPane.showMessageDialog(
         null, "Solo se pueden insertar numeros", "Solo Numeros", JOptionPane.ERROR_MESSAGE, null);
     Cantidad.requestFocus();
     Cantidad.selectAll();
   }
 } // GEN-LAST:event_CantidadFocusLost