AutoCAD Inventor :: API Calls List

Jul 17, 2012

I've found things like:

Dim odoc As Document
Dim ocompdef As ComponentDefinition
odoc = ThisApplication.ActiveDocument
ocompdef = odoc.ComponentDefinition

And

ActiveSheet.View("VIEW1").ScaleString
ActiveSheet.View("VIEW1").View.Suppressed

I'm wondering, is there a list available detailing the content of the Inventor 2013 API and a list for the iLogic properties of objects? Preferably with some sort of description what they do.

View 4 Replies


ADVERTISEMENT

AutoCAD Inventor :: Get Parts List From The BOM

May 11, 2012

It seems like most people output the whole BOM.  I only want to data in the Part Number column, preferably as a list of strings.

Here's what I have so far:

foreach (Sheet oSheet2 in aDoc.Sheets){ for (int i = 1; i < (oSheet2.PartsLists.Count+1); i++) { var oPartsList = oSheet2.PartsLists[i]; for(int k = 1; k < oPartsList.PartsListColumns.Count+1; k++) { if (oPartsList.PartsListColumns[k].Title.Equals("PART NUMBER")) { //what goes here??? } } }}

View 1 Replies View Related

AutoCAD Inventor :: BOM - Material List

Apr 1, 2012

We have a general template (excel file) for material list. Is there way to connect this template with inventor. Or alternatively change the inventor BOM list to suite our template?

View 1 Replies View Related

AutoCAD Inventor :: Get The Parts List From The BOM

Feb 4, 2013

I've been using the "Phantom" BOM Structure to roll up duplicate .ipt's when I have more than one sub-assembly within a higher .iam and it has worked well.

Question - is it possible to adjust settings so that the .iam that I "Phantom" itself remains as a visable line item in the Parts List while still rolling up like .ipt's?

View 2 Replies View Related

AutoCAD Inventor :: How To Get A List Of Parts

May 16, 2012

I have a drawing and I need to get a list of parts.  I see *most* solutions use the parts list on the sheet itself.  I will not have access to that. Is there a way to get a list of parts WITHOUT accessing oSheet.PartsList[1] ?

Win7 x64 - 16gb ram
i7 3610qm
FirePro M4000

Inventor 2013
ETO 6.1

View 9 Replies View Related

AutoCad :: Generate Part-list And Order-list In 2011?

Oct 5, 2011

I have some blocks (different exit signs) in a drawing. I want to make a table or excel sheet that sums up the number of equal blocks in the drawing. How can i make this?

I want to connect this tabel to excel 2010.

I use AutoCad LT 2012.

View 7 Replies View Related

AutoCAD Inventor :: Parts List With Thumbnail

Sep 6, 2013

As an academic interest I was trying to convert Brian’s code for exporting Parts list with thumbnail to VB.net 2012. I just modified the below code to remove the vb6 support. I am using VS 2012 and Inventor 2014. The end result on the word report thumb nail for some parts are not visible. It goes to the error code and putting the text instead of thumb nail. At the same time Brian’s code as it is (used the exe file to install it) works fine on the same parts list with all thumb nail.
 
#Region "PictureToImageConverter"
Public NotInheritable Class PictureToImageConverter
Inherits System.Windows.Forms.AxHost
Private Sub New() MyBase.New(Nothing)

[Code] ......

View 1 Replies View Related

AutoCAD Inventor :: Filter Part List

Nov 27, 2012

Need vb.net code for filter part list base on view representation.

View 1 Replies View Related

AutoCAD Inventor :: Convert List Of Material Into PDF

Dec 9, 2011

Necessary to convert list of material of the assembly (IAM) into archive pdf. (bill of Material)

View 3 Replies View Related

AutoCAD Inventor :: Barcodes In A Parts List

Oct 22, 2012

We would like to put barcodes in a parts list. To create a barcode we use a special barcode font.

It's impossible to have two types of fonts within one parts list, but is there an other way? Is there code (VBA) to generate a table with an extract of the bill of materials and a barcode generated

with a special font on the fly. We would basically need a parts list with an extra column for the barcode.

Autodesk Inventor Product Design Suite 2013 SP1.1

View 3 Replies View Related

AutoCAD Inventor :: Second Part List In Drawing

Dec 21, 2011

I need to use 2 part list in my drawings. I have made the second part list in the style editor and saved it but how do I select it?

View 1 Replies View Related

AutoCAD Inventor :: Bom / Parts List Row Height?

Aug 30, 2013

is there any way to make all the rows in the BOM/parts list on an IDW the same height? I did a search on this and saw nothing new on this. the reason we need this is for a program we use after export to dwg. it is a program we use in autocad that is a txt copy lisp program to populate attributed customer title blocks.

win 7 64 bit sp1
cpu intel xeon E5-2687W0@3.106
eight core
two solid state hard drives
32 gig of ram
Autodesk product design
suite premuim 2014 64bit
Nvida quadro 4000
Space Pilot ver. 1.6.2 2010
slphantom (NNTP handle: scottl)

View 2 Replies View Related

AutoCAD Inventor :: Multi-Value List Not In Order

Jan 10, 2012

I am trying to create a form, so that my designers can pick their parameters when they first start a new part. 

For this form I have created a multi-valued parameter for them to select from.

My issue is, why does Inventor not list fractions in the correct order.

What I would like to see:

1/8"
3/16"
1/4"
5/16"
3/8"
7/16"
1/2"
9/16"
5/8"
11/16"
3/4"
13/16"
7/8"
15/16"
1"

What Inventor lists:

1"
1/2"
1/4"
11/16"
13/16"
15/16"
3/8"
3/16"
5/8"
5/16"
7/8"
7/16"
9/16"

Is there a way to get Inventor to list these parameters in order of value?

View 2 Replies View Related

AutoCAD Inventor :: VBA List Open Documents?

Mar 1, 2013

Is there a way to get a list of the currently open documents in VBA?

Right now to process a bunch of open drawings I simply process the active drawing and then close it, then repeat until all are closed. I'd like to be able to get a list of open documents and switch between them to process them all, which would leave them open.

View 8 Replies View Related

AutoCAD Inventor :: Get Feature List As Spreadsheet?

Aug 9, 2012

I have just inherited a project where I have been asked to supply our purchaser with a list of non-stocked fixings.

OK so far, i hear you ponder, but the designer for reasons of speed (his words) didn't add the fixings to the assmbly!

Is there any way to list all tapped hole features to an excel spread sheet so that i could then just sort and count and then be able to hilite the specific parts in inventor to find the length?

The prospect of looking at each individual part for tapped holes fills me with dread (shudder).

HP z210 16Gb ATI FirePro5800
Autodesk Produst design Suite 2012

View 4 Replies View Related

AutoCAD Inventor :: List Of Changes When Updating Drawing?

Jan 10, 2014

I wounder if there is a way to see which dimensions that have been changed when you update a drawing? (after changing the model)

View 5 Replies View Related

AutoCAD Inventor :: How To Create Area In To BOM List

Mar 25, 2013

How to create area in to BOM List.Why Inventor 2013 can't do that?

View 9 Replies View Related

AutoCAD Inventor :: List Of Sketch Constraints

Nov 11, 2013

Does Inventor (2012) have the option to view sketch constraints as a list? I feel like I am playing pictionary trying to find out what constraint is what and what it is constraining and it doesn't work that Inventor stacks anything nearby on top of each other.

I've attached a file showing what the problem is, please don't judge the model tree.  I was prototyping as I went so it is messy.

View 9 Replies View Related

AutoCAD Inventor :: Parts List Sorting

Apr 23, 2012

Want parts to be sorted from 1 ascending. Add a part number in custom properties as a number. Asks the part list to sort - ends like this: 1, 10, 11, 12, 13, 14, 15, 16,......, 2, 21, 22, 23, .......,3 , 31 and so on ?????

Is this a bug or how do I change this?

View 6 Replies View Related

AutoCAD Inventor :: Parts List With All Levels

May 7, 2012

I'm trying to create a parts list that will show item numbers for the sub assemblies and the individual parts for each sub assembly.  When I'm creating the parts list in the drawing, the option for "All Levels"is greyed out once I select my source assembly.  How I can show this in a Parts list?

View 9 Replies View Related

AutoCAD Inventor :: Parts List / BOM Configurations

Mar 22, 2012

In the continuing saga of me trying to learn Inventor, I have a question about the said named subject. I have a BOM that I need some subassemblies shown as such and others showing as the individual parts.

How do you configure the BOM to show both?

View 7 Replies View Related

AutoCAD Inventor :: Grouping In Parts List

Sep 16, 2013

I have an assembly that I have the BOM property set to phantom. Consists of 7 parts, each have a bom property of purchased.

All parts are the same but cut to length in the shop. Parts list are based on parts only BOM. If I create a parts list based on just the assembly, I can group the items, they all have the same part number, and display the group participants,  and the item numbers and everything works as expected.

If I use this assembly as a subassembly in a larger assembly and create a partslist with the same group keys, the subassembly does not show as a group, does not show group participants or corresponding item numbers.

What I'm trying to do is show total length of a product that we buy on a spool for this assembly. To do this I'm using substitution in the qty column. Most parts are purchased each, these are purchased by length. What would cause the parts list to display as a group in one list but not in the other?

View 3 Replies View Related

AutoCAD Inventor :: Expand Parts List In Dwg?

Jan 8, 2014

I have a drawing detailing an assembly with a 3 sub- assemblies. Each sub-assembly has 4 parts. When I add a parts list only the 3 sub-assemblies are listed. Is there a way to generate a parts list with 12 parts?

View 2 Replies View Related

AutoCAD Inventor :: G_L To List Cut Length Of IPart

Oct 24, 2008

I have been able to create an upright with slots and holes to the length of 29-1/4" and via two seperate cut extrusions cause the part to shorten using iParts. I was told that the Frame Generator uses the parameter of G_L to populate the new cut length for use with the parts list. I have been able to create a frame generated part and get the length to populate the parts list however I have not been able to get my upright cut length to show in my parts list.

I did create a new property in my parts list column chooser, my BOM is set to Phantom, my .ipt parameters has a user parameter of G_L/equation of Length which above is listed as 29.25 in. Every thing that I can think of is the same from my frame generated files to my upright files.

Right now my parts list will not even show quantities of any kind. How to get parts list to show the cut length?

View 1 Replies View Related

AutoCAD Inventor :: Precision In Parts List?

Apr 11, 2012

How to set display of precision in my parts list to just one digit?

When I edit parts list set up im styles editor or edit parts list and go format column, apply units formatiing and set columns for one unit type and precision, then I get an error about units being incompatible because some items I have listed as each some by lf.

How to change precision in one column of parts list and keep unchanged unit formatting?

View 4 Replies View Related

AutoCAD Inventor :: Put Part List Drawing

Jan 6, 2013

im using inventor 2012.im trying to put a part list on my drawings.but for some reason, the part list is using a Gost Form. ( diffrent layout and polish/ russian text )How do I go back to default.I have allready tried to reinstall inventor, no go.

View 2 Replies View Related

AutoCAD Inventor :: Find And List With Ilogic

Nov 18, 2013

Trying to have ilogic find parts in an assembly that start with 900C7 so I can link the to a cell in excel showing the QTY and the LENGTH..

Right now I am just trying to get ilogic to find and list them then I know I can move to the next step..

Example:

 900C71.250

 900C72.125

 900C7A.750

 900C7P1.1875

 And many more.

Here is what I have but it keeps posting the NOTHING message box. I have a few of the parts in the assembly and a few none 900C7 parts.

Dim openDoc As Inventor.DocumentDim docFile As Inventor.DocumentDim assemblyDoc As AssemblyDocumentDim partOcc As ComponentOccurrenceDim FNamePos As LongDim docFName As StringDim oList As Collection = New CollectionopenDoc = ThisApplication.ActiveDocumentIf openDoc.DocumentType
[Code] .....

Here is a screen shot of the excel file what I am trying.

View 9 Replies View Related

AutoCAD Inventor :: Different Parts List Styles?

Sep 4, 2013

Styles in Inventor have always been confusing to me. I have ONE project file, ONE teplates folder, but TWO different drawing templates (one for single part drawings, one for assembly drawings). For simplicity sake, lets say the ONLY difference I want between the two drawing templates is the parts list. The assembly template parts list should have lets say one more column than the other.

I did what I thought should do it but it isn't working properly. What's the best way to accomplish this? Right now within the same style library I have two parts lists set up, and I have two "standards". The only difference between the two standards is which parts list box is checked on "available styles". When I change "object defaults" to onw parts list or the other, it changes that default for all drawing templates, not just the one I'm using.

View 9 Replies View Related

AutoCAD Inventor :: Parts List Of Sub Assemblies

May 31, 2012

I have one main assembly with two seperate sub assemblies in it.  I need to make two drawings showing the installation of both sub assemblies (one drawing for each).  I need to insert views of the main assembly into each drawing, showing the overall view of the install, but I need the balloons to represent the sub assembly BOM. 

I tried making the sub assembly I'm not currently showing, Phantom, and I have a design view set up to hide the information of the sub that is not part of the current drawing.  That seems to work fine for the first drawing, but when I change the BOM (of the main assembly) to suit the next drawing, it affects the first drawing.  How can I use one main BOM to suit two different drawings, showing only certain components?  Or can I "tell" the balloons which BOM to reference?  (I have the BOM of the sub assemblies set up the way I want them as well)

View 3 Replies View Related

AutoCAD Inventor :: Make BOM List With Unit QTY

May 30, 2013

I used to add some parts to CC in Inventor and also some profiles. Whenever I create an assembly I want these profiles I made myself to be counted in millimiteres, whereas it is counted in how many pieces of this long profile I used.

I want these custom made profiles to be counted same as standard pipes from CC- in millimiters.

View 2 Replies View Related

AutoCAD Inventor :: Sum Some Parts List Items

Nov 22, 2011

I have what turns out to be the first parts list in three years where I need to sum the lengths of a couple items together to get a total length for that material in feet.

What do I need to do to get the two lines in the attached screenshot to sum their lengths together? I would be happy to add another column to the list for this, perhaps the "Unit Quantity" column where most everything is set to "Each" but the two lines shown are summed into a length in feet (or anything like that). How can I accomplish this?

View 2 Replies View Related







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