Guest User

Untitled

a guest
Oct 22nd, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. procedure TForm2.FormCreate(Sender: TObject);
  2. begin
  3. Application.OnException := AppException;
  4. end;
  5.  
  6. procedure TForm2.AppException(Sender: TObject; E: Exception);
  7. begin
  8. if E is EDBEditError then
  9. Вывод сообщения;
  10. end;
Add Comment
Please, Sign In to add comment