+ Reply to Thread
Results 1 to 4 of 4

Object Array / Loop

Hybrid View

  1. #1
    mpeplow
    Guest

    Question Object Array / Loop

    In visual basic I could create and object arrary for the form objects and my code would look like this.

    for i = 1 to 10
         frmResults.ProgressBar(i).Max = frmResults.txtRedLine.Text
    next i
    In VBA it looks like this.

    'Set Progressbars RedLine (Max)
    frmResults.ProgressBar1.Max = frmResults.txtRedLine.Text
    frmResults.ProgressBar2.Max = frmResults.txtRedLine.Text
    frmResults.ProgressBar3.Max = frmResults.txtRedLine.Text
    frmResults.ProgressBar4.Max = frmResults.txtRedLine.Text
    frmResults.ProgressBar5.Max = frmResults.txtRedLine.Text
    frmResults.ProgressBar6.Max = frmResults.txtRedLine.Text
    frmResults.ProgressBar7.Max = frmResults.txtRedLine.Text
    frmResults.ProgressBar8.Max = frmResults.txtRedLine.Text
    frmResults.ProgressBar9.Max = frmResults.txtRedLine.Text
    frmResults.ProgressBar10.Max = frmResults.txtRedLine.Text
    'End Set Progressbars RedLine (Max)
    Is there anyway to make the VBA code more like the Visual basic code? I have not been able to find any information on creating object arrays on the userform.

  2. #2
    Forum Expert
    Join Date
    11-23-2005
    Location
    Rome
    MS-Off Ver
    Ms Office 2016
    Posts
    1,628
    Tr with this code:

       For i = 1 To 10
          frmResults.Controls("ProgressBar" & i).Max = frmResults.txtRedLine.Text
       Next
    Regards,
    Antonio

  3. #3
    mpeplow
    Guest
    SWEET! Seems to be working.

    I didn't know that I could add stuff like in the middle of a command line.

    This will be extremly useful!!

    THANKS!!!

    That just elimated countless pages of code. Thanks again!
    Last edited by mpeplow; 04-22-2007 at 03:33 PM.

  4. #4
    Forum Expert mikerickson's Avatar
    Join Date
    03-30-2007
    Location
    Davis CA
    MS-Off Ver
    Excel 2011
    Posts
    6,229
    Userform1.Controls(i) already indexes all the controls. But it doesn't split them out by type.

    What kind of control is Progress Bar1?

    I'll assume that ProgressBar1 is a name that you gave to the control. This should create an array of the controls, ProgressBars.
    Sub createProgressBarArray()
    Dim xControl As Object
    Dim ProgressBars() As Object
    Dim xIndex As Integer, j As Integer
    xIndex = 1
    ReDim ProgressBars(1 To 1)
    With UserForm1
        For Each xControl In .Controls
            If Left(xControl.Name, 11) = "ProgressBar" Then
                ReDim ProgressBars(1 To xIndex)
                Set ProgressBars(xIndex) = xControl
            End If
        Next xControl
        For xIndex = 1 To UBound(ProgressBars)
            For j = xIndex To UBound(ProgressBars)
                If Val(Mid(ProgressBars(xIndex).Name, 12)) > Val(Mid(ProgressBars(xIndex).Name, 12)) Then
                    xControl = ProgressBars(xIndex)
                    ProgressBars(xIndex) = ProgressBars(j)
                    ProgressBars(j) = xControl
                End If
            Next j
        Next xIndex
    End With
    End Sub

+ 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