VBProject Property

Microsoft Word Visual Basic

VBProject Property

       

Returns the VBProject object for the specified template or document.

expression.VBProject

expression   Required. An expression that returns one of the objects in the Applies To list.

Remarks

Use this property to gain access to code modules and user forms.

To view the VBProject object in the object browser, you must select the Microsoft Visual Basic for Applications Extensibility check box in the References dialog box (Tools menu) in the Visual Basic Editor.

Example

This example displays the name of the Visual Basic project for the Normal template.

Set normProj = NormalTemplate.VBProject
MsgBox normProj.Name

This example displays the name of the Visual Basic project for the active document.

Set currProj = ActiveDocument.VBProject
MsgBox currProj.Name

This example adds a standard code module to the active document and renames it "MyModule."

Set newModule = ActiveDocument.VBProject.VBComponents _
    .Add(vbext_ct_StdModule)
NewModule.Name = "MyModule"