AutoCAD Inventor :: Custom Property Link From Drawing To Part Breaks

Jul 14, 2012

I'm trying to see if I can write a rule that will link a custom property at the part level in a template and have it update when I copy the part and drawing to a new design.  Below is the formula I'm using and it works in the original files but when I use Design Assistant to create a copy for a new design, this formula will not update.

iProperties.Value("Custom", "Title")=Parameter("Bearing_#01.ipt.Build_Title")

View 5 Replies


ADVERTISEMENT

AutoCAD Inventor :: ILogic - Set Custom Property In Custom Content Center Part

May 16, 2013

When using Inventor with Vault, we have a problem when categorizing custom content center parts in Vault. In short, custom content center parts are incorrectly categorized as "Content Center" and automatically released - as there is no property that we can use to identify these files.

I need iLogic code to trigger when custom content center files are created/saved, wich adds the following custom iproperty "IsCustomContentCenter=True".

View 1 Replies View Related

AutoCAD Inventor :: Make Part Number To Be A Custom Property ILogic?

Oct 31, 2013

I have a part number that i want to defined in custom properties.

Then would it be possible to call it out in Ilogic? that way in any drawing doesn't matter where the part number will always be the same for that part when i balloon and the same in the BOM.

View 4 Replies View Related

AutoCAD Inventor :: Getting A Drawing Border To Act On A Modified Custom Property

Feb 20, 2012

The company I work for produce drawings for various types of fabrication.

Using Inventor I have a drawing border in which tolerance values change depending on the type of fabrication to be produced. The type of fabrication (0,1,2,or 3) is designated by a custom property entered during part/fab model creation.

This property may change depending on various production factors. The issue I have is how do I get the border to recognize this potential change in fab type and populate the tolerance fields with the necessary information? 

View 3 Replies View Related

AutoCAD Inventor :: Restore Link Between Part / Assembly And Drawing

Jan 21, 2013

I wanted to know if there is a way to restore the link between a part/assembly and a drawing so that the drawing will open when "Open Drawing" is selected from right clicking the part/assembly from the Model browser in Inventor.

View 1 Replies View Related

AutoCAD .NET :: How To Get Custom Property Names / Values From Custom Property Bag

Sep 15, 2011

I have been trying to find a method to extract custom properties from the custom property bag.

I have been able to extract the property value, using the "GetProperty" and the associated "GetValue" method, this method works when I know exactly what property name I am looking for. What do you do when you don't know the property name?

here is my code snippet..

dim myProps as acsmcustompropertybag = mysheet.getcustompropertybag
dim myProp as iacsmcustompropertyvalue = myprops.getproperty("SOMENAME")
dim myPV as string = myProp.GetValue

what I want to do is:

dim myProps as acsmcustompropertybag = mysheet.getcustompropertybag
dim myPN as string = ??????????.tostring
dim myProp as iacsmcustompropertyvalue = myprops.getproperty(myPN)
dim myPV as string = myProp.GetValue

View 6 Replies View Related

AutoCAD Inventor :: How To Link Part Feature In One Part To Another

Jun 21, 2012

Very new to inventor 2012 coming form solid edge way back in the day (1998 to 2008)  to autocad 2d. getting ready to move to the inventor and trying to figure out some things.  searched videos , training etc but not even sure what to call it.

My questions are:

1. I design stamping dies and I will want to build sections from a stock strip with the outside then adding hole, dowels etc.  what is the best work flow for this? It is kinda the middle between top down and bottom up. 

2. what is the best work flow for adding counter bore , dowel in the block and then having this tied to the mating block so if I move the location of the holes in the block then move as well?

View 5 Replies View Related

AutoCAD Inventor :: Sketched Symbol With Custom Property

Nov 30, 2011

I am trying to create a sketched symbol on the fly that has custom properties in it. I am also creating the custom properties on the fly. I need to get the actual expression for the property into the sketched symbol not just a value. I need this so that I can export the drawing as an autocad .dwg that has attributes in it.

View 3 Replies View Related

AutoCAD Inventor :: Custom Property Format In ILogic

Sep 21, 2011

