Skip to content

Latest commit

 

History

History
60 lines (35 loc) · 1.2 KB

Word.Application.StartupPath.md

File metadata and controls

60 lines (35 loc) · 1.2 KB
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
Application.StartupPath property (Word)
vbawd10.chm158335059
vbawd10.chm158335059
Word.Application.StartupPath
1b73f234-358b-a360-ca69-ed00e0817038
06/08/2017
medium

Application.StartupPath property (Word)

Returns or sets the complete path of the startup folder, excluding the final separator. Read/write String.

Syntax

expression. StartupPath

expression An expression that returns an Application object.

Remarks

Templates and add-ins located in the Startup folder are automatically loaded when you start Word.

Example

This example displays the complete path of the Startup folder.

MsgBox Application.StartupPath

This example enables the user to change the path of the Startup folder.

x = MsgBox("Do you want to change the startup path?", vbYesNo, _ 
 "Current path = " & Application.StartupPath) 
If x = vbYes Then 
 newStartup = InputBox("Type a startup path") 
 Application.StartupPath = newStartup 
End If

See also

Application Object

[!includeSupport and feedback]