+ Reply to Thread
Results 1 to 2 of 2

Progress Meter Help

Hybrid View

  1. #1
    Forum Contributor
    Join Date
    09-26-2010
    Location
    Australia
    MS-Off Ver
    Excel 2003
    Posts
    182

    Question Progress Meter Help

    I am trying to insert a popup form with a progress meter so when I click on a command button on my workbook that saves the workbook to a folder it makes the popup progress meter appear but how do I get it to activate when I click the command button

    I have created the popup form with the meter and have inserted the following code in the userform

    Private Sub UserForm_activate()
        Call Main
    End Sub

    Sub Main()
    '   Inserts random numbers on the active worksheet
        Dim Counter As Integer
        Dim RowMax As Integer, ColMax As Integer
        Dim r As Integer, c As Integer
        Dim PctDone As Single
        
        If TypeName(ActiveSheet) <> "Worksheet" Then Exit Sub
        Cells.Clear
        Application.ScreenUpdating = False
        Counter = 1
        RowMax = 100
        ColMax = 25
        For r = 1 To RowMax
            For c = 1 To ColMax
                Cells(r, c) = Int(Rnd * 1000)
                Counter = Counter + 1
            Next c
            PctDone = Counter / (RowMax * ColMax)
            With UserForm1
                .FrameProgress.Caption = Format(PctDone, "0%")
                .LabelProgress.Width = PctDone * (.FrameProgress.Width - 10)
            End With
    '       The DoEvents statement is responsible for the form updating
            DoEvents
        Next r
        Unload UserForm1
    End Sub
    This code is placed in a module

    Sub ShowDialog()
        UserForm1.LabelProgress.Width = 0
        UserForm1.Show
    End Sub

  2. #2
    Forum Expert pike's Avatar
    Join Date
    12-11-2005
    Location
    Alstonville, Australia
    MS-Off Ver
    2016
    Posts
    5,342

    Re: Progress Meter Help

    Hi Mooseman

    The john Walkenback progress meter go's like
    in sheet code for command button in sheet
    Private Sub CommandButton1_Click()
        UserForm1.Show
    End Sub
    in userform

    Private Sub UserForm_activate()
        Call Main
    End Sub
    in module
    Sub Main()
    '   Inserts random numbers on the active worksheet
        Dim Counter As Integer
        Dim RowMax As Integer, ColMax As Integer
        Dim r As Integer, c As Integer
        Dim PctDone As Single
        
        If TypeName(ActiveSheet) <> "Worksheet" Then Exit Sub
        Cells.Clear
        Counter = 1
        RowMax = 200
        ColMax = 25
        For r = 1 To RowMax
            For c = 1 To ColMax
                Cells(r, c) = Int(Rnd * 1000)
                Counter = Counter + 1
            Next c
            PctDone = Counter / (RowMax * ColMax)
            Call UpdateProgress(PctDone)
        Next r
        Unload UserForm1
    End Sub
    
    Sub UpdateProgress(Pct)
        With UserForm1
            .FrameProgress.Caption = Format(Pct, "0%")
            .LabelProgress.Width = Pct * (.FrameProgress.Width - 10)
            .Repaint
        End With
    End Sub
    If the solution helped please donate to RSPCA

    Site worth visiting: Rabbitohs

+ 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