AutoCAD Inventor :: ILogic To Update Some Prints

Jul 28, 2012

I am new to the ilogic. I am wanting to use ilogic to update some prints as needed.

 I need to create and external rule to:

1) migrate the drawing to the lastest inventor version (2012),

2) copy all drawing resources (borders, title blocks, and sketched symbols) from a template file (.idw),

3) replace the title block and border with specified block and border. 

View 9 Replies


ADVERTISEMENT

AutoCAD Inventor :: Physical Update Using ILogic?

Oct 12, 2011

Currently I am using I-logic and a form.  I have an assembly that I am pushing a volume from a part to the main assembly.  The volume updates in the part fine.  The issue is with the form is not updating when the file parameter updates.  If I exit the form and run the rule manually then the form updates.  how to update the form at the same time?

View 1 Replies View Related

AutoCAD Inventor :: ILogic Update Form

Sep 13, 2013

I´m having a bit of an issue with a form.

I have a global form which is exactly made for a specific assembly for configuration of this very assembly. To make things easier for the user I call another external rule which only opens exactly this assembly.

Now when the user opens the form the assembly is not open and obviously can´t reference the used parameters.

Even after loading the assembly the parameters are not available, which results in something like this:

So this is a really simple question, is there a way to update a form so that it rereads the parameters from the assembly?

What I tried is using iLogicForm.CloseGlobal("Name of form") to no availability and then open it again with iLogicForm.ShowGlobal("Name of form").

But I couldn´t find any further info on the iLogicForm Commands.

View 3 Replies View Related

AutoCAD Inventor :: ILogic Update Styles On DWG

Dec 21, 2011

I am after a way of accessing the update styles on dwg so that I can run with rule below as most of our drawing stds have changed and old dwgs need updating the work flow is as follows.

 I need to access manage tab then update styles,then yes to all,OKUpdate all sheetsfind all parts list within all sheet and then annotate , style on format tab and then select Parts list - this will change all my old parts list to current style definition.Either run at begining of code below or run as seperate code

On Error Resume NextDim oDrawDoc As DrawingDocument oDrawDoc = ThisApplication.ActiveDocumentDim Sheet As Inventor.SheetDim Cursheet As String Cursheet = oDrawDoc.ActiveSheet.Name For Each oSheet In oDrawDoc.Sheets oSheet.ActivateDim oPartsList As PartsList oPartsList = oDrawDoc.ActiveSheet.PartsLists.Item(1)If Not oPartsList Is Nothing Then Resume Next'Call oPartsList.Sort("ITEM")Call oPartsList.Sort("PART NUMBER", 1, "DESCRIPTION", 1, "QTY", 1)iLogicVb.UpdateWhenDone = TrueActiveSheet = ThisDrawing.Sheet("Sheet:1")ThisApplication.ActiveView.FitEnd If Next

View 4 Replies View Related

AutoCAD Inventor :: Put Immediate Update Box On Ilogic Form

Aug 17, 2012

I am trying to put an immediate update box on my form in ilogic.  I want to be able to change parameters on my form without updating the model.  There is this option in the parameters window but not in the form.  How can I accomplish this?

View 1 Replies View Related

AutoCAD Inventor :: ILogic Unable To Update Title In IDW

Mar 29, 2012

I have an ilogic assembly that I change to different widths. And I want ilogic to put the part number into the title block according to the size of the assembly.

What I have works but won't update on its own. I have to open the ilogic rule and close it, then open the i properties of the idw and close before it will update.

View 3 Replies View Related

AutoCAD Inventor :: ILogic Subassemblies Won't Update Unless In Their Own Environment

May 2, 2013

I have an assembly which is made with a sub assembly. The sub assembly has iLogic code that both resizes it's parts and suppresses parts that arn't needed after a change in length.

View 5 Replies View Related

AutoCAD Inventor :: How To Update Drawing Template With ILogic

Oct 8, 2013

