ComboBox aendern

Hallo Zusammen,

ist es möglich den Namen einer ComboBox in einer variablen zu speichern,und später im Programm über diese Variable die ComboBox zu ändern?

Falls ja, wie?

Für Hilfe Bedanke ich mich schon jetzt

Gruß
Sascha

Hallo!

Dim ctl As Control
dim cmbName as string
For Each ctl In Me
 if left$(ctl.name, 3) = "cmb" then 
 cmbName = ctl.Name
Next

Gruß

Gollum

Vielen Dank, so bekomm ich es hin!