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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top