I made iLogic for assembly and drawing, now i want to update drawing template parameters thru ilogic, as i already linked Fx(parameters) & iProperties to Template, but for updating template i need to close file and open again that file,

currently m using this method.

What is the solution for updating drawing template (like Model Description, Drawing no.).

View 3 Replies View Related

AutoCAD Inventor :: ILogic Mass Properties Update?

Aug 9, 2012

Is there any way to force an update of mass property values of a component from within an iLogic routine?

I am trying to produce a calibration chart showing the volumes of an irregular shaped object by taking incremental slices off the component and accessing the "volume" of the remaining portion, then writing the the results to an external file - All from within a "For - Next" loop.

The main routine works O.K. but the resultant chart only shows the original starting volume for each slice instead of the required reducing volumes.

I am a novice with iLogic and can only assume that I must somehow "update" the mass properties of the sliced object before reading its new volume on each pass.

View 7 Replies View Related

AutoCAD Inventor :: Update User Parameter With Ilogic

Dec 28, 2013

Is it possible to update an existing User Parameter. While I can only  delete-create a new. In this case the connection is lost with BOMQuantity.

View 5 Replies View Related

AutoCAD Inventor :: ILogic Dynamic Parameter Update Off?

Aug 4, 2013

The rule iterates through an assembly looking for parameters. If it finds them it 'pushes' the value down from the top level Assembly into the sub-components.

It works well, but each component updates dynamically as the parameter value is changed. This looks a bit jerky and weird.Is there any way to write the script so the the updates all happen at once at the end?

' set a reference to the assembly component definintion.' This assumes an assembly document is open.Dim oAsmCompDef As AssemblyComponentDefinitionoAsmCompDef = ThisApplication.ActiveDocument.ComponentDefinition'Iterate through all of the occurrencesDim oOccurrence As ComponentOccurrenceFor Each oOccurrence In oAsmCompDef.Occurrences'check for and skip virtual components'(in case a virtual.
[code]...

View 7 Replies View Related

AutoCAD Inventor :: Update And Save Assembly Through ILogic In Drawing?

Jul 10, 2013

as a part of automating manufacturing drawings, am trying to include ilogic code in the drawing , that would accept values from the user and store it as "user parameters" and make corresponding changes in the inventor drawing file.So, to replicate my issue on a smaller scale, i had created 2 parts and created an assembly out of these 2 parts. I used the assembly in my drawing.

In the Drawing i created a user parameter .. say "external_param". I am opening the drawing and changing the value of the user parameter through the (Fx) parameter table. 

doc = ThisDoc.DocumentIf external_param >= 50 And external_param <= 99 ThenParameter("block_1.ipt.d0") = 15 'change the length of the blockParameter("block_1.ipt.d14") = 3 'change the number of holes in the blockElseIf external_param >= 100 And external_param <= 199 ThenParameter("block_1.ipt.d0") = 40Parameter("block_1.ipt.d14") = 5ElseIf external_param >= 200 And external_param <= 299 ThenParameter("block_1.ipt.d0") = 80Parameter("block_1.ipt.d14") = 6ElseIf external_param >= 300 And external_param <= 399 ThenParameter("block_1.ipt.d0") = 160Parameter("block_1.ipt.d14") = 9End IfRuleParametersOutput()iLogicVb.UpdateWhenDone = True'InventorVb.DocumentUpdate()
 
As you can see, i have commented out InventorVb.DocumentUpdate() , im not quite sure what would accomplish the update and save of the assembly document in the background (without prompting for a save/update). I have also tried thisDoc.Save and thisdoc.update. Using these 2 commands along with the InventorVb.DocumentUpdate() or iLogicVb.UpdateWhenDone caused Inventor to Crash.

View 4 Replies View Related

AutoCAD Inventor :: Open And Update Drawing From Assembly Via ILogic

Nov 12, 2012

The right click context menu on the top level assembly (on the model tree in Inventor) has the option of 'Open Drawing'.

