How to debug this?
Posted
by
LeonixSolutions
on Stack Overflow
See other posts from Stack Overflow
or by LeonixSolutions
Published on 2011-01-04T02:43:56Z
Indexed on
2011/01/04
2:53 UTC
Read the original article
Hit count: 210
delphi
I have an application which takes measurements every second (I am running it in demo mode & generating random data, so the problem is not to do with reading from devices attached to the serial port).
After 5 or 6 minutes it hangs.
I have added
try
// entire body of procedure/function goes here
except
on E: Exception do
begin
MessageDlg('Internal coding error in <function name>()',
mtError, [mbOK], 0);
end;
end;
to every single function (and Application.Run() in the project file), but I don't see any message dialogs. Any idea how I can test this?
© Stack Overflow or respective owner