10-09-2023, 04:35 PM
(This post was last modified: 10-09-2023, 04:36 PM by TerryRitchie.)
Quite often I find the need to clear an image other than the current screen or _DISPLAY and have to do this:
oDest& = _DEST
_DEST MyImage&
CLS
_DEST oDest&
Perhaps CLS could be modified:
CLS [method%][, bgColor&][, ImageHandle&]
so this could be done:
CLS , , MyImage&
Just a thought.
If you have a better way of handing a situation like this than I'm doing let me know.
oDest& = _DEST
_DEST MyImage&
CLS
_DEST oDest&
Perhaps CLS could be modified:
CLS [method%][, bgColor&][, ImageHandle&]
so this could be done:
CLS , , MyImage&
Just a thought.
If you have a better way of handing a situation like this than I'm doing let me know.