AutoCAD Inventor :: ILogic BOM Manipulation

Nov 30, 2012

When we create a manifold assembly we like to itemize each part individually. Meaning that if we have 5 valves that are the same, we show those as 5 separate items on the BOM. This makes for easier troubleshooting with a customer over the phone. Unfortunately there appears to be no way to manage this natively within Inventor, so we have to edit the BOM manually which defeats the whole idea of automated BOMs. I was hoping some code could come to the rescue. One thought I had was to export the BOM to excel and then have some automation within excel to re-number and sort the BOM, once complete import it back into Inventor in a table.

View 7 Replies


ADVERTISEMENT

AutoCAD Inventor :: ICopy Manipulation With ILogic?

Aug 3, 2012

is there any way i can use iLogic code to set the "Instance Number" and "Offset" of an iCopy feature i have in my drawing?

View 1 Replies View Related

AutoCAD Inventor :: Texture Manipulators - XY Manipulation

Jul 9, 2012

I have a Problem with the Texture Manipulators. I made a new Textur from a Picture that I had, then I wanted to roatate and position the picture on the 2D Surface sheet metall, that I constructed in 3D.

I cant move the Picture in x or y-direction. I can rotate it and scale it but not wove it in x-y direction.

Are there some installations that I have to make, to have the possibility to move the picture on the surface?(I have tried to move the in the Text manipulator and in the "Darstellungs-Browser" for the Textures)

View 4 Replies View Related

AutoCAD Inventor :: Close ILogic Form With VBA Or ILogic Rule

Aug 19, 2013

how can I close an iLogic Form from either an iLogic Rule, or a VBA Rule (VBA is the Preferred method)?

View 5 Replies View Related

AutoCad :: 3D Dimensions Plane Manipulation

Sep 2, 2011

Trying to put dimensions on a 3D object but having absolutely no control of the plane on which they are placed.

How would it possible to change the setting that decides of the location of dimensions: I use 2002 version of Autocad.

View 8 Replies View Related

AutoCAD .NET :: Dynamic Block Manipulation After Changing UCS

May 28, 2013

The dynamic position and angle parameters within the inserted blocks appear to be based on the UCS at the time of insertion and relative to the basepoint of the block. These positions don’t change if the UCS is changed or block is rotated.

I can’t work out how to modify the position parameters if the UCS is not the same as that used when the block was inserted. How I access these positions after changing the UCS?

I’ve tried looking at the ECS of the block reference but I’m not sure if that’s what I need to be using.

View 3 Replies View Related

AutoCAD Inventor :: ILogic Design Copy - Error Copying A File / Inventor Crashes

Nov 5, 2013

I'm trying to use iLogic Design Copy to copy an assembly and all its associated parts to another directory. The assembly contains content center parts. Inventor warns me that the destination file of one of the CC parts (and 18 others) will be overwritten. When I go ahead and copy anyway, the copying process stops at that specific CC part. The Design Copy Progress dialog box states there is an error copying that CC part. When I close the Design Copy Progress dialog box, Inventor crashes.

The error copying the CC part: I'm allowed to use content center parts in iLogic Design Copied stuff, right? I searched some related topics and I'm under the impression that Inventor keeps the CC parts in its own directory and shouldn't be trying to overwrite them.

View 3 Replies View Related

AutoCAD 2013 :: Donut Manipulation And Grid Snap Settings

Jun 28, 2013

I have a drawing of Clock Face here (see the picture below), which requires donut for the outer circle. My first question is, looking at the picture, what would be the limits, grid, and snap settings? I made an attempt with the limits (0',0') (12',9'), with Grid =0'-0 1/2", and Snap = 0'-0 1/4", but it didn't work out well. I tried to make the Snap 0'-0 1/32" but it couldn't, neither 0'-0 1/16", nor 0'-0 1/8". Why can't I set the Snap to 0'-0 1/32"?

