Hide Table of Contents

Change PhotoWorks Search Paths Example (VBA)

This example shows how to change the paths that PhotoWorks searches for missing files.

 

'------------------------------------------

'

' Preconditions: The PhotoWorks add-in is loaded.

'

' Postconditions: The list of paths that PhotoWorks searches for

'                 missing files is changed.

'

'---------------------------------------------

Option Explicit

 

Dim swApp As SldWorks.SldWorks

 

Sub main()

    

    Dim pwAddIn                 As PhotoWorks.PhotoWorks

    Dim pwopt                   As PhotoWorks.PwOptions

    Dim bRetVal                 As Boolean    

    

    ' Get the SolidWorks application

    Set swApp = Application.SldWorks

    

    ' Get the PhotoWorks add-in

    Set pwAddIn = swApp.GetAddInObject("PhotoWorks.PhotoWorks")

   

    ' Get the PhotoWorks options

    Set pwopt = pwAddIn.PwOptions()

    

    ' Print current settings to the Visual Basic Immediate window

    PrintFolders pwopt

    

    '

    ' Change search paths

    '

    

    ' Clear the list of search paths

    bRetVal = pwopt.ClearSearchPathList

    

    ' Add new search paths

    

    ' Existing folder

    bRetVal = pwopt.AddSearchPath("C:\")

    

    ' Non-existing folder

    bRetVal = pwopt.AddSearchPath("C:\Nonexisting folder")

    

    ' Folder that may or may not exist

    bRetVal = pwopt.AddSearchPath("C:\temp")

    

    ' Folder that may or may not exist

    bRetVal = pwopt.AddSearchPath("C:\tmp")

    

    ' Existing folder

    bRetVal = pwopt.AddSearchPath("C:\windows")

    

    ' Print current settings to Visual Basic Immediate window

    PrintFolders pwopt    

    

End Sub

 

Sub PrintFolders(ByRef pwopt As PhotoWorks.PwOptions)

    Dim vSearchFileList         As Variant

    Dim lPathItr                As Long

    

    Debug.Print "File Locations:"

    Debug.Print "  Search paths:"

    Debug.Print "    Number of serach paths = " & CStr(pwopt.GetSearchPathListCount)

    If pwopt.GetSearchPathListCount > 0 Then

        

        vSearchFileList = pwopt.GetSearchPathList()

        

        For lPathItr = LBound(vSearchFileList) To UBound(vSearchFileList)

            Debug.Print "      " & vSearchFileList(lPathItr)

        Next lPathItr

 

    End If

    

    Debug.Print "    Search sub-folders = " & CStr(pwopt.SearchSubFolders)

    

End Sub



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:   Change PhotoWorks Search Paths 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) 2010 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.