Arrays

  • Thread starter Thread starter Bruce F
  • Start date Start date
B

Bruce F

Questions from a newbie...
Can I have an array of ArrayLists?
Can I have an array of TextBoxes?
If so, how do I define them, and how to use?
Many Thanks
 
Bruce,

In addition to Patrice.

Although an array of arraylist is in my opinion something reaching stupidity
to use, can an array of comboboxes be quiet useful to enumerate those

dim a as combobox() = {combo1, combo2, combo3}
ComboBox() a = {combo1, combo2, combo3};

I hope this helps,

Cor
 
Back
Top