Hide Table of Contents

Start, Update, and Stop Progress Indicator Example (VBA)

This example shows how to create, start, update, and stop a progress indicator on the SOLIDWORKS status bar.

'----------------------------------------------------------------------------
' Preconditions:
' 1. Create a VBA macro in SOLIDWORKS.
' 2. Right-click the macro project name in the Project Explorer and click
'    Insert > UserForm
.
' 3. Modify UserForm1 (UserForm) to look like this:

   

' 4. Copy Forms - UserForm1 into UserForm1 (Code).
' 5. Modify control_name in the control_name_Click subroutine names to
'    match your form.
' 6. Right-click the macro project name and click Insert > Module.
' 7. Copy Modules into the new module.
'
' Postconditions: 
' 1. Shows a dialog box.
' 2. Click Start.
'    * A progress indicator appears on the SOLIDWORKS status bar.
'    * The progress indicator increments to 100% completion.
' 3. Click Update repeatedly to increment the progress indicator in steps of
'    10.
' 4. Inspect the Immediate window to see the return code after each update.
' 5. Type a new title and click Update Title.
'    * The progress indicator title changes.
' 6. Click Stop to remove the progress indicator from the SOLIDWORKS status bar.
' 7. Click Exit to close the dialog box.
' ---------------------------------------------------------------------------

Forms - UserForm1

Dim swApp As SldWorks.SldWorks
Dim pb As SldWorks.UserProgressBar
Dim Position As Long
Dim lRet As Long
Dim retVal As Boolean
Dim boolstatus As Boolean

 

Public Sub cmdExit_Click()

    Unload Me

End Sub

 

Public Sub cmdPBTitle_Click()

    retVal = pb.UpdateTitle(TextBox1.Text)

End Sub

 

Public Sub cmdStartPB_Click()

    boolstatus = pb.Start(0, 160, "Status")
    Do While Not (Position = 160)
        Position = Position + 10
        lRet = pb.UpdateProgress(Position)
    Loop

    Position = 0
End Sub

 

Public Sub cmdStopPB_Click()

    pb.End

End Sub

 

Public Sub UserForm_Initialize()

    Set swApp = Application.SldWorks

    retVal = swApp.GetUserProgressBar(pb)

End Sub

 

Public Sub cmdUpdatePB_Click()

    Position = Position + 10

    If (Position = 160) Then Position = 0

    lRet = pb.UpdateProgress(Position)

    If lRet <> 2 Then

        Debug.Print " Result " & lRet

    Else

        MsgBox " User pressed Esc to cancel ", vbInformation, " API"

        pb.End

        End

    End If

End Sub

 

Back to top

Modules

Dim swApp As SldWorks.SldWorks
Sub main()
    UserForm1.Show vbModeless
End Sub

Back to top



Provide feedback on this topic

SOLIDWORKS welcomes your feedback concerning the presentation, accuracy, and thoroughness of the documentation. Use the form below to send your comments and suggestions about this topic directly to our documentation team. The documentation team cannot answer technical support questions. Click here for information about technical support.

* Required

 
*Email:  
Subject:   Feedback on Help Topics
Page:   Start, Update, and Stop Progress Indicator Example (VBA)
*Comment:  
*   I acknowledge I have read and I hereby accept the privacy policy under which my Personal Data will be used by Dassault Systèmes

Print Topic

Select the scope of content to print:

x

We have detected you are using a browser version older than Internet Explorer 7. For optimized display, we suggest upgrading your browser to Internet Explorer 7 or newer.

 Never show this message again
x

Web Help Content Version: API Help (English only) 2016 SP05

To disable Web help from within SOLIDWORKS and use local help instead, click Help > Use SOLIDWORKS Web Help.

To report problems encountered with the Web help interface and search, contact your local support representative. To provide feedback on individual help topics, use the “Feedback on this topic” link on the individual topic page.