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


ADVERTISEMENT

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 :: 2014 - Export Material Library As List?

Oct 11, 2013

In Inventor 2014, is it possible to export a list of all of the materials in a given material library..? As text, or into Excel, or something similar?

I have a material library in Inventor 2014 containing lots of custom defined materials. I would like to create a master list that I can give to someone who isn't using Inventor. The only property that I really need to export is the material name, e.g.' CSA G40.21-44W'.

In this case, engineering is trying to coordinate better with purchasing, by making sure that materials are specified in the same way in both departments.

View 2 Replies View Related

AutoCAD Inventor :: Customizing Frame Generator Material List

Jul 23, 2012

I know that the material list you get inside of the frame generator comes from CC, but is there a way to add other types of frame styles to the generator?

What I have is we need to create some Uni strut frames and this material is not in the frame generator and I would like it to be for the functionality that this tool brings.

View 5 Replies View Related

AutoCAD Inventor :: Assemblies Display Welded Aluminum For Material In Part List?

Jun 20, 2013

In our part list we have a column for Material, ipt's display the material and iam's display blank expect for a few instances that display Welded Aluminum-6061(see attachment). These assemblies are all steel and not weldments. What would cause this and how can it be fixed?

View 2 Replies View Related

AutoCAD Inventor :: How To Use Sheet Metal Style / Material Appearance In A Parts List

Mar 29, 2013

We use different types of sheet metals, from stainless to bronze, and different thicknesses.

Currently, in order to show the correct material on a parts list, I have to duplicate the material Stainless Steel, and rename it to say 20 Gauge Stainless Steel. Then again for 16 Ga, 14Ga, 12 Ga, etc...

I'd like to have the parts list show the common material such as "Stainless Steel", with another column for the sheet metal style such as "20 Gauge."

We also use items such as Plastic Laminate. I'd like to create a generic material for the physical properties of "Plastic Laminate", and then change the material appearance to say "Formica #1234 Walnut". Again, i'd like to be able to put this in (2) columns on the parts list.

View 1 Replies View Related

AutoCAD Inventor :: Create List Of Text Strings To Select From Defining Material Thickness?

Nov 7, 2011

Im trying to create a list of text strings to select from defining material thickness and then plug that selection into a global form custom iproperty called "MaterialDescription".. Also, is it possible to access and pre-enter field text edit items in iLogic?

View 3 Replies View Related

AutoCAD Civil 3D :: Cut-Fill Material List

Sep 4, 2012

Trying to get the cut/fill quantities by computing the materials & I'm getting confused.

I imported another criteria & for ground removed it has existing as below & my datum as above.  For fill, it has the datum below & existing above.  The cut/fill matches a comparison between the 2 surfaces, but I just want to make sure I'm doing it right. Explain why for cut the datum's set to above & for fill it's set to below,

View 1 Replies View Related

AutoCAD Inventor :: Cannot Delete Unused Material In Material Editor

Nov 2, 2013

I can delete every unused material except one in the Material Editor.I am trying to make the custom Material library and somehowI have got the Material I cannot delete. URL....

View 9 Replies View Related

AutoCAD Inventor :: Adding Material And Texture To Material Library?

Mar 12, 2013

I am in the samill building buisness.  While designing I thought it would be nice to show logs on our equipment.  Is there anyway to show bark on drawings to show the texture on the final drawing?

View 1 Replies View Related

AutoCAD Civil 3D :: Selecting Boundary Surfaces For Materials In Material List

Jul 3, 2013

When I'm creating a material list, every time I select two surfaces and one is smaller than the other, a vertical boundary is created rather than a boundary with the shape of exactly the space between those two surfaces. 

View 1 Replies View Related

AutoCAD Visual LISP / AutoLISP :: Convert Every Element Of List To String

Jul 17, 2012

I have a list of (0 .4 .8 0 10). I want to convert every element of the list to string.

View 4 Replies View Related

AutoCAD Visual LISP / AutoLISP :: Convert Polyline - Bad SSGET List

Feb 5, 2013

