Here is one way to do it. First just lay out your labels or whatever controls you want in the array like norma. Then either at the form level or whenever you need to access them in an array do something like this:
VB Code:
Dim ctrls() as Control={Label1,Label2,Label3,Label4} 'put the names of whatever controls you want in the array 'then you can use it like a control array ctrls(2).Text="I'm the second in the array!"




Reply With Quote