Here is what I want to do:
Private Function foo(bar As Integer)
For n = 0 To ComboBox(bar).ListCount - 1
[some stuff]
End For
End Function
I'm getting an error on the second line because I'm using (bar), rather than (e.g.) 2, or 3.
Can I accomplish what I want to do?