I have a data structure called LayerList in the format [LIST "LayerName" "Linetype" Thickness Color]I then use the following piece of code to go through the structure selecting polylines and converting all polylines on a given layer to the correct thickness

   (foreach layr layerlist
       (setq player (car layr))
              (if (setq ss (ssget "x" '((0 . "*polyLINE") (8 . player ) )))
                      (command "pedit" "m" ss "" "w" 0.15 "")
                      (princ "
No polylines exist!")
      )
   ) 

However all i keep getting is Bad SSGET list value at the command line,

View 3 Replies View Related

AutoCAD Visual LISP / AutoLISP :: Convert List With String Or Lists Of Strings To Text

May 22, 2013

Someday the light bulb is going off and I will understand mapcar and lambda. However.....I have a program that reads an excel file sheets. Sometimes the sheet only has 1 column, sometimes 2 or more.

I need to convert the saved values from the sheet to a list with the text spaced evenly. Unfortunately the text lengths vary. I would like a subroutine to pass the list to and return a list of strings with text aligned with padded spaces allowing for the longest text in each column. I am using the new list in a dialog box with fixed_width_font=true (so columns align).

Example 1-

(setq List1 (list "Col1-Line1" "Col1-Line2" "Col1-Line3-longer" "Col1-Line4"))
(AlignText List1)
returns
"Col1-Line1"
"Col1-Line2"
"Col1-Line3-longer"
"Col1-Line4"

so no padding needed

Example 2 -

(setq List2 (list (list "Col1-Line1" "Col1-Line2" "Col1-Line3-longer" "Col1-Line4") (list "Col2-Line1-longer" "Col2-Line2" "Col1-Line3" "Col2-Line4")))
(AlignText List1)
returns
"Col1-Line1        Col2-Line1-longer"
"Col1-Line2        Col2-Line2       "
"Col1-Line3-longer Col2-Line3      "
"Col1-Line4        Col2-Line4      "

 Example 3 -

(setq List3 (list (list "Col1-Line1" "Col1-Line2-longer" "Col1-Line3" "Col1-Line4") (list "Col2-Line1-longer" "Col2-Line2" "Col1-Line3" "Col2-Line4") (list "Col3-Line1-longer" "Col3-Line2" "Col1-Line3" "Col3-Line4")))
returns
"Col1-Line1        Col2-Line1-longer Col3-Line1-longer"
"Col1-Line2-longer Col2-Line2       Col3-Line2       "
"Col1-Line3-longer Col2-Line3      Col1-Line3       "
"Col1-Line4        Col2-Line4      Col3-Line4       "

View 5 Replies View Related

AutoCAD 2013 :: Convert Sheet List Table Into Editable Excel Or Word Document

Jun 5, 2013

I am trying to convert my Sheet List Table into an editable Excel or Word document.

View 1 Replies View Related

AutoCAD Inventor :: 2013 - Inventor Material Library Not Found?

Jun 15, 2012

Can't seem to locate the Inventor Material Library....under Default in Projects, the Inventor Material Library is highlighted in Red.  Where I need to browse to inorder to locate it?

View 2 Replies View Related

AutoCAD Visual LISP / AutoLISP :: Convert List Of Numbers To A Range Of Missing Numbers

Jul 18, 2013

I have subroutine that retrieves a list of detail numbers in a drawing. Sometimes there are missing numbers. I am looking to find a list of any missing numbers.

Example -

(setq List_DN (list 1 2 3 5 6 7 10 11 12 17))

Missing numbers are - 4,8,9,13,14,15,16

I would like a subroutine to take the List_DN are return the following missing numbers as text

(Get_Missing List_DN)
return
4,8-9,13-16

View 9 Replies View Related

AutoCAD Inventor :: Any Way To Add Material To DWG

Jan 5, 2012

Is there a way for the scale to be correct to the drawing?

View 1 Replies View Related

AutoCAD Inventor :: Material Change Using API

Jul 3, 2013

I changed the material using the vb.net code shown below.but after changing material the object is not updated ,the volume and mass didn't change .
 
Dim oDoc As PartDocument
oDoc = inventorApp.ActiveDocument
Dim oDTProps As PropertySet
oDTProps = oDoc.PropertySets.Item("{32853F0F-3444-11d1-9E93-0060B03C1CA6}")
[code]....

View 9 Replies View Related

AutoCAD Inventor :: Direction Of Material

Apr 24, 2012

How to make a type of material go in one direction or by another degree .  Ex: if you click on a wood type material, it goes up or down and right or left depending which side of that object is.  On the picture below, it goes up and down, side to side no all sides go in one direction.  I need to know how to mange the direction of the way of where the material go.

View 7 Replies View Related

AutoCAD Inventor :: Export And Keep Material And COG

Nov 1, 2012

Is there a way to export a Inventor .iam/.ipt to .stp/.sat and keep material property and center of Gravity?

Is there any "external" format that will keep these properties?

View 2 Replies View Related

AutoCAD Inventor :: How To Add Raw Material To IPT - BOM / Vault

Oct 26, 2011

We are a mid sized company the builds our parts from raw materials. Steel Coils, Steel tubing, Steel plate, etc.

We are have been migrating from MDT to Inventor over the last few years. We are now trying to implement Vault and integrate that data into our ERP system. We would like to model a part and assembly and check that into Vault then pass the BOM into our ERP system.

It all sounds good up until I looked at how our part files were structured. There is not BOM in an ipt that I have found phantom or referential. Here is my problem

It takes 1 lb of a .0625" thich steel sheet that is 6.5" wide. We stamp our product in a 200 ton press producing a finish componet.Problem 1- Part1.ipt (model of my stamping) does not have a lower level it is a component in Inventor there is no BOM that I have found.Problem 2 - Part2.iam uses part1ipt but we punch a hole in it and push material outward to create a lip so we can lap weld the next part.When I try to extrude this feature I can only cut the part I cannot add material or deform it in any way.Problem 3 - We also manufacture bent tubes. We consume 1.5 ft of part C to make part D. I cannot insert 1.5ft of a part that is 20ft long as we buy it. then we bend it. I cannot insert a 1.5ft part into an assembly and then bend it.

Major problem - even though I can change the dwg file or idw file to add a parts list Vault does not put this information in the Item master BOM.

View 9 Replies View Related

AutoCAD Inventor :: Set Material As Parameter?

Jan 31, 2012

I would like to have the material, color etc. as parameter so i can change it with an ilogic form. 

In this video you can see what i mean:

[URL]

When I make a ilogic form i can only select parameters and iproperties.

View 4 Replies View Related

AutoCAD Inventor :: Template For A Sheet Material

Apr 11, 2012

I created a template file for the sheet material with the specified type of material, sheet thickness and the radius of bending. Placed in the Templates folder. Call the template from the menu, HED, and all settings are reset to Default? How to make a new file so that all settings are saved?

View 3 Replies View Related

AutoCAD Inventor :: Save New Material To Library?

Sep 11, 2012

I have a user that has created a new material which is now sitting as a local style. We require this new material in the library so that everyone can use it.  I tried RMB on it but the save to library functon is greyed out. This is due to the styles being read only in the project file. So I have tried to change the project file so we can add the style and then I'd change it back again, but, even though I have checked out the project file from vault, it won't allow me to edit it. What else can be locking the project file?  Is there some other way I can place the new material into the style library in the project file? There are quite a few of us that use the project file since we use vault, so I'm not sure I should create a new one with the same name and save over it. 

View 3 Replies View Related

AutoCAD Inventor :: Change Material In BOM -> Not Possible For All Parts

Jan 10, 2013

If I need to change the material of all parts in an assembly I find it convenient to do this in the BOM. In the 'parts only' view I add the material column, change the first one and just drag it down like in Excel.

There are however some parts where the material is greyed-out (see attached image) and I cannot change them in to something else. I already traced this to parts which are present in multiple different sub-assemblies. I guess that's also the reason for the blueish/red icon instead of a normal part icon.

If I open one of the sub-assemblies the part is fine and I can change the material.

Inventor 2013

View 2 Replies View Related

AutoCAD Inventor :: Assigning Material To Parts?

Jun 16, 2013

I need som code to assigning a material to a part in VBA.

Dim oApp As Inventor.Application  
Set oApp = ThisApplication    
Dim oDoc As PartDocument  
Set oDoc = oApp.ActiveDocument    
Dim oPropsets As PropertySets  
Set oPropsets = oDoc.PropertySets
 Dim Mat As String    

[code]....

but the material is not changed .....

View 1 Replies View Related

AutoCAD Inventor :: Color And Material 2013

May 23, 2012

Why Inventor rename some colors/material when migrating style library from 2012 to 2013? It's very annoying (and stupid in my opinion).

And Inventor said me "Some color/materail was renamed". Yeah good information but can you said me which color was renamed?!?

Does the developpers think about Vault when changing those color? What is the impact on the file (edited out of turn by example...).

Our customers have many colors who become differents when migrating to 2013 and it's not acceptable.

View 5 Replies View Related

AutoCAD Inventor :: Autodesk Material Library Is Not Available

Apr 26, 2011

We have recently upgraded from Inventor 2011 Routed Systems to Inventor Pro 2012.  We are using XP fully updated to the lastest SP and everything.  We have everything configured to our preferences but there is one thing that has been driving me batty.  When editing a solid part I open the Style and Standard Editor.  Down near the bottom under Realistic Appearance where there should be a ball with a shiney swatch there is a yellow triangle mocking me saying Autodesk Material Library is not available, also none of the bump maps are showing up on new or migrated files whether this is a related issue I am not sure of.  All of the normal and custom textures show up just fine, and all the bump textures are in their correct folder in the correct place.  I have tried switching the design data folder around with no success. 

View 7 Replies View Related

AutoCAD Inventor :: Material Library Not Showing Up?

Oct 7, 2013

I am using inventor 2012 but the material library is not loading.Then i go to the Manage> Styles Editor> and clieck on color or material it only gives me the option of defualt.

The drop down box in the top right is greyed out so i cannot change this either.

It works fine on another PC just not mine.I have downloaded the material pack from the website also.

I have also changed the hardware settings. I have tried all 3 hardware settings and it makes no differance.

Running windows 7 x64, 8 gigs of ram 3.4 quad core, 128gig SSD.

Everything is up to date.When i installed the material library download the material library was working, but when i opened a file the material library went back to how it was above.

The files i am using are from models i made in inventor 2010, but there is no problem on another PC i use.

View 5 Replies View Related

AutoCAD Inventor :: Add Nitinol In Material Library?

Oct 31, 2013

I was wondering if there is a way to import or add Nitinol alloy into my Inventor material list. I need to do stress simulations and Nitinol is not included... 

View 3 Replies View Related







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