Hello,
one of my Delphi-Methods raises an Exception.
Now I would like to know, which line is processed when the Exception comes up.
I found this code:
if Exec.ExceptionCode <> erNoError then _
_ showmessage(’[Runtime Error] : ’ + TIFErrorToString(Exec.ExceptionCode, Exec.ExceptionString) +
_ ’ in ’ + IntToStr(Exec.ExceptionProcNo) + ’ at ’ + IntToSTr(Exec.ExceptionPos));_
But this did not help.
Thank you
Klaus