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:
For i = 1 To UBound(DisplayTree()) Load Form1.Img1(i) With Form1.Img1(i) .Picture = LoadPicture(App.Path & "\bmps\" & DisplayTree(i).Icon & ".bmp") .Top = DisplayTree(i).OffSetA * 500 .Left = DisplayTree(i).OffSetB * 3000 .Width = 2655 .Height = 975 End With Next i




Reply With Quote