VBA Control Arrays
VBA Control Arrays
7
Posted on: 08-5-2011 by: Siddharth Rout
These are the few things that we will be covering in this post:
WHATISACONTRO LARRAY?
A Control Array is a group of controls that share the same name type and the same event procedures. They
are a convenient way to handle groups of controls (Same Type) that perform a similar function. All of the
events available to the single control are available to the array of controls.
Controls in a Control Array share the same set of event procedures. This results in you writing less amount of
code.
You can effectively create new controls at design time, if you need to.
And you want all 10 to be numeric textboxes. Numeric textboxes are those text boxes where you can only
type numbers. If it was just 1 TextBox, you would have a code like this:
Now imagine writing this code 10 times for each and every textbox?
This is where we will use Control Array of Textboxes and assign them the same procedure.
To start with, add a new Class. You can do that by right clicking on the VBAProject Insert Class
Module. See the two images below.
Now paste this code in the code area of the Class1 Module:
Option Explicit
Dim TextArray() As New Class1
Private Sub UserForm_Initialize()
Dim i As Integer, TBCtl As Control
For Each TBCtl In Me.Controls
If TypeOf TBCtl Is MSForms.TextBox Then
i = i + 1
ReDim Preserve TextArray(1 To i)
Set TextArray(i).TextBoxEvents = TBCtl
End If
Next TBCtl
Set TBCtl = Nothing
End Sub
And you are done! Now when you run the UserForm, all the textboxes will now show the same behaviour.
To test it, simply run your UserForm and try typing anything in the textboxes. You will notice that you will not
be able to type anything other than numbers or pressing the Delete and the Backspace button. Similarly
you can create other events for textboxes like change(), click() etc.
Creating new textboxes at runtime and assigning them same set of event procedures.
Now lets take another scenario. Instead of creating textboxes at design time and then assigning them same
set of event procedures, what we want to do is to create these textboxes at run time and then assign them
same set of event procedures.
Lets say your UserForm now simply looks like this:
Create the Class module as I have shown above and then paste the code which I gave above for the Class
module.
Paste this in the the Initialize event of the UserForm:
Option Explicit
Dim TextArray() As New Class1
Private Sub UserForm_Initialize()
Dim ctlTBox As MSForms.TextBox
Dim TBoxTop As Long, i As Long
'~~> Decide on the .Top for the 1st TextBox
TBoxTop = 30
For i = 1 To 10
To test it, simply run your UserForm. You will see that the TextBoxes automatically get created and you will
not be able to type anything other than numbers or pressing the Delete and the Backspace button. This is
how your UserForm will look: