Showing 1- 10 of 466 questions
Why a User Parameter Might Not Delete
Referenced in Geometry or Features
Even if it looks unused, Inventor won’t let you delete a parameter if:
2.Linked to iProperties or BOM
if the parameter is mapped to an iProperty or exported to BOM, it may be retained.
3.Used in Expressions
Even indirect references (like Width = Length * 2) count as usage.
The SelectSet in an assembly can contain different types of objects: geometry, faces, edges, or ComponentOccurrences. To access a property value from a part inside an assembly, you need to:
You can write a VBA or VB.NET routine to replace the title block and border in an existing .idw file by copying them from a template drawing. This is especially useful for batch updates or enforcing company-wide standards.
If you're using the DWG Translator AddIn, you can configure it to export specific sheets. This is more advanced but gives you control over export settings.
Avoid MsgBox Immediately After Export Instead of:
vba
Call oDWGTranslator.SaveCopyAs(...)
MsgBox 'Export complete!'
Use a delayed notification or write to the status bar:
vba
Call oDWGTranslator.SaveCopyAs(...)
ThisApplication.StatusBarText = 'DWG export complete.'
Or use Debug.Print for logging:
vba
Debug.Print 'Export complete.
Yes, it’s absolutely possible to set DWG export options via VBA using Inventor’s TranslatorAddIn interface.
You can assign an existing layer to a SketchLine in a drawing (.idw) using VBA. The key is that layers in drawings are managed via the Layers collection on the DrawingDocument, and sketch geometry like SketchLine has a Layer property you can set directly.
Yes, you can access and control export parameters for DWG/DXF through VBA using the NameValueMap object, which acts as the configuration carrier for the export process.
Top Product with Questions
Have you used any product in this category?
Help others make informed decisions by reviewing your experience.
Add ReviewHelp the community
Be the First to Answer these questions
Disclaimer
Techjockey’s software industry experts offer advice for educational and informational purposes only. A category or product query or issue posted, created, or compiled by Techjockey is not meant to replace your independent judgment.
20,000+ Software Listed
Best
Price Guaranteed
Free Expert
Consultation
2M+
Happy Customers