I would like to set the custom property format for all user paramters from an iLogic code. This is what I've come up with. It runs, but it does not seem to alter the custom property format. What am I doing wrong here?

DimoPartDocAsPartDocument
oPartDoc=ThisApplication.ActiveDocument
DimoParameterAsParameter
ForEachoParameterInoPartDoc.ComponentDefinition.Parameters
oParameter.ExposedAsProperty=True
ShowUnitString=True
ShowLeadingZeros=True
ShowTrailingZeros=False
Precision=kTwoDecimalPlacesPrecision
NextoParameter

i7-2720QM Dell Precision M6600, Win 7 Pro 64-bit, 8GB RAM
Autodesk Product Design Suite Ultimate 2013
Autodesk Vault Professional 2013

View 9 Replies View Related

AutoCAD Inventor :: Custom Property Format Default?

Oct 25, 2013

In the parameters window you can right click a value and choose a custom property format.

We always change everything to fraactional instead of decimal.

Is there a way to set this as default?

View 6 Replies View Related

AutoCAD Inventor :: Keeping Custom Property Date Blank

Mar 22, 2013

My company has a custom property named 'Released date, Type Date.

This date is still empty

I am working on a rule that adds all the custom properties required for the company title block.

This rule can be useful whenever you get a model from a supplier.

I can add a custom property date using the following

Dim oDoc As Document = ThisApplication.ActiveDocument
Dim customPropertySet As PropertySet = oDoc.PropertySets.Item("Inventor User Defined Properties")
Try
iProperties.Value("Custom", "Released Date") = iProperties.Value("Custom", "Released Date")
Catch

[Code]...
 
This code works but sets the released date to Now.

But the release date needs to remain blank when adding.

I tried to make the value Null but I get the error:

"Value of type 'System.DBNull' cannot be converted to 'Date'."

Is there a way to keep a custom property date blank?

View 2 Replies View Related

AutoCAD Inventor :: Change Custom Property Format From Assembly Level

Apr 8, 2013

I have a frame fabrication / assembly with a Custom iProperty called "FINISHED MATERIAL SIZE". I have set the following parameter for this property:

FINISHED MATERIAL SIZE = <Stock Number> x <G_L>mm

This returns the stock size and length to my drawing cutlist. The problem is that the <G_L> Parameter returns the trailing zeros and unit string.

I would like to set all the frame members in the assembly such that the G_L parameter returns a value rounded off to 0 decimal places with no trailing zeros and removes the unit string as well.

Is there a way I can achieve this from the assembly so I don't have to manually open each frame member and make the changes in the fx parameters dialog one at a time?

View 3 Replies View Related

AutoCAD Inventor :: Model Custom Property To Sketch Symbol Definition

Sep 29, 2011

How would i insert the "variable name" of a custom iProp to a sketched symbol definition (in an idw)?

I can plonk the value of the iProp in no worries, but to make it "live" is a bit beyond me...

 Sub WeldNote()On Error Resume NextDim oDoc As DrawingDocumentDim SketchedSym As SketchedSymbolDefinitionDim oNoteDef As SketchedSymbolDefinitionDim oDefSketch As SketchDim oTextbox As TextBoxDim SNewText As StringDim sNoteText As StringDim oReffedDoc As DocumentDim lReffedWeldType As Long'Err.ClearIf

[Code].....

View 9 Replies View Related

AutoCAD Inventor :: How To Set Default Unit String Unchecked In Parameters Custom Property Format

Aug 24, 2013

I have generated frame that has 100 members in it. Is there a quicker way of changing G_L unit to a mm so that I don't have to go into all 100 parts to change the custom properties? also I do not need unit string to be appear in my BOM.

View 2 Replies View Related

AutoCAD Inventor :: Cannot Save CC Part As Custom Part

Sep 13, 2012

I use inventor 2012. In some projects the cc parts cannot be saved as a custom part (error message: Unable to create component), but in some project it works. I checked all projects settings are same.

View 2 Replies View Related

AutoCAD Inventor :: Saving One Drawing Property As Another

Mar 12, 2013

If I have my username set in Inventor (Application options>General tab) as F Last (First initial, last name), is there a way, for drawing purposes, that I can take that property, extract my initials (FL, with no space), and save that as a new property in the drawing? I'd like to have a "By" column in my revision table that will be my initials that are extracted from that username property.

