Code runs without erros, but the images aren't displaying. The first control in the array is visable.

Am I missing something or doing anything wrong????


VB Code:
  1. For i = 1 To UBound(DisplayTree())
  2.     Load Form1.Img1(i)
  3.     With Form1.Img1(i)
  4.         .Picture = LoadPicture(App.Path & "\bmps\" & DisplayTree(i).Icon & ".bmp")
  5.         .Top = DisplayTree(i).OffSetA * 500
  6.         .Left = DisplayTree(i).OffSetB * 3000
  7.         .Width = 2655
  8.         .Height = 975
  9.     End With
  10. Next i