I have VB6 application , I want to put some good error handling finction in it which can tell me what was the error and exact place when it happened , can anyone suggest th
a simple way without additional modules, useful for class modules:
pre-empt each function/subs:
On Error Goto Handler
handler/bubbleup:
Handler: Err.Raise Err.Number, "(function_name)->" & Err.source, Err.Description
voila, ghetto stack trace.