+ Reply to Thread
Results 1 to 15 of 15

loop controls in userform except one textbox

Hybrid View

  1. #1
    Forum Expert royUK's Avatar
    Join Date
    11-18-2003
    Location
    Derbyshire,UK
    MS-Off Ver
    Xp; 2007; 2010
    Posts
    26,200

    Re: loop controls in userform except one textbox

    I pasted incorrectly in the first post, my code should be
    Private Sub CommandButton1_Click()
     Dim cCont As msforms.Control
    
        For Each cCont In Me.Controls
            With cCont
                Select Case TypeName(cCont)
                Case "ComboBox": .Value = ""
                Case "TextBox"
                    If .Tag = "" Then .Value = Empty
                Case "Label": .Caption = ""
                End Select
            End With
        Next cCont
    End Sub
    I can't really see why you need to clear labels

    Well spotted Marcol
    Last edited by royUK; 03-28-2010 at 04:30 AM.
    Hope that helps.

    RoyUK
    --------
    For Excel Tips & Solutions, free examples and tutorials why not check out my web site

    Free DataBaseForm example

+ 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