Subject TIBODataset and Exception
Author Michael Vilhelmsen
Hi

I have just converted a BDE application from BDE to IBO.

When I used BDE as connection I had some try except end rutines in my
D5 program.
On the except part I did a:

on E: EDBEngineError do
begin
Cathing some deadlock situations.......
end;
on E: Exception do
begin
end;


Now when using IBO I do not get a EDBEngineError !
So now I get into my "ordinary" exception part.

I would like to "capture" a IBO exception instead.
Can I do that ?

Regards
Michael