VBA Macro to Loop though CheckBox Values

MidnightOil

New Member
Joined
Mar 5, 2022
Messages
1
Platform
  1. Windows
Hi Folks,

I am starting with an example found here to dynamically create checkboxes on a user form - with a Class Module for events. The example shows the value of each checkbox in a message box when it is clicked on the form. I am trying to loop through the entire collection of checkboxes and enter their values or captions into an array. But I can't seem to access the collection and loop through it. Here is my code so far ...

The User Form:

VBA Code:
Dim AddedCheckBoxes As Collection
Public WithEvents ActiveCheckBox As clsRunTimeCheckbox

Private Sub CommandButton1_Click()
       ' Print all items
    Dim i As Long
    For i = 1 To AddedCheckBoxes.Count
        Debug.Print AddedCheckBoxes.Item(i)    ' ### Error occurs here
    Next i
End Sub

Private Sub UserForm_Initialize()
    Dim i As Long
    Dim newBox As clsRunTimeCheckbox
    Set AddedCheckBoxes = New Collection
    For i = 1 To 6
        Set newBox = New clsRunTimeCheckbox
        With newBox
            Set .Checkbox = Me.Controls.Add("forms.CheckBox.1")
            With .Checkbox
                .Caption = "MyBox" & i
                .Width = 150
                .AutoSize = True
                .Top = 5 + 20 * (i - 1)
            End With
        End With
        AddedCheckBoxes.Add Item:=newBox
    Next i
End Sub

HERE is the Class Module:

VBA Code:
Public WithEvents Checkbox As MSForms.Checkbox

Event Change()

Private Sub Checkbox_Click()
    Set UFParent.ActiveCheckBox = Me
    RaiseEvent Change
End Sub

Property Get UFParent() As Object
    Set UFParent = Checkbox.Parent
    On Error Resume Next
    Do
        Set UFParent = UFParent.Parent
    Loop Until Err
    On Error GoTo 0
End Property

So when I click the command button, I get a "object doesn't support this property or method". If anyone could help explain where I am going wrong, it would be greatly appreciated. I don't fully understand the relationship between the form and the class module, but I'm willing to learn.
 

Excel Facts

Add Bullets to Range
Select range. Press Ctrl+1. On Number tab, choose Custom. Type Alt+7 then space then @ sign (using 7 on numeric keypad)
Each item in the AddedCheckBoxes collection is an instance of the clsRunTimeCheckbox class. Within that class, the Public WithEvents Checkbox As MSForms.Checkbox member is a Checkbox user form object. Therefore you must specify the Checkbox property name to access any property of the Checkbox form object:
VBA Code:
    For i = 1 To AddedCheckBoxes.Count
        Debug.Print AddedCheckBoxes(i).Checkbox.Caption, AddedCheckBoxes(i).Checkbox.Value
    Next i

Giving the Checkbox class member the same name as a form object (i.e. a Checkbox) can be a bit confusing, so it might be better to give it a different name:
VBA Code:
Public WithEvents ThisCheckbox As MSForms.Checkbox
and change every reference to the Checkbox member name in the class and userform code to ThisCheckbox, for example:
VBA Code:
        Debug.Print AddedCheckBoxes(i).ThisCheckbox.Caption, AddedCheckBoxes(i).ThisCheckbox.Value
 
Upvote 0

Forum statistics

Threads
1,214,653
Messages
6,120,748
Members
448,989
Latest member
mariah3

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