I am trying to place a user defined number of imageboxs inside a picture box. I have tried creating an array of images:
and I can then redimension this array but if I try to load a picture:
it gives an error message : "Object variable or With block variable not set"
Can someone help me out?
Code:
dim shapes() as image
Code:
for i = 0 to #
shapes(i).picture = loadpicture("...")
next
Can someone help me out?
Comment