Hey cwamsley,
Welcome to DevFusion!
This sounds like a control array problem - if you're using VB (and not .NET) that is. You can have several controls with the same name, but with an index, like a normal array. For example,
cboSelection(0), cboSelection(1), cboSelection(2), ..., cboSelection(n)
Then the procedure which needs to know the name of the combobox need only be told an index, and can do something like:
cboSelection(intIndex)
to select the correct combobox object.
The easiest way to create a control array, is to select the combo box in Form View, click Edit | Copy, click Edit | Paste and click Yes when asked whether or not you would like to create a control array.
Control arrays are a complex topic, but have many, many uses. I recommend you consult the manual to clarify my explaination, and to cover the topics I simply do not have the time to write about!
Good luck.