Next, I would like to know how the outer circle could be constructed with donut. The small inner circle below it is of 1'-11" + 1" + 1" in diameter, that is, 2'-1". If then the Donut (as shown) is to be of 24" inside x 1" thick, the 2'-1" DIA circle would disappear within the thickness of the Donut, leaving no gap between them both. How could this be drawn,

View 9 Replies View Related

AutoCAD 2013 :: Group (not Block) Manipulation Trough Grip Cause Fatal Error

Jul 29, 2013

If you create a group, after that select it and click on the insertion point (grip) using a lot of time the space bar (to switch between move, rotate, scale and mirror) after a while autocad crash.

Tested in AutoCAD 2013 and 2014 in more the one installation.

View 1 Replies View Related

AutoCAD Inventor :: ILogic Min Or Max?

Nov 13, 2013

I am doing a tie rod the issue I have is when the length is between 2.001 and 2.250 we would drill thru all but only tap the ends .750 deep. If the part is 2.000 would would drill and tap thru in one step and not have to rotate the part in the lathe.

How do I get ilogic to understand if my number is between this 2.001 and 2.250 to lengthen the drill length parameter?Or add a mid plane cut? ( trying now code below reflects this try)

 Not sure what way I want yet but I just can't seem to find a snippet or code to do this. I tried to add a list in the parameters for it to read but seems to do nothing.

If LENGTH <= "2" ThenFeature.IsActive("Thru_All") = TrueFeature.IsActive("Hole_A") = FalseFeature.IsActive("Hole_B") = FalseiProperties.Value("Project", "Description") = "RETURN ROLLER SHAFT, " & iProperties.Value("Custom", "DIAM") & " Ø S/S, TAP THRU 3/8-16, " & iProperties.Value("Custom", "LENGTH") & " LONG"ElseFeature.IsActive("Thru_All") = FalseFeature.IsActive("Hole_A") = TrueFeature.IsActive("Hole_B") = TrueiProperties.Value("Project", "Description") = "RETURN ROLLER SHAFT, " & iProperties.Value("Custom", "DIAM") & " Ø S/S, TAP BOTH ENDS 3/8-16, " & iProperties.Value("Custom", "LENGTH") & " LONG"End IfIf LENGTH = (My_List) ThenFeature.IsActive("Mid_Cut") = TrueElse Feature.IsActive("Mid_Cut") = FalseEnd If

View 2 Replies View Related

AutoCAD Inventor :: BOM XML Import Via VB Or ILogic?

Mar 8, 2011

Possible to run the 'import .xml structure' routine for an assembly BOM using either iLogic or VB?? I'm trying to replicate the Import button at the bottom of the BOM screen....

View 5 Replies View Related

AutoCAD Inventor :: ILogic Component Add

Jan 16, 2013

What I am trying to do is insert a part into an assembly file using iLogic. I basically want to mimic Inventor’s “Place” command using ilogic, maybe something like this:

oPath = ThisDoc.Path & ""
oFile = "File.ipt"
Component.Place(oPath & oFile, False)

View 1 Replies View Related

AutoCAD Inventor :: ILogic - Export DXF From DWG

Jun 20, 2013

This att. doc shows rule for exporting dxf out of drawing. It is working on one sheet just perfect. In multi sheets it save allways with same name. I want to choose from which sheet i need dxf but to be saved by sheet name or model properti name. Is that possible?

View 9 Replies View Related

AutoCAD Inventor :: ILogic DWF Merge

Aug 28, 2013

I have an external ilogic rule that creates a set of DWF drawings for all parts and subassemblies (as long as the idw files exist) within and including a main assembly.

