Description
Returns the path of application's EXE.
Property type
Read-only property
Syntax
Visual Basic |
---|
Public Property Path As String |
Example
The following example demonstrates how to return the Path property.
Dim myPath As String
myPath = Application.Path
MsgBox ("Path is: " & myPath)
End Sub