What would be the "best" way of changing the captions of a bunch of labels at the same time instead of:
Code:
Private Sub ComboBox1033_Change()
Label880.Caption = ComboBox1033.Value
Label881.Caption = ComboBox1033.Value
Label882.Caption = ComboBox1033.Value
Label883.Caption = ComboBox1033.Value
End Sub