Re: [fpc-pascal] Catching Exceptions in Library

2014-11-07 Thread Steve Gatenby
On 07/11/14 17:13, Sven Barth wrote: On 07.11.2014 01:39, Steve Gatenby wrote: Could anybody tell me why the following error is caught by the try except in an Application, but not in a Library ? I am needing to find out where try except doesn't do what I think, not fix this code. this is a

[fpc-pascal] Catching Exceptions in Library

2014-11-06 Thread Steve Gatenby
Could anybody tell me why the following error is caught by the try except in an Application, but not in a Library ? I am needing to find out where try except doesn't do what I think, not fix this code. this is a contrived error to show the problem, not part of my code :) procedure Test();

Re: [fpc-pascal] Catching Exceptions in Library

2014-11-06 Thread waldo kitty
On 11/6/2014 7:39 PM, Steve Gatenby wrote: Could anybody tell me why the following error is caught by the try except in an Application, but not in a Library ? I am needing to find out where try except doesn't do what I think, not fix this code. are you seeing a different error than what you

Re: [fpc-pascal] Catching Exceptions in Library

2014-11-06 Thread Steve Gatenby
On 07/11/14 12:04, waldo kitty wrote: On 11/6/2014 7:39 PM, Steve Gatenby wrote: Could anybody tell me why the following error is caught by the try except in an Application, but not in a Library ? I am needing to find out where try except doesn't do what I think, not fix this code. are

Re: [fpc-pascal] Catching Exceptions in Library

2014-11-06 Thread Sven Barth
On 07.11.2014 01:39, Steve Gatenby wrote: Could anybody tell me why the following error is caught by the try except in an Application, but not in a Library ? I am needing to find out where try except doesn't do what I think, not fix this code. this is a contrived error to show the problem,