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:
  1. picture1.currentx = 0
  2. picture1.currenty = 0
  3. picture1.picture = loadpicture("c:\tmp1.bmp")
  4. picture1.currentx = 1000
  5. picture1.currenty = 1000
  6. picture1.picture = loadpicture("c:\tmp2.bmp")
  7. picture1.currentx = 2000
  8. picture1.currenty = 2000
  9. picture1.picture = loadpicture("c:\tmp2.bmp")