Code: Select all
DisableDebugger ; Comment out to avoid apparent crash.
OpenConsole("Test")
Input()
End
Thanks!
Code: Select all
DisableDebugger ; Comment out to avoid apparent crash.
OpenConsole("Test")
Input()
End
Code: Select all
Syntax
DisableDebugger
Description
This will disable the debugger checks on the source code which follow this command. It doesn't not fully turn off the debugger, so performance checks should not be done using DisableDebugger command, but by disabling the debugger before compiling the program.
normeus wrote: Tue Jan 30, 2024 3:14 am To disable debugger uncheck "Use Debugger" from Debugger menu at top ( debugger still runs even if you type "DisableDebugger" )
From help:Usually there are little nuances in PB like DisableDebugger not fully disabling the debugger, but the help file will usually have a solution or description that could help.Code: Select all
Syntax DisableDebugger Description This will disable the debugger checks on the source code which follow this command. It doesn't not fully turn off the debugger, so performance checks should not be done using DisableDebugger command, but by disabling the debugger before compiling the program.
Norm.