A programming language created by Microsoft that serves a stepping stone for beginners from block-based coding languages to more complex text-based languages.
Here is how I did it:
For x=1To 52
Cards[x]=ImageList.LoadImage("C:\Temp\Cards\" + x + ".png")
'GraphicsWindow.DrawImage(Cards[x],0,0)
image=Shapes.addimage(Cards[x])
Shapes.Move(image,300,300)
Program.Delay(1000)
endfor
At first I used the GraphicsWindow.DrawImage which is commented out and then used Shapes.AddImage.
The cards I numbered from 1.png to 52.png.This appears to work OK. I do see all 52 cards displayed.
JR