+ Reply to Thread
Results 1 to 2 of 2

Dynamic Labels in Form

Hybrid View

  1. #1
    Registered User
    Join Date
    04-16-2015
    Location
    India
    MS-Off Ver
    2010
    Posts
    5

    Dynamic Labels in Form

    I have a Userform that has the following structure

    Label1 TextBox1
    Label2 TextBox2
    .
    LabelN TextBoxN

    I am currently creating all labels in the form and hiding/displaying as per requirement. On an event - I collect the details in all the defined textboxes

    If I want to dynamically create the labels&Textboxes and then cycle through the textboxes / labels and extract content - How could I do it ?

    Do let me know

  2. #2
    Forum Guru Kyle123's Avatar
    Join Date
    03-10-2010
    Location
    Leeds
    MS-Off Ver
    365 Win 11
    Posts
    7,239

    Re: Dynamic Labels in Form

    You can add controls to a form like this:
    Private Sub UserForm_Initialize()
    
        Dim x As Long
    
        For x = 1 To 5
            With Me.Controls.Add("Forms.Textbox.1")
                .Width = 50
                .Top = (.Height * x) - .Height
            End With
        Next x
        
    End Sub
    And loop through like this:
    Private Sub CommandButton1_Click()
    
        Dim tb As msforms.TextBox
        Dim ctl As Object
        
        For Each ctl In Me.Controls
            If TypeOf ctl Is msforms.TextBox Then
                Set tb = ctl
                Debug.Print tb.Text
            End If
        Next ctl
        
    End Sub

+ 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. Replies: 2
    Last Post: 04-05-2014, 06:46 PM
  2. Dynamic Name Labels
    By comparini3000 in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 06-14-2006, 06:00 PM
  3. Dynamic Data Labels
    By NicB. in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 04-07-2006, 02:40 PM
  4. Dynamic Labels
    By coa01gsb in forum Excel Formulas & Functions
    Replies: 4
    Last Post: 03-02-2006, 11:35 AM
  5. Dynamic chart labels
    By dano in forum Excel Charting & Pivots
    Replies: 1
    Last Post: 06-22-2005, 08:05 PM

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