PC SOFT

FOROS PROFESIONALES
WINDEVWEBDEV y WINDEV Mobile

Inicio → WINDEV 2024 → WD - Error "Stack Overflow cause by code
WD - Error "Stack Overflow cause by code
Iniciado por guest, 16,nov. 2016 19:34 - 4 respuestas
Publicado el 16,noviembre 2016 - 19:34
Hi All,

Greetings...
What is the cause of Stack Overflow?
And how to eliminate this error?

Thanks,
Ech
Publicado el 16,noviembre 2016 - 19:49
Hi

the most common cause I have seen is the use of recursive code (not supported in wlanguage)...

Best regards
Publicado el 17,noviembre 2016 - 08:40
Hi Fabrice,

Every one minute my application automatically shutdown. And the error message was "Execution Stack Overflow cause by code"
I tried to fix it but no luck.

Regards,
Alvin
Publicado el 17,noviembre 2016 - 09:43
Alvin,

turn on the debug mode (dbg-functions). This will give you a WLOG file with basicly every function call of your software. Open this file in WIndev and you can see what your application did.
As Fabrice already mentioned, in most cases this is caused by recursive code or dead-loop somewhere in your code.
Publicado el 20,noviembre 2016 - 08:40
Hi Fabrice / Arie,

Thank you. The Issue has been solved.

Thanks,
Ech