AutoCAD Inventor :: How To Change G_L Parameter From Decimal To Fraction

Dec 2, 2011

How to change the G_L parameter from decimal to fraction (1/16)? I've attached some screenshots.

View 9 Replies


ADVERTISEMENT

AutoCAD Inventor :: Dimensioning - Decimal / Fraction

Nov 14, 2011

Is there a way that i can Double Dimensioning? as to have one dimension in decimal and one in fraction all in the same dimension line?

 Im using 2011 RS

View 1 Replies View Related

AutoCAD Inventor :: Rounding Decimal Dimensions To Nearest Fraction

Dec 9, 2011

Way to round decimal dimension values to the nearest 1/16"? For instance, 43.0599 would display as 43.0625 (On a drawing). Tried playing with tolerances, but thought it would be better addressed as customization.

View 7 Replies View Related

AutoCAD Inventor :: How To Change Decimal Separator In Fx Parameters

Aug 31, 2011

How do change the decimal separator from point to comma(in model and FX-parameter)

View 1 Replies View Related

AutoCAD Inventor :: Ipart - Standard Parameter Column Change Depending On Custom Parameter Column

Jan 3, 2013

I am trying to publish to the CC a guide rail. The vendor of the rail gives me the option of entering the desired length of the rail. After that he gives me the option to choose between the length that I entered and a shorter and longer standard length witch can be delivered faster.

I want to do the same thing with my published part, but I cannot make a key parameter to change depending on the entered custom parameter. I want the user to make the next steps when inserting from the CC: 1- select the size of the rail; 2-select the type of the rail; 3- enter the desired length of the rail; 4- choose between the desired length and the 2 recommended lengths (I need these 3 lengths to be shown)

Is this possible?

View 9 Replies View Related

AutoCAD Inventor :: ILogic Function To Change Decimal Marker From Full Stops To Commas

Apr 5, 2013

e.g. 25,00mm instead of 25.00mm.

I have a huge list of drawings I need to apply this update to.  Updating Styles isn't really an option as we haven't enough consistency in the styles we have used.

Inventor 2013 Certified Professional

Autodesk Inventor Professional 2011
Windows 7 Enterprise, 64-bit

View 3 Replies View Related

AutoCAD Inventor :: Change Drawing Scale With ILogic Upon Parameter Change

Jul 8, 2013

I have a spreadsheet and iLogic driven mater assy to generate different iterations.

I would like to change the scale of a base view on a drawing based on a parameter in my assembly. The idea is to get iLogic to change the view using a simple If / Else statement.

This is what I tried:

If Parameter("0 Generic Assembly v2.2.iam.BP") < 1570 Then
ActiveSheet.View("VIEW1").Scale = 1/8
Else
ActiveSheet.View("VIEW1").Scale = 1/10
EndIf

So basically the value of "BP" parameter (excel parameter in my assy) would drive the scale of the views. But its not working. Is it actually a sensible method? Can I use in the drawing environment the excel parameters in my assembly?

This is the error message I get when the rule is run:

"Error in rule: View Scale, in document: 0 Generic Assembly v2.2.idw

Unspecified error (Exception from HRESULT: 0x80004005 (E_FAIL))" 

Also using the same thinking I use iLogic to populate the drg number field on the drawing based on an excel parameter. The rule works but does not always updates the drawing no upon the parameter change or update/rebuild commands.

View 1 Replies View Related

AutoCAD Inventor :: How To Change G_L Parameter From In To Mm

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 9 Replies View Related

AutoCAD Inventor :: Using ILogic To Change Parameter

Mar 26, 2013

When I import a part from content center, a tube in this case, I get a length parameter called <PL>.

I am using this parameter in the parts lists, so it shows "=Outer diameter x thickness x <PL>"

However I don't want trailing zeros, leading zeros or units string to be shown.

I know I can open the parameters window, right click the parameter, then click custom property format and then uncheck these boxes and its fine.

But I want to know if there is a smarter way to do this, like creating a rule to execute on all the parts?

I have around 500 pipes with the parameter <PL> that needs to be changed.

View 6 Replies View Related

AutoCAD Inventor :: Change Parameter From Selected Part

Jul 26, 2012

this code works for parts. But how to change it that it works for assembly? I would like to select a part and than change the value.

m_invApp = GetObject(, "Inventor.Application")
' Get the Parameters object. Assumes a part or assembly document is active.
Dim oParameters As Parameters
oParameters = m_invApp.ActiveDocument.ComponentDefinition.Parameters
[code]........

View 5 Replies View Related

AutoCAD Inventor :: ILogic Change Parameter In Any Part That Is Not A Component

Oct 1, 2013

The commented code does not work. I want to be able to open a part and change its size parameters before i open the assembly. this code will run as an external rule in a new empty file. 

