I need a macro code that links an array of Labels to an array of Textboxes.

These controls are located on a Userform.

Ex: Label1.Caption = Textbox1.Text ... Label2.Caption = Textbox2.Text.

There will be a number of these controls on the UserForm, so using : Label1.Caption = Textbox1.Text for each and every pair will be unreasonable.

How can an array of Labels and Textboxes be set to handle this ?

Thanks.