Search found 4 matches

by markh
Fri Feb 25, 2005 1:22 pm
Forum: madExcept
Topic: exceptions in TServiceThread.Excute
Replies: 1
Views: 4159

exceptions in TServiceThread.Excute

Hello,

When I have an exception in the TServiceThread.execute in a windows service application madExcept does not catch the exception. Is this behaviour correct?

It would be nice if works automatically but for now I will use
try {
blabla
} catch(...) {
HandleException();
throw;
}

Mark
by markh
Tue Feb 22, 2005 3:00 pm
Forum: madExcept
Topic: madExcept and indy threads
Replies: 6
Views: 9094

Thanks, it works perfect.

Mark
by markh
Tue Feb 22, 2005 1:31 pm
Forum: madExcept
Topic: madExcept and indy threads
Replies: 6
Views: 9094

MadExcept does not work in the indy threads of my application (it does work in my own thread classes that are derived from TThread). However the TidThread (indy thread) is a derived class of TThread the indy threads probably catches itself the exception. I do not know what you exactly mean with noti...
by markh
Mon Feb 21, 2005 3:59 pm
Forum: madExcept
Topic: madExcept and indy threads
Replies: 6
Views: 9094

madExcept and indy threads

Does madexcept work in Indy threads?

Mark