Dumpteam Windev 17 Work ★
WinDev 17 has limited built-in memory profiling. DumpTeam can track allocations and identify which window or control is causing a slow leak over time.
By default, WinDev 17 runs its compiled executables with "Optimized Mode" enabled, which strips out debugging symbols. dumpteam windev 17 work
A typical WinDev 17 project consists of: WinDev 17 has limited built-in memory profiling
Create a simple WLanguage background process that monitors the DumpTeam folder and sends an email: Recompile the entire project (Ctrl + F7)
sFolder = "\\TeamServer\WinDEV17Dumps\"
WHILE True
FOR EACH FILE IN sFolder + "*.wdd"
EmailSend("devteam@company.com", "New crash dump", fFileName)
MOVE(fFileName, sFolder + "Processed\")
END
SLEEP(60000) // Check every minute
END