![]() |
Smart Pause - Printable Version +- QB64 Phoenix Edition (https://qb64phoenix.com/forum) +-- Forum: QB64 Rising (https://qb64phoenix.com/forum/forumdisplay.php?fid=1) +--- Forum: Prolific Programmers (https://qb64phoenix.com/forum/forumdisplay.php?fid=26) +---- Forum: SMcNeill (https://qb64phoenix.com/forum/forumdisplay.php?fid=29) +---- Thread: Smart Pause (/showthread.php?tid=2548) |
Smart Pause - SMcNeill - 03-28-2024 Code: (Select All)
And here we have a customizable "Pause" routine, which allows for a few things which SLEEP doesn't. Set it to allow mouse clicks to break pause. Set it to allow pause to only break when the window has focus. Remove modifier keys from the list of acceptable keys to break pause (no shift/ctrl/alt breaking pause). Set it so that only keydown events break pause and not keyup events. Timed events, or events without no time limit. One thing of note: This also allows you to create your very own endless loop! Set it with no time limit for a pause, with no input allowed to break the pause, and you have permanently paused your program until you click the red "X" in the top right corner and closed it. I really wouldn't recommend doing that, but hey, if that's your thing.... RE: Smart Pause - Pete - 03-29-2024 Add a correctly written _EXIT subroutine and you'd have to use Task manager to close it. ![]() I always coded my own pause routines for my apps. Sleep is nice for pausing when debugging. You can use it with INKEY$ and still get input... Code: (Select All)
...but that's a pretty Mickey Mouse way to avoid a loop. You know in 2005 you could do something like this in QuickBasic... Code: (Select All)
However QB64 doesn't have the lag problem on min, so this little nugget has turned into fool's gold... Oh unless you developers want to break QB64 to make it more 100% QuickBasic compatible! ![]() ![]() ![]() Pause for a moment and think about it... Fun stuff. Pete |