PB 6.30 b3 x64 - Debugger error.

Post bugreports for the Windows version here
pjay
Enthusiast
Enthusiast
Posts: 277
Joined: Thu Mar 30, 2006 11:14 am

PB 6.30 b3 x64 - Debugger error.

Post by pjay »

Closing the console window causes a 'The debugged executable quit unexpectedly' error:

Code: Select all

DisableDebugger
OpenConsole()
Input()
User avatar
mk-soft
Always Here
Always Here
Posts: 6284
Joined: Fri May 12, 2006 6:51 pm
Location: Germany

Re: PB 6.30 b3 x64 - Debugger error.

Post by mk-soft »

The debugger still runs in the background.

Code: Select all

DisableDebugger
; do any without debugger
EnableDebugger
My Projects ThreadToGUI / OOP-BaseClass / EventDesigner V3
PB v3.30 / v5.75 - OS Mac Mini OSX 10.xx - VM Window Pro / Linux Ubuntu
Downloads on my Webspace / OneDrive
pjay
Enthusiast
Enthusiast
Posts: 277
Joined: Thu Mar 30, 2006 11:14 am

Re: PB 6.30 b3 x64 - Debugger error.

Post 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()
Fred
Administrator
Administrator
Posts: 18336
Joined: Fri May 17, 2002 4:39 pm
Location: France
Contact:

Re: PB 6.30 b3 x64 - Debugger error.

Post by Fred »

Closing a console on Windows kill the process abruptly, that's why the debugger is complaining.
pjay
Enthusiast
Enthusiast
Posts: 277
Joined: Thu Mar 30, 2006 11:14 am

Re: PB 6.30 b3 x64 - Debugger error.

Post 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?
Fred
Administrator
Administrator
Posts: 18336
Joined: Fri May 17, 2002 4:39 pm
Location: France
Contact:

Re: PB 6.30 b3 x64 - Debugger error.

Post by Fred »

I misread the first post, I will take a closer look.
Post Reply