I have a large app with hundreds of procedures.
I haven't made many changes in the last couple of months, but I've been running it daily from the IDE.

Suddenly it's started hanging up and I can't get the IDE to break.
If I pull up Taskmanager, it doesn't list the app or the IDE as 'Not Responding'.
But I still have to use Taskmanager to kill the app.

I added a timer set to one minute with a 'Stop' in it, but that doesn't fire once the app hangs.

Does anyone know of a VB IDE plugin like MZTools that can add logging to each procedure then remove it when you've found the problem?

If not, can someone point me to a tutorial on how to make a VB Plugin?
It would add something like this to the top of each proc:
vb Code:
  1. 'ProcLog
  2.     debug.print "ProcName: " & strProcName, "ParamOne: " & varParamOne 'etc
  3.     '/ProcLog