I need to cast a generic VBA form control object into a ComboBox object so that I can add items to it. The generic object won\'t allow me to insert items into my existing li
You can "cast" an VBA Object by using SET, eg:
SET lbCurrentComboBox = ctlCurrent
If phil's answer didn't work try
SET lbCurrentComboBox = ctlCurrent.Object