If i can do it without opening the part, that is even better. Test can I open a part, change a param, then close part.

Dim fname As String
fname ="C:Workspacemy_progchanF_BB_L.ipt"
Dim pDoc as PartDocument = ThisApplication.Documents.Open(fname,False)
pDoc  = ThisApplication.Documents.Open(fname)

These are just attempts to find a syntax that works. I need the method to change the parameter.

 'param = pDoc.PartComponentDefinition.Parameter.Param("TKNS")
 'pdoc.parameter.Param("TKNS") = 8
pdoc.Save
pdoc.Close

View 4 Replies View Related

AutoCAD Inventor :: Change Length Of Geometry By Text Parameter?

Mar 15, 2013

I need to change the length of geometry by a text parameter.How to do this?

I tried this:

If widthselection="420" Then
Parameter(d11)=725mm
Parameter(width)=420mm
ElseIf widthselection="620" Then
Parameter(d11)=1075mm
Parameter(width)=620mm

[code]....

View 2 Replies View Related

AutoCAD Inventor :: Change Content Center Component Based On Parameter Changes

Aug 23, 2012

How can I change size of the content center part in an assembly based on parameters using iLogic.

There is also the possibility that I would need to replace from content center. I have been unsuccessful in adapting previous examples to work as I need. attached is an example of a part I am tryig to change with parameters and the start of some iLogic. I am using inventor 2012.

View 3 Replies View Related

AutoCAD Inventor :: Cannot Change Parameter Value For ILogic Unless User Is A Local Admin On PC

Aug 23, 2012

I have a users who cannot change parameter values for iLogic unless user is a local admin on the workstation. This machine has just been upgrade to Inventor 2013.

View 1 Replies View Related

AutoCAD Inventor :: ILogic Driven Part Not Updating After Parameter Change

Jul 26, 2013

I have a flange that I use iLogic and the parameters list to update the different styles. My problem is that my flange won't update until after I hit save and update. My other square flange is not this way. As soon as I change the parameter in my square flange it immediately updates. Is there anyway I can get my round flange to update immediately like my square flange? I attached pictures below.

View 1 Replies View Related

AutoCAD Map 3D :: How To Change Decimal Numbers From Text

Dec 15, 2013

I have an AutoCAD map 3d 2014 .dwg with points that have object data and Easting, Northing and elevation values.

I am displaying the text of those points in particular the elevation value. This is done through task pane>data>add drawing layer>add style>text...

I hit the properties and select the Z1 from the object properties...

All is well and the text comes as e.g. 24.89752

The above number is accurate, however, I only want two or three decimal points since the number is too long.

Is there a way to reconfigure this so that the number is displayed as 24.89?

View 4 Replies View Related

AutoCAD Inventor :: IV2012 Sp1 - Delete Unused Parameter Takes 4-5 Seconds Per Parameter

Dec 23, 2011

I have user parameters that are no longer needed and are not being used anywhere.  They each takes 4-5 seconds to delete, prior to 2012 this would happen instantly.

IV2014 SP1 64bit
Dell Precision T7500, Geforce GTX 480, DirectX11 306.97
SpaceExplorer 4.04, 3DxWare 3.12.2
Twin Intel Xeon E5506 2.13GHz, 12GB RAM, Win7 Pro SP1 64bit

View 6 Replies View Related

AutoCAD Civil 3D :: How To Change Feet To Decimal System

Jul 18, 2012

My data is in decimal format and

In metric I am geting the feet interval of contours 

How to change the feet to decimal system

View 9 Replies View Related

AutoCad :: Drawing Returned To Units To Change To Decimal

Mar 27, 2013

For an autocad assignment, we have been given a drawing in engineering notation (feet and inches) and have to draw it with SI units dimensions. Doing the drawing was fine, BUT, I drew it in inches and thought that I could change it to millimetres.

I have used the units command initially to set up engineering. Then after drawing returned to units to change to decimal. Dimensions turned out in inches regardless. I also tried the scale command to alter the scale, then dimension , still no luck. I went into the annotation menu got to modify primary units and alternate units and still no luck. Not even my tutorial teacher knows how to do this.

View 2 Replies View Related

AutoCAD Inventor :: Convert Model Parameter To Reference Parameter?

Oct 2, 2012

I need to convert a model parameter to a reference parameter thru the API.

I saw this item discussed in the group before, but I cant find the thread.

View 4 Replies View Related

AutoCAD Civil 3D :: How To Change Number Of Decimal Places Of Elevation Of Points

Mar 15, 2012

How to change the number of decimal places of the elevation of  points?

as the points are labeled with their elevations, I couldn’t find how the number of the decimal places of the elevation be chosen. In this case, I wanted to let the number of the decimal places to be zero.

How to set the number of the decimal places to be zero or 1, for example? how to sepcify it height (size)?

