I would be very surprised if your code works at all given that it doesn't compile.
Code:
wert = comboBox.Value
The line above is invalid as a Content Control does not have a Value property. Instead you need:
Code:
wert = comboBox.Range.Text
Whilst learning ensure that you learn to use:
- IntelliSense
- the Object Browser
- the online documentation (press F1)