Page 1 of 1

PB 6.30 b3 x64 - Debugger error.

Posted: Tue Oct 07, 2025 1:18 pm
by pjay
Closing the console window causes a 'The debugged executable quit unexpectedly' error:

Code: Select all

DisableDebugger
OpenConsole()
Input()

Re: PB 6.30 b3 x64 - Debugger error.

Posted: Tue Oct 07, 2025 7:33 pm
by mk-soft
The debugger still runs in the background.

Code: Select all

DisableDebugger
; do any without debugger
EnableDebugger

Re: PB 6.30 b3 x64 - Debugger error.

Posted: Wed Oct 08, 2025 7:14 am
by pjay
Thanks for your input mk, but the code below doesn't present the error, what's the difference?

Code: Select all

OpenConsole()
DisableDebugger
Input()
It's a bug when opening a console window whilst the debugger is disabled in code.

This code presents a 'No console is currently opened' error:

Code: Select all

DisableDebugger
OpenConsole()
EnableDebugger
Input()

Re: PB 6.30 b3 x64 - Debugger error.

Posted: Wed Oct 08, 2025 7:56 am
by Fred
Closing a console on Windows kill the process abruptly, that's why the debugger is complaining.

Re: PB 6.30 b3 x64 - Debugger error.

Posted: Wed Oct 08, 2025 9:04 am
by pjay
Fred wrote: Wed Oct 08, 2025 7:56 am Closing a console on Windows kill the process abruptly, that's why the debugger is complaining.
Did you not read my second post? How is that not a bug?

Re: PB 6.30 b3 x64 - Debugger error.

Posted: Wed Oct 08, 2025 1:37 pm
by Fred
I misread the first post, I will take a closer look.