12-15-2023, 09:11 PM
One method I came up with was using _CLIPBOARDIMAGE to "poison the well" so to speak. Any program I write would need to write garbage to the clipboard periodically like the example below
Code: (Select All)
'Poison the well
image = _NEWIMAGE(100, 100, 32)
_DEST image
PRINT
PRINT
PRINT " NO!"
_DEST 0
DO
SLEEP 1
_CLIPBOARDIMAGE = image
LOOP UNTIL INKEY$ <> ""
SYSTEM