08-17-2023, 02:16 AM
Can I throw in a wish? Allow resource/binary files to be included in compiled programs (images, sounds, etc). RapidQ use to do that, was something like this
Then in code, we could use BackImage1 like a file:
- Dav
Code: (Select All)
$RESOURCE: 'back.jpg' AS BackImage1 'add image file as a resource, give it the name BackImage1
Then in code, we could use BackImage1 like a file:
Code: (Select All)
back& = _LOADIMAGE(BackImage1, 32)
- Dav