Is there a way to do that via iLogic? Unfortunately I can't figure it out if there is. I would like to open and update the relevant drawing.

Also have tried it the other way around, that is to run my rues in the assembly from the drawing since the drawing is the parent. But I am not sure how to reference the assembly.

View 1 Replies View Related

AutoCAD Inventor :: ILogic Update Color Of A Derived Part

Jun 4, 2013

I'm running an iLogic based model where I have a technical housing with 2 cover parts on top.

The first cover part is the basic part.

I use iLogic to assign a RAL-color to several parts in the assembly, also to that cover. The color is assigned to several features of the cover part.

The second cover part is almost identical to the first one.

So my first feature in the second cover part is a derived part of the 1st cover. I derived all the bodies.

When I'm in my assembly and I pick a RAL-color in my created customization form, the RAL-color only changes in the 1st cover part (the original), but it doesn't change in the second cover part, the derived body.

But....

when I manually open the 2nd cover part, and I right click on the derived feature and click on 'Edit Derived Part' ; the new color shows up immediately!

So, my question is if there is a rule for iLogic to update the color automatically?

View 5 Replies View Related

AutoCAD Inventor :: ILogic Syntax For Searching In Excel And Update IProperties

Dec 17, 2013

I want a ilogic rule syntax for following process:

I have one excel sheet it consists around 5 sheets for Plate, Flats, Rounds, etc. When i am run the rule then it will ask and do the following:

Ask the thickness value.It will search thickness value in “D:LINUS KOTTEstock numbers.xlsx” in sheet 1If thickness value found then fill the stock number in iproperty(project tab-stock number)   

Here i am using different rules for plate, flat, round, etc.,

View 2 Replies View Related

AutoCAD Inventor :: (iLogic ) Automatic Update Flat Pattern Extents?

Sep 12, 2011

How to make Automatic Update propeties for Flat Pattern Extens. I have write code and setting rules trigerred by event (Before save, Any model Parameter Change) but if some parameter change properties isn't automatic update. So could some one tell me how to solve this problem.

Part with iLogic code is attached

View 9 Replies View Related

AutoCAD Inventor :: Ilogic - Sheet Metal Part Auto Update

Oct 18, 2013

i made a sheet metal part.ipt but that file is not updating immediately, i have added

iLogicVb.UpdateWhenDone = True
InventorVb.DocumentUpdate()

also tick marked in parameters for IMMEDIATe update

View 3 Replies View Related

AutoCAD Inventor :: Update Idw Title Blocks From Template File With ILogic

Jun 6, 2013

I am trying to create an iLogic (or VB) rule to update an active drawing title blocks from our Template File.I don't want to use any of the external software (Transfer Wizard etc), we just need a simple rule that will update the title blocks when we need to.

View 9 Replies View Related

AutoCAD Inventor :: How To Stop Automatic Update In ILogic While Entering Values In UI

May 19, 2013

I have one problem in ilogic i developed the model using ilogic rules and dimension values updated through the User interface form.

problem is while entering the values in UI, model updates automatically, but I want to stop automatic update and after entering the all the parameters in the UI then click the done button only update the model.

My UI is like this

It's possible.

View 3 Replies View Related

AutoCAD Inventor :: Ilogic Function To Update Local Styles To Match Style Library

Feb 21, 2013

ilogic function to update local styles to match Style Library?

I have a snippet of code that, on a drawings, deletes the current parts list (if one exists), then inserts a new parts list which I want to be up to date with the Style Library.

Autodesk Inventor Professional 2011
Windows 7 Enterprise, 64-bit

View 4 Replies View Related

AutoCAD Inventor :: Material Favorites Does Not Update When Update Materials

Dec 9, 2013

I made a change to my materials library.  I changed the color (from dark grey to light grey) of one material.  I then saved this back to my library.

Now, when I start a new part, I get a warning that the material does not match the library.  So, rather than using the material in the part, I opened the template and updated the material to match the library. (Manage >Update Styles).

