I am having a problem handeling an EDBEngineError.
When I type an incorrect password in a login box it causes a EDBEngineError which I want to handle.
I first tried having the database.open in a try....except block but that did nothing.
Now I have tried using an application exeption handler i.e.
Application.OnException := MyHandler;
procedure TForm1.MyHandler(Sender: TObject; E: Exception);
begin
if (E is EDBEngineError) then begin
.............................
but this doesn't pick it up either!
Can anyone help please?