Hi..

I am trying to load a number of labels
and it doesn't seem to work at all.

why not?

Code:
        For i = 1 To UBound(sTxt)
            Load PopupText.ltxt(i)
            With PopupText.ltxt(i)
                    .Caption = sTxt(i)
                    .Move 20, (i * 200) + 20
                    .borderstyle = 1
                    .ForeColor = &H80000017
                    .BackColor = &H80000018
                    .Visible = True
            End With
        Next i