I create dynamically a Userform with comboboxes and textboxes. one of each per row. The user will choose how many lines he wants. So far I can adjust the size of the Userfor
Set CBName = UF2.Designer.Controls.Add("forms.combobox." & i)
The class String is ALWAYS Forms.ComboBox.1 - never .2 or .3
Therefore do:
Set CBName = UF2.Designer.Controls.Add("Forms.ComboBox.1")