+ Reply to Thread
Results 1 to 2 of 2

Looping through controls

  1. #1
    Libby
    Guest

    Looping through controls

    Hi

    How do you loop through the labels on a userform and ignore other controls
    such as commandbuttons?

    When I try and do this using the code below, I find that all the controls
    are included in the loop.

    Sub userform1_activate()
    For each label in userform1.controls
    label.caption = "test"
    next
    End Sub

    Many thanks in advance
    L


  2. #2
    Tom Ogilvy
    Guest

    Re: Looping through controls

    Sub userform1_activate()
    For each ctrl in userform1.controls
    if typeof ctrl is MSForms.Label then
    ctrl.caption = "test"
    end if
    next
    End Sub

    --
    Regards,
    Tom Ogilvy

    "Libby" <Libby@discussions.microsoft.com> wrote in message
    news:2D2BF8AD-ED8E-49D1-BC69-77DBD6694E89@microsoft.com...
    > Hi
    >
    > How do you loop through the labels on a userform and ignore other controls
    > such as commandbuttons?
    >
    > When I try and do this using the code below, I find that all the controls
    > are included in the loop.
    >
    > Sub userform1_activate()
    > For each label in userform1.controls
    > label.caption = "test"
    > next
    > End Sub
    >
    > Many thanks in advance
    > L
    >




+ Reply to Thread

Thread Information

Users Browsing this Thread

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

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