I had the same problem.
All you have to do is put on in it (before running) you can make in invisible if you want. Then, during runtime:
Code:
Load Label(Label.Count)
Label(Label.Count - 1).Visible = True
Label(Label.Count - 1).Caption = "Markman is the best!"
Label(Label.Count - 1).Top = Label(Label.Count - 2).Top _ + Label(Label.Count - 2).Height
It workd for me.
You can even put a loop around it:
Do
'what it says above
Loop Until Label.Count = 10