MS Dynamics CRM 3.0
I have an array of controls: Dim MyControls() As Control ...
How can I add all the controls in MyControls array to a control collection?
Thanks, Miguel
For i As Integer = 0 To MyControls.Length-1 myControlCollection.Add(MyControls(i)) Next
Riki
- Hide quoted text -
> I have an array of controls: > Dim MyControls() As Control > ...
> How can I add all the controls in MyControls array to a control > collection?
> Thanks, > Miguel