AutoCAD Inventor :: ILogic Addbaseview Not Working In Main Sub Structure?

Aug 7, 2013

Why does this not work ?

sub main()
code .....
oView1 = oSheet.DrawingViews.AddBaseView(oPartDoc, oPoint1, 1/1#,      kFrontViewOrientation,kHiddenLineDrawingViewStyle)
end sub

but this does ?

code.....
oView1 = oSheet.DrawingViews.AddBaseView(oPartDoc, oPoint1, 1/1#, kFrontViewOrientation,kHiddenLineDrawingViewStyle)

View 1 Replies


ADVERTISEMENT

AutoCAD Inventor :: Change BOM Structure With ILogic?

Jan 8, 2014

I'm using rules to control a part that I made. This part is available in steel and wood. 

But steel = normal and wood is something we have to buy.

I would like to adjust my rule so that my material choice will effect the "Default BOM Structure"

I just can't find the right "code" to start with.

View 8 Replies View Related

AutoCAD Inventor :: Change BOM Structure Of Component Within Assembly Using ILogic

Nov 22, 2011

I have a wall of frames, if you will, and some frames within this wall are different sizes. When doing the BOM, I want to be able to combine anything that has the same stock number as well as the same cut length. The only way I have thought to do this so far is to cycle through each stock number and if the cut length is the same, I override the quantity of one and change the BOM Structure of the other to "Reference". 

How can I change the BOM Structure to reference without selecting the part or going through the BOM Editor? Is there some VBA code I could utilize? I am striking out by solely using iLogic.

View 2 Replies View Related

Edge Animate CC :: How To Structure Several Scenes On Main Stage Of Timeline

Dec 5, 2013

I'm new to edge animate but have a Flash background and I'm working in Edge Animate on a game which is structured in several scenes. Each scene I did put in a symbol. Now I wonder how to build the main timeline or the "story - controller" so to speak. I have all the scenes but I do not know how to connect them.
 
In Flash it was possible to add keyframes of scenes one after another (like stairs) and jump forward or backward if needed to load the movie clips. In Edge Animate all scenes (or symbols) are in place from the beginning of the timeline and I cannot move the symbol to a later keyframe. Of course I can move animations in the timeline. The only way I think is to hide the symbols first and make them visible if needed. But this does not seem to be the right way and I don't understand the concept of structuring complex animations yet.
 
I would like to know how to structure several scenes in Edge Animate properly. Something like a scene loader or unloader would be useful.

View 3 Replies View Related

AutoCad :: Size And Shape Of All Objects Connecting The Objects To The Main Structure

Nov 22, 2012

I am very much new to AutoCad, but have learned quite a bit about it in the last few days. As a part of the learning I have been building a 3D model of the shed my dad is building. But I ran into a problem on the roof and cant seem to figure out how to click everything into place.

My problem: I need to keep the size and shape of all objects while also connecting the objects to the main structure. I need to keep A and B connected to the main structure and adjust the angles so that both meet at C. But if I move one then another moves out of place. (In the pic B is out of place) All I want to do is hold the beams at A and B in their spot while adjusting the rotation on both beams to meet at C all at the same time. I have tried to fine adjust the rotation on the beams individually but still cant get them together. I cant seem to get the constraints feature to work, because I guess it only works in 2D. I have tried to use the align tool but it just throws everything haywire.

View 6 Replies View Related

AutoCAD Inventor :: ILogic Rule Stopped Working?

Aug 12, 2013

I have a rule in iLogic that I was testing as "Straight VB.Net" on various assemblies.  It was working alright, but I was making some minor tweaks to eliminate errors.  Now, all of a sudden, it is unresponsive.  Completely.  No errors, no "busy" symbol over my pointer, just nothing.  I put in the line MsgBox("Begin") as the first line of the program to see if it was even getting into it, and still there is no response.  I run the rule, and absolutely nothing happens.  I tried writing it in iLogic instead, and that does make something happen.  what might cause the VB.Net element of iLogic to stop working, and hopefully how to correct the problem as well? 

View 2 Replies View Related

AutoCAD Inventor :: External ILogic Rule Is Not Working

Oct 5, 2013

Created in the template sheet metal rule. Why External ilogic rule is not working? User-valued parameter is created, sheet metal rule does not change.

name = ""For Each par In ThisDoc.Document.ComponentDefinition.Parameters.UserParameters If par.Name = "SMR" Then name = par.Name Exit For End IfNextIf name = "" Then Dim MyArrayList As New ArrayList For Each st In ThisDoc.Document.ComponentDefinition.SheetMetalStyles MyArrayList.add(st.Name) Next ThisDoc.Document.ComponentDefinition.Parameters.UserParameters.AddByValue("SMR", "", UnitsTypeEnum.kTextUnits) MultiValue.List("SMR") = MyArrayList Parameter("SMR") = SheetMetal.GetActiveStyle()End IfSheetMetal.SetActiveStyle(Parameter("SMR"))iLogicVb.UpdateWhenDone =TruePS:

View 2 Replies View Related

AutoCAD Inventor :: ILogic Range Between Two Numbers Not Working?

Apr 3, 2013

I would like to use the if else parameter in iLogic to set up a range, but I'm not getting it right.

What should happen:

if the variable 'breedte' is:

-       0 up to 3800; thats OK

- 3800 up to 4000; thats not OK, use 3800 instead

- 4000 and up; thats OK

Therefore I wrote this script, but when I enter a number between 3800 and 4000 (like 3900), the MessageBox appears (thats good), but the size of my solid results in 3900, instead of 3800.

breedte = InputBox("What is the breedte?", "Hoofdmaten", "")Parameter("skelet.ipt.breedte")=breedteIf breedte <= 3800 Then breedte = breedteElse If breedte >= 4000 Then breedte = breedteElse If (breedte >= 3801) AndAlso (breedte <= 4000) Then breedte = 3800 MessageBox.Show("This breedte is not possible." & hoogte & vbCr & "The value of 3800 will be used instead.", "Problem message", MessageBoxButtons.OKCancel, MessageBoxIcon.Asterisk) End If

View 2 Replies View Related

AutoCAD Inventor :: ILogic Save As PDF Color Option Not Working

Jan 16, 2012

I want to save my PDFs as All Colors As Black, but setting the option to 0 or 1 doesn't work, it keeps saving the PDFs in color. Here's the snippet of

 If oPDFAddIn.HasSaveCopyAsOptions(oDataMedium, oContext, oOptions) Then
oOptions.Value("All_Color_As_Black") = True
oOptions.Value("Remove_Line_Weights") = False
oOptions.Value("Vector_Resolution") = 400
oOptions.Value("Sheet_Range") = Inventor.PrintRangeEnum.kPrintAllSheets
'oOptions.Value("Custom_Begin_Sheet") = 2
'oOptions.Value("Custom_End_Sheet") = 4
End If

What is wrong with the option in the second line (shown in red)? I've tried a few other variations of All_Color_As_Black, but I'm having no joy. All the other examples I've looked at either has that option set to False (0) or that line is commented out .

View 4 Replies View Related

AutoCAD Inventor :: ILogic Event Triggers Stopped Working?

Jul 31, 2013

So the other day I set up an external rule and created an event trigger to run the rule on save.  It worked great ... for a couple days, and then it just stopped working yesterday.  I can still run the rule manually and it works fine, but it doesn't seem to run automatically anymore on file save.  Yes, iLogic is set to Loaded / Automati in the add-ins panel.

(on the iLogic rule attachment, remove .TXT from the end.  I had to add that due to the board's rules about file types.)

Product Design Suite Ultimate 2013, 2014
Autodesk Inventor 2013

Work: Dell Precision T1600 (Xeon E3-1280 / 16GB / 512 GB SSD / 250 GB (Internal) / 1 TB (External) / Quadro 600)

Home: i7-4770k / ASUS Z87-Pro / 16GB / 250 GB SSD / 1 TB HDD / 3 TB USB3 HDD / 2xRadeonHD 4870 in CrossfireX

Laptop: Toshiba Satellite P755-S5269 (i7-2630QM / 8 GB / 250 GB SSD / 750 GB HDD / GT540M)

View 9 Replies View Related

AutoCAD Inventor :: Rows In ILogic Form Builder Not Working Properly?

Feb 1, 2013

When I put a row deep enough in a form, i.e. under several groups, tab groups, or other rows, the rows stop working properly.

Inventor 2013 SP 1.1

View 9 Replies View Related

AutoCAD Inventor :: ILogic Code Not Working For Presentation Files In Drawing

Jun 2, 2013

I have found some code which extracts the part number from the iproperties of a model and adds it to the custom iproperties of a drawing but this will only work on iam or ipt files.

Here's the code, I added the lines referring to the docment type as an attempt to fix the error but it didn't work...
 
If (ThisDrawing.ModelDocument Is Nothing) Then ReturnIf ThisDrawing.ModelDocument.DocumentType = kPresentationDocumentObject Then modelName = IO.Path.GetFileName(ThisDrawing.ModelDocument.FullFileName)End IfIf

[Code]....

View 2 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 Civil 3D :: 2012 - Pipe Structure Editing - Changing Preset Lists For Structure Sizing

Nov 4, 2011

We use C3D 2012 (metric only) - We are attempting to customize our list of structures for Sanitary Sewers.  The structure list shows sizes we do not use and we would like to modify them.  However, when we try to select the "Inner Diameter" it displays a list of sizes that we can not seem to modify or add to.

I have looked at some of the XML files to try and modify or add new sizes (example: AeccStructConcentricCylinder_Metric.xml) , but they do not seem to be recognized even after I restart the program.

Here is what the file looks like:

<ColumnConstList desc="Inner Structure Diameter" dataType="float" unit="mm" name="SID" id="CCL1" visible="1" context="StructInnerDiameter" index="0">

<Item id="i0">1200.0000</Item>
<Item id="i1">1350.0000</Item>
<Item id="i2">1500.0000</Item>
<Item id="i3">1800.0000</Item>
<Item id="i4">2050.0000</Item>
<Item id="i5">2300.0000</Item>
<Item id="i6">2550.0000</Item>

I tried modifying the last line replacing 2550 with 3600.

I also tried adding a line  <Item id="i7">3600.0000</Item>

I saved the XML file and restarted the program with nothing changing that I can see.

Looking for correct file(s) to edit so I can modify the LISTS that come up in the piping modules.

View 2 Replies View Related

AutoCAD Civil 3D :: How To Get Pipe Structure To Be Sphere Like Null Structure

Feb 12, 2008

One good thing about null structures is the way they display in 3D. They cover that gap in the pipe segments. Can I steal that shape?
I am currently using a simple cylinder for water pipe "joints" and turning it off like most people do I think.

View 4 Replies View Related

AutoCAD Civil 3D :: Concentric Structure To Eccentric Structure

Apr 30, 2012

I have drawn a pipe network with multiple concentric sturctures. I need to make them all eccentric now. Is there an easy quick way to do this, or do I have to redraw all of them. When I go to the properties, I cannot find an option that allows me to change this.

View 2 Replies View Related

AutoCAD Inventor :: Suppress A Component In Main Assembly?

Oct 11, 2011

I was wondering if there was a way to suppress a component in the main assembly, and keep it from appearing in the parts list whenever I create one in the idw. environment? I am creating an iassembly, and generating different file versions from the main assembly in my table. In order for me to create different versions off of this main assembly, it is required that I suppress certain sub assemblies or components. I can't get the suppressed componenets to not show up in my parts list when I create it. I turned off enabled and visibility and it still appears in the BOM. Creating a different level of detail doesn't even solve this.

I know I can manually not have it show up in the BOM, but it becomes very time consuming trying to make certain rows not appear in the BOM table.

View 2 Replies View Related

AutoCAD Inventor :: Subassembly Not Moving In Main Assembly

Jan 6, 2012

I have a sub assembly with a sliding part in the main assembly but the sliding part is locked, the "flexible" option is greyed out?My head is not in gear this year yet!  Am I able to move unconstrained parts in sub assemblies  via the main assembly by pulling them with a mouse?

View 2 Replies View Related

AutoCAD Inventor :: Stop Update 2D DWG From Main Assembly?

Dec 5, 2013

i have some parts in my assembly wich are rotatable, i made some 2d drawings of my machine.

when change a position in the assembly it also change in the 2d drawing which is logic.

is there a way i can stop inventor from updating my 2d drawing when i change something in the main assembly?

im using inventor 2013.

View 1 Replies View Related

AutoCAD Inventor :: Show Main Assembly As Ref In Subassembly

Feb 14, 2013

I have a sub assembly that I am making a drawing of. The assembly drawing needs to also display the main assembly as a reference part (in phantom lines). The sub assembly is made up of flexible hoses that need their connection points referenced.

Inserting the main assembly into the drawing, so that I can see both the main assembly and the sub assembly together, messes up the parts list and balloons.

There must be a way to dislay the sub assembly in the main assembly and still have the part list and ballons reference the sub assembly?

View 1 Replies View Related

AutoCAD Inventor :: Redefining Main Coordinate System

Aug 7, 2012

I am creating a model for CFD analysis, but I accidentally oriented the entire model and assembly the wrong way--Is there any way to reverse the direction of the +z axis?

View 2 Replies View Related

AutoCAD Inventor :: How To Change Main Model In A Drawing

Jul 27, 2012

I've got a drawing with multiple base views wich means multiple reference models. In my titleblock i've included the mass of my model through

Type: Physical Properties - Model 
Property: MASS 

But now it automaticly selects the first placed base model as the model to select the mass. how can i change the 'active' model to another model/base view? 

View 2 Replies View Related

AutoCAD Inventor :: Constraint In Subassembly Driven From Main Assembly

Jul 22, 2013

I have 4 different sub assemblies , each with a common part , I need to line up all these common parts in my main assembly.

View 5 Replies View Related

AutoCAD Inventor :: Best Technique For Setting Up Project / Main And Subassembly

Sep 21, 2011

Currently I m wokring on fairly large assembly of (as it feels to me) 14441 (Total Occurances in Active Document) and 1765 (Open Documents in Session). Its a complex Jump Form system for a sky scrapper.

Now as I went on with the assembly and saving all the parts, bolted connections and subassemblies in network drive - few of them were accidently saved in my local drive. I have setup a project files for this project and other projects and any one in my team changes the project file to open certain model assembly. So now when i open the assembly it goes fine but if someone else in my team opens that up they get errors of unresloved stuff. Now the things for which I need guidances are,

1. If I pack and go the whole assembly to remove the reslove errors - what will happen to my 100s of drawings (idw)?

2. Few of subassemblies had to undergo pack and go so that they can be changed to suit requirement at some other places after being renamed through design assistant. But now when i open my main assembly after setting up my prjecting file - it gives errors of multiple instances for the subassemblies obtained by performing "pack and go", in relation with the orginal sub assemblies.

3. What is the best technique for setting up project, main and subassemblies?

4. What steps I must need to follow performing pack and go? the destination folder can be a folder in project? if it is outside, how to grab it back in project (simple copy, paste)? After Pack and Go do I have to rename even the bolts before i bring the Pack and Go folder back to my project???

4. Can Autodesk Vault solve my problems? How difficult it is to setup and use Vault?

View 6 Replies View Related

AutoCAD Inventor :: Use Level Of Detail From Subassembly In Main Assembly?

Nov 19, 2012

How can i use a level of detail from sub assembly in the main assembly?

View 2 Replies View Related

AutoCAD Inventor :: IPart BOM Structure

Sep 28, 2009

How do I change the BOM structure of iParts from Normal to Purchased? The BOM editor in the assemblies that use the iParts have the iParts as read only. I can't find a way to change them to purchased from inside the iPart either.

View 3 Replies View Related

AutoCAD Inventor :: BOM Structure Of CC Parts

Oct 20, 2011

I've copied over some hardware from the CC to our custom library... washers and bolts.  How can I change the BOM structure of the parts to Phantom, I really don't want them showing up in parts lists... and I'd prefer not to just shut off the visibility at that level.  They are all set to "Purchased"... can this be changed?  I tried opening the part and setting the default to Phantom, but since it is a CC part, I get an error message.

View 3 Replies View Related

AutoCAD Inventor :: Different BOM Reference Structure In Same IAM Possible?

Jul 26, 2012

Let's say i want to draw a bike. In the 2D IDW of the wheel I want to see the frame as a reference. So, in the .iam of the wheel the frame subassembly is inserted and checked as reference. Also, a new level of detail is created that surpressed the frame.This level of detail is used in the overall assembly of the bike.

So, I end up with several subassembly's that contain other subassembly's just to reference them in the IDW. It would be better to have just one master assembly and create several IDW's from that assembly with different LOD and reference settings.

Inventor 2012 - 64 bit - build190 - Windows 7

View 4 Replies View Related

AutoCAD Inventor :: Customization Of BOM Structure

Sep 28, 2012

I'm trying to do a customization of the Bom structure to obtain a new custom column "Qty*x" (where "X" is a number).

I need this because in my order I have multiples of these items.

View 1 Replies View Related

AutoCAD Inventor :: BOM Structure Automatically Changes?

Nov 2, 2011

I am working on an assembly and trying to build a BOM.  I am using the BOM editor to change everything on the fly but I am running into an issue.  For some reason there are a few parts that don't want me to change their BOM structure.  I change them from "Normal" to "Purchased" but they instantly change back to "Normal".  I have all the files checked out and in the parts document settings it's BOM structure is actually correctly labeled as "Purchased". 

Inventor Professional 2010

View 2 Replies View Related

AutoCAD Inventor :: Sub-assembly With Two Different BOM Structure

Jun 6, 2013

I need to have a sub-assembly (named ass1) with two different BOM structure: one should be normal and the other should be phantom.

The normal one I need to use it in main assembly (named assy2). In the drawing of assy2  I need to show the assy1 in the Part List.

The phantom one I need to show in another assembly (named assy3). In the drawing of assy 3 I need to show the components of assy1, not the assembly.

View 5 Replies View Related







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