I would like to merge all the DWF drawings of the sub assemblies and component parts into the DWF of the main assembly. Is there a method within DWFAddIn that will allow me to merge the files? Is there another way that I can merge the DWF files using the same ilogic rule (one rule to create and merge all DWF's together?)

View 3 Replies View Related

AutoCAD Inventor :: Extrusion Using ILogic

Aug 9, 2012

I have closed profile "Sketch1" placed on one of the parts in Assembly.

Suggest iLogic code to create cut Extruson (Extents=All) based on the "Sketch1"

View 6 Replies View Related

AutoCAD Inventor :: Set PDF Metadata Using ILogic

Jan 9, 2013

I´ve found some iLogic code to print a drawing to a PDF document. After some minor modifications it works just fine, but I would like to add some code which allows med to set PDF properties (such as "title", "author", etc.) with values from iProperties. How can I do that? Is it possible? (I'm new to iLogic).

View 6 Replies View Related

AutoCAD Inventor :: Managing LOD With ILogic

Jul 12, 2013

I use simple set of iLogic rules to manage product configuration through the assembly LOD. Assembly is really simple not more then 30-50 parts. Still I manage to crush Inventor fairly often. Some days 5 and more crashes! Several times sent crash report to AutoDesk for no joy. Never got any feedback. 

I am just getting an impression that Inventor does not like LOD manipulated with iLogic for some or the other reason.

View 5 Replies View Related

AutoCAD Inventor :: ILogic In Drawings

Dec 19, 2011

I am slowly learning about ilogic, and have created parts and assemblies that are run by rules. My next question is, what exactly can ilogic do for drawings? I've looked at the wikihelp, but I am not a natural at programming and I need more than a list of functions with brief descriptions to get me started.

I'm looking for code snippets, other discussions, tips, tricks, and/or tutorials to get info what I can do with ilogic and the API that can automate parts of the drawing process.

View 2 Replies View Related

AutoCAD Inventor :: ILogic To Sort BOM?

May 22, 2012

I have been unable to find any code to sort the BOM, there are lots of snippets to sort and modify the Parts list.

How to sort the Assembly BOM?

Sort parameters:

PARTS Only

"BOM Structure"

then by

Custom Parameter "TYPE"

Then By

Part Number

Then "Renumber" starting at 1

Autodesk Product Design Suite Premium 2014 SP1 Build 222
Intel Core i7 (950@3.07GHz)
Windows 7x64 (Home) - 12GB Ram
Nvidia GeForce GTX 560 Ti (1Gig - Ver:331.65)

View 1 Replies View Related

AutoCAD Inventor :: 3D Model With ILogic

Aug 22, 2012

I made a 3D model with ilogic to control features to be suppressed or compressed. Because there are lot of features need to do so (need almost 4 to 5 min.) , when I run the rules, it came "Rule timeout" issue as pictures.

I used:

 Feature.IsActive (myFeature) = status

to control the feature be suppressed or unsuppressed .

View 8 Replies View Related

AutoCAD Inventor :: Trying To Get Started With ILogic

Aug 1, 2012

I'm trying to get started with iLogic, but I have no coding background and no VBA experience in Inventor, so I'm looking for a good site or resource that explains iLogic and gives working examples.

View 3 Replies View Related

AutoCAD Inventor :: ILogic DWF Export

Jan 14, 2011

I have problems to export dwf with ilogic

I use parts of the snippets than ships with inventor, but I can not export the 2d and 3d in the same dwf.

Perhaps it might have something to do with that when I export a 2d file the traditional way only 2d gets exported to the dwf if i dont open the tab that lets you choose 2d and 3d model.

Even if i have the 3d model checked i have to open the tab to get both 2d and 3d, if i dont open the tab only 2d

Here is the code.

path_and_name = ThisDoc.PathAndFileName(False)
DWFAddIn = ThisApplication.ApplicationAddIns.ItemById("{0AC6FD95-2F4D-42CE-8BE0-8AEA580399E4}")
oDocument = ThisApplication.ActiveDocument
oContext = ThisApplication.TransientObjects.CreateTranslationContext
oContext.Type = IOMechanismEnum.kFileBrowseIOMechanism
[code]......

View 4 Replies View Related

AutoCAD Inventor :: Features On And Off With ILogic?

Oct 19, 2012

I want different features on and off with iLogic.

I have a text parameter with a choice menu of 1,2, and 3

This I want some features  on and off.

If I pass the parameter I get a message: No feature found with the name. Mvg Jos

Your drawings are only as good as the symbols that complete them...

View 9 Replies View Related

Photoshop :: Eye Photo Manipulation

Feb 7, 2005

How would you put other images inside of someone's eyes. Kind of like Photo Manipulations really.

View 2 Replies View Related

Photoshop :: Map Images Manipulation

Aug 22, 2008

I have 750 gif scanned images of maps. The problem is that I need to turn a border of 75 pixels right round each image either black or white. The image has to stay the same the same size, just the first 75 pixels all around have to be either black or white.

So how do I:

A make the border black or white?

B automate it so I don't have to do them all by hand?

View 1 Replies View Related

Photoshop :: Photo Manipulation

Oct 14, 2003

I want to become really good at it, but don't know where to start! Everytime i try something, i try to blend different parts together via cut and paste. I try to smooth it in to make it look like the original photo, and no matter what strategy i use (Smudge tool, pencil tool and manually put in the colors, etc.) the area turns out rough or too blurry?

View 4 Replies View Related

Paint.NET :: How To Do Photo Manipulation

Jul 29, 2011

How to do photo manipulation! Like this:

or some thing as simple as putting sunglasses on a cat for a start.

View 8 Replies View Related

AutoCAD Inventor :: How To Export IProperties To TXT ILogic

Nov 11, 2013

I would like to copy and paste all iproperties from one part to another, without retyping it all.

What i was thinking about is:

1. Exporting all iproperties to .txt

2. Run a import .txt rule to iproperties.

Is it possible? If so, How could i accomplish a task such as this?

Privacy warning: Since I live in a country that has traded liberty for the illusion of security, all of your posts to me are being monitored and saved by the United States Government.

View 1 Replies View Related

AutoCAD Inventor :: Parallel Threading In ILogic

Jan 31, 2013

We have been experimenting with Parallel threading. The situation is that I have an assembly that contains multiple parts (approx. 40) which all have contained "almost" the same code. In order to rationalize this; we have rearranged the code in such way that we now only reference External iLogic rules form these 40 part files (only one place to revise the code if necessary).

The side effect to this rationalization has been the we have problems in executing the codes in parallel, see this simplified example:
 
Imports System.Threading.TasksParallel.For(1,40, Sub(h As Integer) iLogicVb.RunRule ("Part "& h &"", "iTriggerRule") End Sub) 

 Now all of these 40 part files try to execute their code.
 
'Configutation of Part filesiTrigger=iTrigger0iLogicVb.RunExternalRule("Cut configuration")iLogicVb.RunExternalRule("Bracing of the part")iLogicVb.RunExternalRule("Parameter context")

As they all are dependent upon running the same external rules the result is that not all part files are updated according to the required design requirements. It seem as if one of the part files calls the external rule and the rule is "busy" handling another part file it just terminates without warnings or errors.

Can multiple part files run the same external rule at the same time? Is there some form of queue? I do not get any warnings or errors, the partfiles just do not update. How can I make sure that all the part files run the external rules and is there a way of checking this?

View 3 Replies View Related

AutoCAD Inventor :: Round Parameter Using ILogic?

Sep 20, 2011

how to round a parameter using ilogic.

For example. I have Roperev=Roperev_1. Roperev_1 is determined by an excel equation. I need Roperev to produce a nominal number because this parameter dries a coil revolution and I need the revolution to be a whole number.

I can not just round the excel result because the excel result needs to be multiplied by 2.53 to get the resultant for Roperev_1

View 9 Replies View Related

AutoCAD Inventor :: Create A Sheet With ILogic?

Nov 23, 2012

What is the code to create (or add) a new sheet in a drawing with iLogic?

View 1 Replies View Related







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