im having some problems....is it possible do do this?:

VB Code:
  1. Dim PicCount As Single
  2.  
  3. Private Type SavedPics
  4.     DC As Long
  5. End Type
  6.  
  7. Dim SavedPictures(10) As SavedPics
  8.  
  9. Private Sub Command1_Click()
  10. PicCount = PicCount + 1
  11. BitBlt SavedPictures(PicCount).DC, 0, 0, Picture2.ScaleWidth, Picture2.ScaleHeight, Picture2.hdc, 0, 0, vbSrcCopy
  12. End Sub
  13.  
  14. Private Sub Command2_Click()
  15. BitBlt Picture3.hdc, 0, 0, Picture2.ScaleWidth, Picture2.ScaleHeight, SavedPictures(Text1).DC, 0, 0, vbSrcCopy
  16. Picture3.Refresh
  17. End Sub