Hi,
im Augenblick mache ich das so:
Option Explicit
Dim i As Control
Private Sub CommandButton1_Click()
Set i = cbo1
Call TuEtwas
Set i = cbo2
Call TuEtwas
Set i = cbo3
Call TuEtwas '***usw***
End Sub
Public Sub TuEtwas()
With i
.Text = „xxxxxxxxxxxx“
.Height = 25 '***usw***
End With
End Sub
Kann man das mit einer Schleife machen?
Danke und Gruß