richardscooke 0 Newbie Poster

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?

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.