I want to know how to generate controls or control array at run. This is not impossible since a example of this (no source code) can be found at http://www.tegosoft.com. Any help regarding this will be appreciated.
Kinjal.
Printable View
I want to know how to generate controls or control array at run. This is not impossible since a example of this (no source code) can be found at http://www.tegosoft.com. Any help regarding this will be appreciated.
Kinjal.
This question has been posted a thousand times on this site. Just do a search.
But to help you along to load an extra control in a control array at run time. To be able to do this you need at least one control in the array at design time.
Code:'i is the index of the control to load.
Load Text1(i)
Text1(i).Visible = True
Thanks a lot lalin for answering my question.