+ Reply to Thread
Results 1 to 5 of 5

Add multiple checkbox in vb form on runtime

  1. #1
    Registered User
    Join Date
    07-14-2015
    Location
    India
    MS-Off Ver
    3
    Posts
    24

    Add multiple checkbox in vb form on runtime

    I have a spreadsheet with a list of values in column A that I want to
    show up as checkboxes on a userform. The current code crashes when it
    tries to add a caption to the checkbox. I get a runtime error "Could
    not find the specified object"
    The actual code would call a function to determine how many rows in
    column A which will vary, and I'll add code to size the form and
    manipulate the checkboxes to fit.

    Private Sub UserForm_Initialize()
    Dim iRow As Integer
    Dim iLeft As Integer
    Dim ctlCheckBox As Control
    Dim sName As String
    Dim iNumRows As Integer
    Dim iTop As Integer

    Worksheets("Hour Per Equipment").Activate
    iTop = 10
    For iRow = 3 To iNumRows
    If Cells(iRow, "A") <> "" Then
    Set ctlCheckBox = frmEqpDetails.Controls.Add("frmEqpDetails.VisChkbox.1", "cb" & iRow)
    sName = "cb" & iRow

    'I tried using ctlCheckBox sub for sName-same result

    frmEqpDetails.Controls(sName).Caption = Cells(iRow, "A")
    Me.Controls(sName).Left = iLeft
    ctlCheckBox.Top = iTop
    iTop = iTop + 10
    End If
    Next iRow
    End Sub

  2. #2
    Forum Expert Greg M's Avatar
    Join Date
    08-16-2007
    Location
    Dublin. Ireland
    MS-Off Ver
    Office 2016
    Posts
    4,641

    Re: Add multiple checkbox in vb form on runtime

    Hi there,

    Try the following code and see if it does what you need:

    Please Login or Register  to view this content.
    The highlighted values can be changed to suit your own worksheet and UserForm layout requirements.

    Hope this helps - please let me know how you get on.

    Regards,

    Greg M

  3. #3
    Forum Expert
    Join Date
    01-23-2013
    Location
    USA
    MS-Off Ver
    Microsoft 365 aka Office 365
    Posts
    3,863

    Re: Add multiple checkbox in vb form on runtime

    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.
    Please Login or Register  to view this content.
    UserForm1 module code:
    Please Login or Register  to view this content.
    In an ordinary code module such as Module1:
    Please Login or Register  to view this content.
    Lewis
    Attached Files Attached Files

  4. #4
    Registered User
    Join Date
    07-14-2015
    Location
    India
    MS-Off Ver
    3
    Posts
    24

    Re: Add multiple checkbox in vb form on runtime

    Hi Greg,

    How can I use this code in multipage form.

    Please find the attached file.

    The problem is that The code which you had shared is working properly. But, with multipage form its not as per the requirement.
    Attached Files Attached Files

  5. #5
    Forum Expert Greg M's Avatar
    Join Date
    08-16-2007
    Location
    Dublin. Ireland
    MS-Off Ver
    Office 2016
    Posts
    4,641

    Re: Add multiple checkbox in vb form on runtime

    Hi again,

    Take a look at the attached workbook - it shows how to implement your requirements when a Multipage is involved. It takes Test Categories stored in a named range and assigns them to the Multipage tabs:

    Please Login or Register  to view this content.
    Hope this helps - please let me know how you get on.

    Regards,

    Greg M
    Attached Files Attached Files

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Protect the sheet but the form checkbox still can be change and sort by checkbox
    By carolyn1221 in forum Excel Programming / VBA / Macros
    Replies: 0
    Last Post: 08-19-2014, 01:08 PM
  2. Trying to scale a form checkbox in a macro, don't know how to get checkbox name
    By tstruch in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 01-09-2014, 12:14 AM
  3. Form Control Checkbox - multiple cell links?
    By brokenbiscuits in forum Excel General
    Replies: 2
    Last Post: 06-16-2011, 10:57 AM
  4. How to create CheckBox with event in runtime ?
    By bettatronic in forum Excel Programming / VBA / Macros
    Replies: 0
    Last Post: 07-02-2007, 05:54 PM
  5. [SOLVED] Runtime error with vba and checkbox
    By SplatterKat in forum Excel Programming / VBA / Macros
    Replies: 10
    Last Post: 06-08-2006, 08:10 PM
  6. [SOLVED] checkbox in runtime
    By jmartinez.pincheira@gmail.com in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 04-15-2006, 06:10 AM
  7. checkbox on form reset from checkbox on sheet
    By raw in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 12-03-2005, 01:15 AM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1