Let me know how to add controls at run time
Printable View
Let me know how to add controls at run time
you cant create more controls at runtime but you can load more controls from an existing control... here is what i mean. If you have a text box with the index of 0, you can create more text boxes... lets say you wanted to create 2 more text boxes, then you would use this...
load text1(1)
text1(1).visible = true
' move the text box to desired pos
load text1(2)
text1(3).visible = true
' move the text box to desired pos
enjoy.
FaRd0wN