VBA Collection Items Get Overwritten

rchaste

New Member
Joined
Mar 31, 2015
Messages
2
I am attempting to add form controls dynamically to a blank form, and build a collection of those controls so I can write my own events. I'm having limited success.

The controls are successfully adding to the form, appear to be adding to the collection, but my click() event only works for the last control on the form. When enumerating the collection, it appears that every item in the collection now holds a reference to only the last field.

When the form appears, five textboxes appear. Double clicking on the last field works, but none of the other 4.

Please ... save my brain from overload!


My class [cTextHandler]
Public WithEvents txt As MSForms.TextBox

Private Sub txt_DblClick(ByVal Cancel As MSForms.ReturnBoolean)
MsgBox (txt)
End Sub


My form [UserForm1]
Code:
Option Explicit

Dim collText As Collection

Private Sub UserForm_Initialize()

    Dim row As Integer
    Dim Prev As Integer
    Dim txt As Control
    
    'event handlers
    Dim txtH As cTextHandler
    Set txtH = New cTextHandler
    Set collText = New Collection

    'Add 5 text boxes to blank form
    Prev = 1
    MsgBox ("Adding items to Collection")
    For row = 1 To 5
        'Add Controls to Form and Build Collection
        Set txt = UserForm1.Controls.Add("Forms.TextBox.1", "foo" & row)
        With txt
            .Value = "foo" & row
            .Width = 168
            .Height = 18
            .Top = Prev + 20
            .Left = 5
            .ZOrder (0)
        End With
        Prev = Prev + 20
       'Add Controls to Collection
        Set txtH.txt = txt
        collText.Add txtH
        MsgBox (txtH.txt)
    Next row

    'Print out the collection
    Dim o As Object
    Dim t As cTextHandler
    MsgBox ("List the Collection")
    For Each o In collText
        Set t = o
        MsgBox (t.txt)
    Next
End Sub
 
Last edited by a moderator:

Excel Facts

Spell Check in Excel
Press F7 to start spell check in Excel. Be careful, by default, Excel does not check Capitalized Werds (whoops)
This line:
Code:
    Set txtH = New cTextHandler
needs to be inside your loop so that you create a new instance for each control.
 
Upvote 0

Forum statistics

Threads
1,214,561
Messages
6,120,225
Members
448,951
Latest member
jennlynn

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top