Guest User

Untitled

a guest
Jul 26th, 2016
44
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. private void txtDataCotFocusLost(java.awt.event.FocusEvent evt) {
  2. if (txtDataCot.getText().equals(" / / ")) {
  3. //Limpa o lixo no campo
  4. txtDataCot.setValue(null);
  5. //Mensagem de validação
  6. MensagemPersJOptionPane.msgAttention(rootPane, "<html>Conflitos encontrados, Verifique:<br><br>&#8227; Informe a data do orçamento!</html>", MensagemPersJOptionPane.getMsgTitleValidacao());
  7. txtDataCot.requestFocus();
  8. }
  9. }
Add Comment
Please, Sign In to add comment