+7 (8552) 77-85-80




Windev 17 Dumpteam -

A very specific topic!

Add this to the project’s global exception handler (Project Management > Exception Handler). windev 17 dumpteam

A debug dump is a snapshot of an application's state at a specific moment in time. It is used to "reposition" the debugger on runtime information later, allowing developers to view the call stack and variable content from the exact moment an error occurred. doc.windev.com File Format : Debug dumps are typically saved with a extension. A very specific topic

PROCEDURE DumpObject(oObject)
    sResult is string
    nProp is int
    FOR nProp = 1 TO TypeProperty(oObject)
        sResult += TypeProperty(oObject, nProp) + " = " + 
                   oObject..[TypeProperty(oObject, nProp)] + CR
    END
    RETURN sResult