I dont know if this has already been discussed, but I would really like to see how to make new labels in runmode?
Printable View
I dont know if this has already been discussed, but I would really like to see how to make new labels in runmode?
Welcome to the forums. :wave:Many, many times.Quote:
Originally Posted by Thediabloman
Here is just one example.
Thanks alot mate.. And thanks.. :P
I have a couple of questions..
I would like to add in an array? How do I do this?
I cant write:
I would also like to start a timer for every time I add a label. The timers have the same code, except which label they are affecting..Code:Set futureLabel = Me.Controls.Add("VB.Label", "futureLabel"(n))
Try using the INDEX property of the Label control. or try using something like
Set futureLabel = Me.Controls.Add("VB.Label", "futureLabel" & n)
"n" should hold the running number ....