12-21-2023, 09:25 PM
(This post was last modified: 12-21-2023, 09:29 PM by Kernelpanic.)
Nice Christmas present! Thanks to everyone who shows so much enthusiasm in their free time.
Thanks also for the tip about being able to delete unnecessary files. A bat file or a WSH script would be of no use because one don't know how the users' system is structured. It would perhaps make sense to include a text: “Please read the note” and then a short explanation.
Here is a first attempt with the new possibilities. The 7z file also contains the image. The path must be adjusted of course .
Thanks also for the tip about being able to delete unnecessary files. A bat file or a WSH script would be of no use because one don't know how the users' system is structured. It would perhaps make sense to include a text: “Please read the note” and then a short explanation.
Here is a first attempt with the new possibilities. The 7z file also contains the image. The path must be adjusted of course .
Code: (Select All)
'Neue Funktionen im Version 3.10.0 - $Embed + _Embedded$
'21. Dez. 2023
Option _Explicit
$Embed:'D:\Lab\QuickBasic64\Uebungen\Embed\Pizza2.jpg','Pizzawein'
Dim As Long piz
Screen _NewImage(1000, 650, 32)
piz = _LoadImage(_Embedded$("Pizzawein"), 32, "memory")
_PutImage (5, 4), piz
_FreeImage piz
End