CAD Forum - tips, tricks, discussion and utilities for AutoCAD, Inventor, Revit and other Autodesk products [www.cadforum.cz]
CZ | EN | DE
Login or
registration
  Visitors: 7601

CAD tip CAD tip # 7644:

   
Question CAD 
 %  platform  category 
Q - question

Set the iProperty Standard for Inventor BOMs.

A - answer If you need to set the "Standard" for your custom parts in BOM, or add your own "standard" part to the Inventor Content Center, you may need to set or change its property "Standard" (Norm). While the standard iProperty dialog doesn't offer changing of this property, you can perform the change using the following simple VBA macro:
  
Sub SetStandard()  
  Dim oProp As Inventor.Property  
  Set oProp = ThisApplication.ActiveDocument.PropertySets _  
    ("{32853F0F-3444-11D1-9E93-0060B03C1CA6}")("Standard")  
  oProp.Value = InputBox("New value for Standard", , oProp.Value)  
End Sub  

Copy this macro (in the part environment) to the VBA code of the current document/part (Tools > Options > VBA Editor > DocumentProject > ThisDocument > View > Code (F7)) and run it with the arrow or with the F5 key.

Then include the iProperty "Standard" in you BOM (parts list).

Inventor
100% *  CAD 
13.11.2010    11067×  
Prices - CAD eShop:
applies to: Inventor ·

See also:
Tip 13611:BOM with multi-line items in Inventor.
Tip 4426:BOM in Inventor 10 sums values of similar parts.


Back   All CAD Tips



Have we helped you? If you want to support the CAD Forum web service, consider buying one of our CAD applications, or our custom software development offerings, or donating via PayPal (see above). You may also add a link to your web - like this "fan" link: CAD Forum - tips, utilities, blocks for Autodesk products
CAD:    OS:    Categ: 
Text:  FAQ glossary   



Featuring:
Increase your productivity with our set of add-on functions for AutoCAD Civil 3D
CADstudio Civil Tools More info


Please use these tips at your own risk.
Arkance Systems is not responsible for possible problems that may occur as a result of using any of these tips.
TOPlist