find references macro
find references macro
(OP)
does anyone know of a macro that will find the references and copy the files for a part? Its rather tedeous to have to go through every part and do it manually.
When was the last time you drove down the highway without seeing a commercial truck hauling goods?
Download nowINTELLIGENT WORK FORUMS
FOR ENGINEERING PROFESSIONALS Come Join Us!Are you an
Engineering professional? Join Eng-Tips Forums!
*Eng-Tips's functionality depends on members receiving e-mail. By joining you are opting in to receive e-mail. Posting GuidelinesJobs |
|
RE: find references macro
In your assembly you can click File, find references, and then copy the files. This is very easy.
dsgnr1
¿)
At some point you just have to shoot the engineer and build the dang thing.
RE: find references macro
RE: find references macro
Have you looked at the faq's under vb or programming or whatever they're calling it now?
Have you searched this forum for links to sample code?
these things (unlike my first reply) may help.
regards,
dsgnr1
¿)
At some point you just have to shoot the engineer and build the dang thing.
RE: find references macro
Sounds like what you want need is PDMWorks.
Flores
SW06 SP2.0
RE: find references macro
1) Use "getDependencies2" method to return an array of all referenced documents in the assembly
2) Using your preferred VB copy method (FSO works well), use the names obtained in step 1 (odd numbered elements will be the full path names if you start at 0) to copy the files where you want them to go
Loop through it again to copy multiple assemblies.
RE: find references macro