Hi MOHAMMESALMAN,
See the attached sample file that creates UserForm CheckBoxes dynamically. It also uses a Class Event Handler that can process all CheckBox Events, instead of having to add one for each CheckBox in the UserForm module.
Instructions for creating a Class Event Handler:
a. To prevent a compile error, in the VBA Editor add the following library reference:
Tools -> References -> Microsoft Forms 2.0 Object Library (Excel 2003 version)
b. Create Class ClassCheckBox
The following line is required at the top of the Class:
Public WithEvents CheckBoxGroup As MSForms.CheckBox
There are several built in events that can be selected.
c. Put the following line at the top of an ordinary Code module:
Public myCheckBoxes() As New ClassCheckBox
d. Put the following calls in UserForm_Initialize:
(1) - Call CreateUserForm1DynamicCheckBoxes 'To CREATE Dynamic (created at runtime) controls
(2) - Call GenerateUserForm1CheckBoxControlArray 'To assign CheckBoxes to the CheckBoxGroup
Controls in the CheckBoxGroup will have events handled by ClassCheckBox
NOTE: If a UserForm Event exists, it will still be activated before the Class Event.
Class ClassCheckBox code. NOTE if the Class name is changed, other items in the code must be changed also.
UserForm1 module code:
In an ordinary code module such as Module1:
Lewis
Bookmarks