Message 1 of 5
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hi, I was wondering if it is possible to open all the idw files from an assambly?
I know it is possible for parts but I dont know how to do it for idw files.
'Define the open document Dim oDoc As Document oDoc = ThisDoc.Document 'Look at all of the files referenced in the open document Dim docFile As Document For Each docFile In oDoc.AllReferencedDocuments 'open the indexed file 'true opens the file normaly 'false opens the file programatically without generating the graphics ThisApplication.Documents.Open(docFile.FullFileName, True) Next
this code opens all the parts in an assambly.
Solved! Go to Solution.