Screenshot below.

View 6 Replies View Related

AutoCAD 2013 :: Change Display Of Grip Dimensions From Decimal To Architectural?

Nov 7, 2012

What is the system variable to change the display of grip dimensions from decimal to architectural? Specifically I am referring to the dimension associated with a grip(s) when hovering over it.

View 1 Replies View Related

AutoCAD 2013 :: Select Dimensions And Change Precision To 2 Decimal Points?

Sep 30, 2013

I wanted to select dimensions and change the precision to 2 decimal points.

For any dimensions I positioned on the object (like the width of the block centered in the block)...rather than above, below or off to the side. I am unable to select that dimension. Every time my cursor goes towards the dimension to select it.....the block itself is automatically selected. Any dimension outside the boundary of the object is fully selectable to edit.

View 3 Replies View Related

AutoCAD Inventor :: Set Parameter For End Value Of Parameter Animation

Dec 19, 2011

I got a deadline for my project, but I got a big problem:

"I cannot set the "parameter" for the End Value in Parameter Animate dialog"

For easy understand, let's see a example:

1. I got a part which has two parameters named: "A" and "MaxA"
2. I animate Favorited parameter A.
3. The End Value is MaxA_ (Everything is ok)
4. I finish Studio environment, then I change parameter MaxA_ from 200 mm to 400 mm
5. I turn back to Studio environment, the End Value now is "200 mm" (I want this will be MaxA_, so I can animate the flexible parameter). 

show me how to keep the end value will be "MaxA_" after I change parameter? 

View 3 Replies View Related

AutoCAD Civil 3D :: Unable To Change Number Of Decimal Places In Elevation Label

May 7, 2012

The defaul label style for the Elevation of points is set to 3 decimal places. We are trying to change the elevation display to 2 decimal places. We have tried the directions in the following discussion: [URL].......

Which is:

Toolspace

->Settings
-->Drawing name
--->Edit Drawing Settings
---->Ambient Settings
----->Elevation
------>Precision -> We modify from 3 to 2 decimal places.

It does not modify the display settings.

Also:

Toolspace

->Settings
-->Drawing
--->Point
---->Label Styles
----->(right-click) Edit label styles
------>Layout
------->Text
-------->Contents
--------->click on the "..." (three points) button

(Open "Text Component Editor - Contents"

--------->Select Point Elevation in the driop down list.
---------->Precision: Set to 0.01
------------>Ok, Apply, etc...

This does not seem to work either.

View 3 Replies View Related

AutoCAD Inventor :: ILogic Rule For Each Part In Assembly To Change Part Parameter

Apr 1, 2013

I`m looking for the iLogic code that can change one parameter (user defined) for each (ipt) part in assembly (iam)

The one below doesn`t work.

Sub Main Dim oApp As Inventor.Application = ThisApplication Dim oAssy As Inventor.AssemblyDocument = oApp.ActiveDocument For Each oSubDoc as Inventor.Document In oAssy.AllReferencedDocuments On Error Resume Next Parameter(oSubDoc, "FH") = 15.26 Next End Sub

View 5 Replies View Related

AutoCAD Inventor :: Make Solid / Change Parameter Of Solid

Nov 18, 2012

I am making a design on inventor 2013 for a colleague who does not know how to use the inventor.

I want to make the solid and then set something up that allows the user to change a few of the parameters of the solid in a very user friendly way (i.e. a box that says "cylinder radius" and has an input box so the user can enter a value).

View 9 Replies View Related

Photoshop :: How To Change Rulers To Decimal Inches In CS6

Feb 23, 2013

In CS6 how do you changes rulers to decimal inches

View 3 Replies View Related

Illustrator :: Change Decimal Places Default?

Mar 20, 2013

I'm wondering if it's possible to change the decimal place accuracy to default to only rounded numbers i.e. 1mm instead of 1.325. I want EVERYTHING to snap to the nearest mm (Axis, Dimensions etc.) rather than 1.233 for example.
 
Yes, I can manually type into the dims / axis boxes everytime but thats a chore.

View 3 Replies View Related

Illustrator :: How To Change Decimal Point In Rotate Tool

Oct 16, 2013

I use the rotate tool to design gauges, like clocks, a lot. I hold the ALT button and click on the center of my drawing and then a window pops up to enter in what degree I want my object to be. Currently the decimal point only allows for hundredths, ex. 45.25 degrees. Is there any way to change this to thousandths or even higher, ex. 45.25125? I've attached a screenshot to show you what I mean.

View 3 Replies View Related

AutoCAD Inventor :: DIA Dimensions Changing To Decimal

May 3, 2012

When I save to acad my Dia dimensions are changing to a 4 place decimal. My radius dims stay the same.

INV 2009 SP 2.

View 1 Replies View Related







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