Path Property

Applies To

Binder object.

Description

Returns the complete path and file name of the specified binder. Read-only String.

See Also

DefaultFilePath property.

Example

This example prompts the user for the name of a binder to open, and then it confirms the choice by displaying the path of the specified binder.

myBinder = InputBox("Type the name of the binder you want to open")
Set myBinder = GetObject(myBinder, "OfficeBinder.Binder")
MsgBox "The binder you specified is located in " _
    & myBinder.Path