Hi
all.
I have a component
that gets a value back from a DLL.
The value is a Date
BUT it can sometimes be just zero.
Do I
go
try
myDate:=GetDateFromDll;
except
myDate:=now
end;
Ok this is perfectly
fine and is the normal thing to do, BUT when I am running in the IDE I have
Break On Exception turned on and as you would expect, it stops if the date is
not valid. This is ok, I just press F9 and on it goes.
Now, my question IS,
is there a way I can get it to NOT stop when the exception is raised OTHER than
adding the exception type to the list that the IDE ignores that you set in the
Debugger options OR by turning off the Break on Exception
option?
Thanks, Jeremy
Coulter