Is there any possible way to take many different pictures and insert them into 1 picture box at any given position(x,y) all at one time?
Example(Way Off)
VB Code:
picture1.currentx = 0 picture1.currenty = 0 picture1.picture = loadpicture("c:\tmp1.bmp") picture1.currentx = 1000 picture1.currenty = 1000 picture1.picture = loadpicture("c:\tmp2.bmp") picture1.currentx = 2000 picture1.currenty = 2000 picture1.picture = loadpicture("c:\tmp2.bmp")





Reply With Quote