Message 1 of 6
Update threads in an old part to the current design data (thread.xls)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
At some point in time we customised thread.xls in the design data. The value we changed is Tap Drill Diameter.
Now and then we run into an older part. Changes to thread size of new features in the old part still use tap drill diameter dimensions according old design data. So, it seems the thread information is stored somewhere in the part file.
Changing the tap drill diameter for the one hole isn't really that hard:
Dim pDoc As PartDocument
Set pDoc = ThisApplication.ActiveDocument
Debug.Print pDoc.ComponentDefinition.Features.HoleFeatures.item(1).TapInfo.TapDrillDiameter
But I'd like to be able to update these old parts to the new table. Can't for the life of me find where this information is stored.