View 2 Replies View Related

AutoCAD Inventor :: Link One Part File Dimension To Another Part File?

Jul 6, 2012

Is it possible to link one part file dimension to another part file?

1. Part first is a cylinder in parametric table i changed it,s name OD , ID  and thk. ( find attachment )

   Cylinder ID is ( ID=105)

2. Then i made 2 nd part whose step od ( od=102) is going to insert in to cylinder id.There is 3 mm clerance every time 

3. So i have to make equction in 2 nd part that ( Step OD= ( ID-3).

means next time when i will change ID of cylinder OD of 2 nd part will ger changed automatically minus by 3 mm than id of cylinder.

View 3 Replies View Related

AutoCAD Civil 3D :: 2013 Install Breaks Custom Reports In 2011

Jul 5, 2012

We have 2011 installed have customized some of the .XSL reports in ProgramDataAutodeskC3D 2011enuDataReportsxsl

After installing 2013, the %ReportDir% variable for 2011 is pointing to the 2013 install, where the reports have NOT been customized. So when you run a report in 2011, it is using the XSL files in the 2013 location.

So the long and the short of it is the 2013 install broke our 2011 custom reporting ability.how to control the %ReportDir% variable in 2011?

[URL]

View 5 Replies View Related

AutoCAD Inventor :: Unresolved Link To Deleted Part

May 31, 2011

I was recently updating an assembly which contained a part that had been subsequently deleted from my folders. I skipped it while opening the assembly, then deleted the part in the Model Tree (and replaced it with a different component). So, to summarize, the assembly no longer has the part in the Tree, and the part does not exist anymore on my system. These parts and assemblies have not been Vaulted, so that should not be an issue either.

My problem is that every time I open the assembly, it wants me to resolve this deleted part, and I have to skip it every time just to proceed. Once the file is loaded, I get no other issues, no "red cross" items, just a question mark next to the file name at the top of the Tree indicating that the file needs to be resolved.

The old part is gone; I tried recreating it using the same file name, and using the same third-party SAT file from which it was originally generated, but Inventor detects that it's not the original part and won't accept it.

How to get past this "part resolution" issue?

Autodesk Product Design Suite Premium 2013
Inventor 2013 64-bit Edition
Win7-64, 8-core Intel® Xeon® CPU W3550 @ 3.07GHz
NVIDIA GeForce GTX 560 Ti
454 GB HD, Intel® ICH10R SATA AHCI Controller
SpaceNavigator, 3.14.2 / 6.14.0 / 3.18

View 6 Replies View Related

AutoCAD Inventor :: Changing Derived Part Link

Jan 26, 2011

Is it possible to change the derived part link to another part like you would replace a component in an assembly?  My issue is that i created a part and used a derived part within.  Well this part number changed and it just so happens that the derived part needs to change as well.  I tried the design assistant, and changed the link there but it didnt seem to want to take.  I tried renaming the derived part, and opening the file...i get the error but i still am unable to change the link that way either. 

Autodesk Inventor 2011

View 9 Replies View Related

AutoCAD Inventor :: Change Frame Link To Normal Part

Feb 27, 2012

I have several frames built by Frame Generator in project.

Than one frame has been diminished much while design so I use just several frame links just like parts without skeleton.

Those frame links I have renamed since I have several copies and I would like to have unique name. Now when I start the assembly consisting those links Inventor naturally inquires about missing files.

I show to renamed one and everything works ok except when I start the file again it asks again nevertheless file has been saved. Inventor still remember this frame link names as it used to be in browser and does not accept replacement.  

[URL]........

I wish I must not rebuild those parts from scratch again. Therefore I have two questions

Is it possible to save this frame part as normal part (save as does not do it) ?
Is  there some other way to get rid of Frame Generator status of some part built by Frame Gen?

View 1 Replies View Related

AutoCAD Inventor :: How To Link IPart Members Into New Part File

Aug 7, 2013

I have facing issue to link the ipart members in to the new part.

for example, i have one machining part that machining part showing  make from number. so, i created make from first. it has 10 instance.using iPART i created 10 members.after that i need to be do the machining.machining drawing also having 10 members. How i call the each make from members in to the machining model.

View 7 Replies View Related

AutoCAD Inventor :: Link Hole Feature In A Part In Assembly?

Feb 22, 2012

I am trying to link a hole feature in a part in an assembly with the number of a particular feature in another part within the assembly. I have a base plate part with a coutersunk hole feature that I want to pattern by linking it to the number of bosses in another part within the same assembly.

View 6 Replies View Related

AutoCAD Inventor :: Drawing Of Part Made From Driven Part

Oct 4, 2012

To create my new  part, i used the deriven part of another part, and used only ‘Body as work surface’ before inserting in my new part.

When I create the drawing of my new part, why is it that I still see all the ‘Body work surfaces’ of the direven part?

When I make it on my other computer  I dont see it... so it is surely an option…

View 1 Replies View Related

AutoCAD Architecture :: Dynamic Link Between Property Set Definitions And Excel

Nov 12, 2013

Any way to create a dynamic link between the property set attached to a space and excel?

I have a lots of spaces that has a property set attached, some of this property changes often. So if it was possible to create a excel sheet that presents each property for each space and then I could change the property in excel and put it back to Architecture it would save me a lot of time.

View 1 Replies View Related

AutoCAD Inventor :: How To Link BOM In One Drawing

Jun 8, 2012

I have a situation where I have my master BOM that is shown on sheet 1 of my drawing that represents everything shown on the drawing.  What I am running into is I have to detail a couple of sub-assemblies as details on the drawing.

What I do is bring in views from that sub assembly seperate from the main assembly, but the problem is those items dont show up in the main BOM.  I end up having to drag in a second BOM that I place off of the drawing sheet as well as adding line items in the main BOM to represent these components in the sub assembly.  Then manually change the items numbers in the second BOM to match the iotem numbers in the main BOM.  What I would like to know is if it is at all possible to link the two BOM's together so I can change the item numbers in the main BOM and it funnels down to the second BOM.

View 9 Replies View Related

AutoCAD Inventor :: Change A Drawing Link?

Mar 13, 2012

Been wondering, if a part that I create, make a drawing for and save, can I take the part, save as, and then take the drawing, save as, and re-link the drawing to the newly 'saved as' IPT?

View 2 Replies View Related

AutoCAD Inventor :: Set Up A Custom Part Library?

Dec 19, 2013

We produce a piece of equipment with numerous parts and assemblies that we would like to use as a base model. We do not or will ever use vault so I'm trying to come up with a library/content center area where I can store the parts and assemblies that then can be inserted into new assemblies which would create a completely new design based on existing parts. My problem is lack of experience in setting up a good library/ content center area, I do not know what would be an acceptable plan of attack, right now I have moved the complete assembly onto the server in its own location but this is where I get stumped.

View 1 Replies View Related

AutoCAD Inventor :: How To Remove An Unresolved Link In A Drawing

Jan 27, 2012

I have drawings I reuse for different designs. I sometimes insert a parameter value from a part into a drawing dimension for different reasons. When I copy these drawings and no longer reference that particular part, the dimensions in question get deleted by turning off the "Preserve Orphan Annontations", but the fact that the dimension that referenced the parameter value is deleted does not affect the link, and the drawing tells me there are still unresolved parts! Is there someway to remove these references from the drawing? I can write a macro if I have to, just not sure if there is some other way to do this, or even if a macro can do this? I can apparently just pick some other part in the job that doesn't even have that parameter and the unresolved warning goes away, but is that sufficient? I would think an option in the resolve file dialog should let you delete the reference instead? Using IV2012.

View 2 Replies View Related

AutoCAD Inventor :: Custom Iproperties Within Part File

Sep 18, 2012

we have a part file that has 2 custom iproperties in it.

Length and Width.

If I delete these properties its fine and the properties are removed.

However if I then save the file, the properties become available again.

View 3 Replies View Related

AutoCAD Inventor :: Copy Custom Iproperties From One Part To The Other?

Mar 23, 2012

Copy custom iproperties from one part to the other - possible?

View 6 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved