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:
It workd for me.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
You can even put a loop around it:
Do
'what it says above
Loop Until Label.Count = 10





Reply With Quote