Code:
'change the size of a textbox control array at design time
Private Sub Command1_Click()

    Dim intCre As Integer
    
    For intCre = 0 To Text1.Count - 1
        Text1(intCre).Width = 450
        Text1(intCre).Height = 450
    Next
    
End Sub