It is possible, but requires a little bit of code to setup.
First create a field:
Private ComboBoxArray(10) as ComboxBox
Then in the Load event, point the array elements to the comboBoxes
......FormLoad.........
ComboBoxArray(0)=ComboBox1
ComboBoxArray(1)=ComboBox2
ComboBoxArray(2)=ComboBox3
.
.
.
Method 2:
Using the tag property will also work, but you have to use explicit conversion to avoid it being interpreted as a string.
Cint(ControlOnForm.Tag)
Method 3:
You could also get clever with it by setting the names the same but with the number on the end designating the array element you want. Once again in the form load event:
....FormLoad.....
For Each ControlOnForm As Control In Me.Controls
If TypeOf ControlOnForm Is ComboBox Then
ComboBoxArray(ControlOnForm.Name.Substring(8))=ControlOnForm
End IF
Next