> Here's an example to demonstrate what it does do.

to make it even clearer i should have had the 
try/except test like this:

  try
       SomethingStupid;
       ShowMessage('Got here');
  except on MyException do
    begin
       ShowMessage('Oops! MyException');
    end;
  end;
  ShowMessage('Got out');  // this is the point 


if the exception raised is a MyException
then the exception is handled and 'Got Out'
will display

if the exception rasied is not a MyException
then the exception is not handled and 'Got Out'
will not display

-ns




---------------------------------------------------------------------------
    New Zealand Delphi Users group - Delphi List - [EMAIL PROTECTED]
                  Website: http://www.delphi.org.nz
To UnSub, send email to: [EMAIL PROTECTED] 
with body of "unsubscribe delphi"

Reply via email to