I apologize if this was asked before, but I am having trouble loading multiple images for using them as icons for menu.
Following LoadImage() example -> http://www.spiderbasic.com/documentatio ... image.html I only manage in loading a single image. So if I use the following procedure:
Code: Select all
Procedure LoadImages()
Debug LoadImage(#ImageRefresh, "img/refresh_update.png")
Debug LoadImage(#ImageVolonterAdd, "img/user-add.png")
Debug LoadImage(#ImageVolonterDelete, "img/user-delete.png")
ProcedureReturn
EndProcedure
What is the correct way to load multiple images and use them afterwards in code?