This is where the problems come into play. In the update styles dialog, if I compare materials against my custom materials and then compare it to my Favorites, it just a continuious circle.  It is like the favorites are stored inside the part and do not get updated to match the custom materials library. (I thought the whole idea behind using a library was to get the information out of the parts).

Here is a short video showing what it does. [URL] .....

The only way I can get the favorites to match is to delete the favorite material, update the style and the add the favorite back in.  That is a bunch of work.  The problem I got with this is that there are thousands of parts that have been created that has this favorite in it.  The only way to update these is to open each part (if I knew which one), delete the favorite, update the materials and then add the favorite back in.

I see the same thing in 2013 and 2014.

View 3 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 Inventor :: Change All Dimensions On All Prints To Fractions?

May 4, 2012

I have been working 4-weeks for a new customer. I Run Inventor 2011 mechanical... I have multiple iwd files that have all been done in decimals. The floor workers here want fractions to the 1/32. Is there a easy way to up-date my entire list of drawings with out creating new? Is there a easy way to create a style that I can easily switch to when I draw/design for this customer. I hate fractions!

View 5 Replies View Related

AutoCAD Inventor :: Prints And View Representations Not Working

Feb 15, 2013

There is some association between prints and view representations i am missing.My typical process is:

-Build a model
-Create a representation
-Lock the representation
-Create a print from that representation
-Create a new representation and continue to work on the model

When i go back to the original print there is parts flying everywhere (see attached picture - hope you get a kick out of it)

View 2 Replies View Related

AutoCAD Inventor :: Section 3d Drawing Into Multiple 3d Prints

Jul 4, 2013

I'm trying to 3d print an ABS mold of an 80" long by 6 inch high object.  I can't figure out how to section my model into the multiple 6" sections, though I know I'll need 14 roughly the same size sections.  

View 4 Replies View Related

AutoCAD Inventor :: Style Update (or Style Update Check) Upon Open Of A Drawing?

Nov 21, 2013

I am wondering if it is possible to do a style update (or style update check) upon open of a drawing? 

The example would be that I have stuff made from way back that the colors/dimension sytles ect dont match the current standard and upon opening a file where they are not current, it would either prompt to update immediatly OR update automatically with no prompting (preferred method).

I am doing a massive amount of updates from old files recently and to save myself 1 - 3 clicks per drawing would be wonderful.

View 5 Replies View Related

AutoCAD Inventor :: 2014 Shaded View IDW Prints As Line Drawing

Oct 30, 2013

We just recently upgraded to Inventor Pro 2014.  I have a user who has created a singled shaded view drawing.  He want to print the drawing shaded.  When he prints he gets a line drawing.  It even appears like a line drawing when he previews it.  He gets the same results when printing to Adobe.  He said it printed properly in the morning yesterday and when he tried to print again in the afternoon it would not print shaded.  He rebooted this morning and he still can't print a shaded drawing from Inventor.  We looked at his printer settings and everything looks good.  He is the only one in my department who is having this problem.

Dell Precision T7500
Windows 7 x64 SP1
Nvidia Quadro FX5800
16 GB RAM

View 1 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 Inventor :: Get The COG To Update

Dec 4, 2013

Is it possible to get the COG to update its self automatically when I change an assembly / part without having to turn it on and off again? At the moment, as soon as I change a part it just goes grey and has absolutely no use (shows where the COG was, but not is). Obviously this is a bit pointless, so is there a way to make the COG automatically update without any input from me?

View 7 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 :: Drawing Won't Update

Oct 27, 2009

I am using Inventor Pro 2010.I have a model and I am driving the dimensions from EXCEL. The model updates nicely when I change dimensions but the drawing (idw) does nothing. In the browser instead of the usual tree in the view there is this red lightning bolt and under them is a big plus (+) sign and the words Solid.... after it.I was assuming that the lightning bolt meant something needed updating, but I can't find how this is done.

View 9 Replies View Related







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