I'm not sure if this is what you're looking for, but the code below demonstrates how to use the same function for controls that have different names.
To see how it works, create a new project, place two combo box controls on the form, double-click on the form and copy the following code there:
Private Sub Form_Load()
Combo1.AddItem "1"
Combo1.AddItem "2"
Combo1.AddItem "3"
Combo2.AddItem "A"
Combo2.AddItem "B"
Combo2.AddItem "C"
Call SetComboBox(Combo1, "2"

Call SetComboBox(Combo2, "C"

End Sub
'Set a combo box to a particular item
Public Sub SetComboBox(ByVal cboBox As ComboBox, ByVal strValue As String)
Dim lngCtr As Long
For lngCtr = 0 To cboBox.ListCount
If cboBox.List(lngCtr) = strValue Then
cboBox.ListIndex = lngCtr
Exit For
End If
Next
End Sub