Message 1 of 6
project name change using macro
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
this macro is to change the project name in a part document
Public Sub GetPropertySample()
' Get the active document.
Dim invDoc As Document
Set invDoc = ThisApplication.ActiveDocument
' Get the part number property.
Dim invProjectProperty As Property
Set invProjectProperty = invDoc. _
PropertySets.Item("Design Tracking Properties").Item("Project")
invProjectProperty.Value = "wall unit"
End Sub
i need to change the project name for whole assembly by using one macro.
example my assembly contains 10 parts. this 10 parts project name should be "wall unit"
Can anyone help to create this kind of macros....
Thanks in advance.