AutoCAD Inventor :: Dragging Parts In Folder

Jun 6, 2013

When I drag parts in the browser to a folder I created half the time they end up just above. I always wait for the folder to highlight blue before dropping but why don't part go there as requested all the time?

Is this a step up on my station, precision of the cursor? My colleagues don't seem to have this problem but we can't see any differences in our step up except I use a different mouse.

View 7 Replies


ADVERTISEMENT

AutoCAD Inventor :: How To Copy IAM / Several Parts To Another Folder

Oct 16, 2003

How to copy an IAM & several parts to another folder (I created a new project folder for them) using DA without messing up the original file structure. I'd like to change the new IAM file name & only several of the parts that are not common to the original (Stand alone environment, no network).

View 5 Replies View Related

AutoCAD Inventor :: Moving Virtual Parts To The Folder

Dec 8, 2013

I have a script that is perfectly works in 2012 inventor pro version. It moves newly added virtual parts into the VIRTUAL_PARTS folder. Part of script is below:
 
Dim oFolder As BrowserFolder Dim oTopNode As BrowserNode oTopNode = oPane.TopNode() Dim oTopNodeOcc As BrowserFoldersEnumerator oTopNodeOcc = oTopNode.BrowserFolders For Each oFolder In oTopNode.BrowserFolders i = i + 1 Next If i = 0 Then oFolder = oPane.AddBrowserFolder("VIRTUAL_PARTS", oOccurrenceNodes) Else For Each oFolder In oTopNode.BrowserFolders If oFolder.Name = "VIRTUAL_PARTS" Then For Each oOcc In oAsmCompDef.Occurrences If TypeOf oOcc.Definition Is VirtualComponentDefinition Then oNode = oPane.GetBrowserNodeFromObject(oOcc) End If 'MsgBox(oTopNodeOcc(1).Name) oTopNodeOcc(1).Add(oNode) Next Else ' do nothing End If Next End If 

In 2014 pro it works only once, when I add first virtual part. It creates a folder and moves it there. When I add 2nd virtual part it gives me a error

see screenshot below.

View 4 Replies View Related

AutoCAD Inventor :: How To Copy A Folder With Assembly And Parts

Jun 23, 2011

I often want to copy a design (assembly plus used parts) to some other folder as a quick start for some derived work. I  want to be able to work on this copy without influencing the original and visa versa.

The problem is when copying with the windows copy command, the references to the parts point to the original folder. I read that you can use the Copy feature of the Vault for this. But I'm not using the Vault and don't want to.

Pack and Go is also not a good solution because it copies a lot of other stuff and makes a new project file. How can I do this. It seems so a simple operation. But I can not figure out how to do that!

View 9 Replies View Related

AutoCAD Inventor :: Copying CC Parts To Custom CC Folder

Apr 4, 2013

how to copy parts from the existing CC to newly created custom folders within the CC.  We are now just starting to look into which parts we want to be in our custom folders moving forward.

Once we copy them over, the plan is to change the descriptions and possibly some dimension values.  Because we are in the early stages of revamping our companies part number scheme the thought was to keep the out of the box P/N's currently showing in the family table of these parts.  Some of these parts have already been used as "Standard" (not custom) from out of the box in the CC and these said parts have already been checked into the vault.  If we are not changing the part numbers in the copied parts family table, is this going to create errors when checking these copied parts into the vault?  Part of me is saying I am going to get the "This part already exists in the Vault" error message being they are standard parts  But, the other part of me says technically they are different so maybe this wont be an issue.  I am looking for confirmation of this.

I also would like to know if it is possible, when you have two separate custom folders in the CC can you copy the same component into both folders changing only slight things.

Inventor Suite 2012
Windows 7 Professional
Intel (R) Xeon (R) CPU 3.47 GHz
12.0 GB Memory, 64 bit OS

View 3 Replies View Related

AutoCAD Inventor :: How To Sort Parts Inside Browser Folder

Nov 17, 2012

Alpha sort in assembly bonus tool sorts outside browser folder. Is there any method (API) to sort inside browser folder?

View 3 Replies View Related

AutoCAD Inventor :: Force Users To Particular Folder When They Save 3D Parts?

Mar 20, 2013

Within my InventorAddin in vb.net we are trying to force users to a particular folder when they save 3D Parts, Drawings etc.

This 'SaveAs' form does indeed fire, but after the 'Inventor' own 'SaveAs' form window. Can we suppress 'Inventors' window or even change that so it points to our preferred location.?

If we do not do this we are goinf to have 3D Drawings in the Parts folder etc etc.

PrivateSub applicationEvents_OnSaveDocument(DocumentObject As Inventor._Document, BeforeOrAfter As Inventor.EventTimingEnum, Context As Inventor.NameValueMap, ByRef HandlingCode As Inventor.HandlingCodeEnum) Handles applicationEvents.OnSaveDocument
If iApplication.ActiveEditDocument.FileSaveCounter = 0 Then

[Code].....

View 1 Replies View Related

AutoCAD Inventor :: Force Save Of Drawing's Parts And Assembly To New Folder?

Feb 8, 2013

How may I best reuse a legacy assemlby and it's drawing to create/update to an vairant assembly?

View 3 Replies View Related

AutoCAD Inventor :: Vault - Copying Files From Folder To Folder

Aug 29, 2012

I am trying to copy big assembly with its folders from one folder to another.I cant use Copy Design because I get too long path error.

Alternative way of copying files and keeping its relationships?

View 3 Replies View Related

AutoCAD Inventor :: IPart Creating Folder Within Project Folder?

Dec 13, 2011

I create an I part and I noticed it creates a folder within my main folder. This introduces a bit of chaos into my folder structure, is there any way around it?

View 5 Replies View Related

AutoCAD Inventor :: Replacing Parts With Custom Parts Created From Content Center

Sep 27, 2012

I am trying to replace a custom part - created from a content center part -  with a copied part with a different name.  (I am using the replace tool in an assembly.)  However, Inventor is not replacing the part with the part I pick but rather the content center version of it.

View 3 Replies View Related

AutoCAD Inventor :: Showing Two Instances Of Parts List And Adding Custom Parts

Mar 30, 2012

On the main sheet of my drawing I have the overall Parts List.  Shows almost all parts except for the few that we don't want to list.  On the second sheet I inserted a Parts List to show only parts that are shown in a detail on that page, made the rest non-visible.

On the main sheet there is an item (#13) that has a QTY of 3.  Two of those Three are optional parts.  What I'm trying to do is insert a custom part into the Parts List, give it an item number of 13A and put in the description "OPTIONAL", then do an Override in the balloon to show 13A.

I get it in the Parts List, Apply it, close it, save the drawing.  Looking at the Parts List, item #13A is there, but item #14 is gone.  I go back into the Parts List and 13A is there and there's a blue box around the item # and the description.  I uncheck Static Value and number 14 shows up (item # and the description).

Then I go over to sheet two, open that Parts List and it lists 13A at the bottom with all the info I added in sheet one and it's non-visible.  Go back to sheet one, open the Parts List and there is no 13A to be found.

View 9 Replies View Related

AutoCAD Inventor :: Creating Parts With Work Planes Defined By Other Parts

May 2, 2013

I am working on an assembly that is designed around a box (bounding box) that could change size.  I modeled the bounding box and placed it in a new assembly file.  All other parts have been created within the assembly by referencing that bounding box with starting work plane and project geometry.

The problem comes in when I change the bounding box dimensions.  The work planes for each additional part, which were defined by the faces of the bounding box, do not move when the sides move.  Also, my projected geometry is not updating correctly.  This is a simple box, with all 90° corners.  So, all associated parts (at this point) are just rectangles. 

View 4 Replies View Related

AutoCAD Inventor :: Parts List Update When Modifying Model Parts In Idw

Aug 21, 2012

My parts list on my idw do not update when I make changes to the model. Specifically, I have deleted a bolted connection on my design and replaced with a different components but the parts list table does not update - all I see is a lightning bolt in the browser next to the parts list but I cannot update it here.

Autodesk Inventor Professional 2013 SP2 64-Bit Edition
Windows 7 HP Z400, Intel Xeon W3550 3.07GHz
12.0GB RAM, ATI FirePro V4800 (FireGL)

View 2 Replies View Related

AutoCAD Inventor :: Virtual Parts Weight Total BOM And Parts List

Aug 7, 2013

I was using virtual parts to add nuts and bolts to a drawing in 2013

I can make a VP bolt in the assembly, no problem, set it's size, weight, etc.

In the VP itself, there is no option for number of bolts I want it to emulate. For arguement's sake the weight was 1 pound per bolt (they are big bolts).

I can go into the BOM and say quantity 60, hit done and save the assembly.

If i open the drawing, the parts lists shows 60lbs for the 60 bolts total - which it should when summing the weight.

The problem is the BOM/assembly. If the weight of my assembly (without bolts) is 10,000lbs, the assembly sees the VP weighing 1lb and says the total weight is 10,001 lbs. Am i going to have to pattern a fake part to get this to work right? Shouldn't the total weight take into account the quantity set in the Bom??

View 2 Replies View Related

GIMP :: Prevent From Dragging Curve Instead Of Dragging Anchor?

Jul 12, 2012

I'm refining some SVG files, imported into GIMP as paths. I added numerous guides on the images and drag anchors to the guides. All the paths consist of straight lines only. The problem is that on some anchors GIMP performs the "drag curve" operation instead of the "drag anchor". As a result, my straight lines become broken (curved).

The only solution I've found so far is to apply maximum zoom level, say 400%, and repeat the dragging in this resolution. This makes GIMP work properly, at least, I'm able to "drag anchor" as expected. But switching back and forth to the 400% zoom level is a bit annoying and inconvenient.

Is there a better way to "say" GIMP that "dragging anchor" is the "dragging anchor", not "dragging curve"?

View 1 Replies View Related

AutoCAD Inventor :: Display Density Of Materials Assigned To Various Parts In Parts List On Drawing?

Dec 9, 2013

Is there a way to display the density of materials that are assigned to varius parts in the parts list on a drawing?  I don't need the mass of the parts I just need the material density to show up next to their respective parts.

For example, if I have a part with [steel mild] material assinged to it (no matter the size) I need a column in the BOM on the drawing to show: 490.684 lbs/ft^3.  "Worry when there's something to worry about."

View 3 Replies View Related

AutoCAD Inventor :: Assemblies Showing In Parts Only Parts List

Jul 10, 2012

I have an assembly with a lot of purchased parts. I need to create a buy out list for purchasing. I've done this many times in the past and have a template set up for this purpose.

So now the problem, In this assembly, I have subassemblies showing up on my parts only parts list.

One of the subassemblies cinsists of two purchased parts. Both parts are set to purchased in the Bill of materials. If I do a parts only list on this assembly, it works as expected, showing two purchased parts. However, if I put that assembly into a higher level assembly, A parts only parts list shows the assembly instead of the individual parts.

View 2 Replies View Related

AutoCAD Inventor :: IDW View / Parts List Changes From Structured To Parts Only

May 3, 2013

IV 2010 Suite

Been working over an idw MANY times due to project lag.Today I opened it up and tried adding balloons to an already ballooned assembly.

The parts list has not changed, and is "structured".But, if I try adding balloons, they tag each part, not the entire assembly.

Also, I verified this by trying to add another parts list, which defaults to "parts only".

I can't show my data set, b/c it's HUGE, plus it's proprietary.

IV 2010 Suite
Digital Storm PC:
EVGA & Intel components
Win 7 Pro 64 bit

View 5 Replies View Related

AutoCAD Inventor :: Parts Not Selecting For Parts List

Sep 22, 2011

I have a .idw that I'm trying to make a parts list on.  I select parts list and highlight everything.  There are two screws that are not showing up on the parts list.  I cannot select them manually either.  It's acting like they are not there.  Even if I do a complete parts list (adding the assemblies parts into one big list), they still don't show up.

How can I select these parts?  What is wrong with them that they do not show up in the parts list?

View 2 Replies View Related

AutoCAD Inventor :: How To Reuse Parts Rather Than Create New Parts

Jul 25, 2012

I have been working with an assembly today where it is ideal to mirror parts and have figured out how to reuse the parts rather than create new parts. Now I find that when the parts are mirrored, they ate not retaining the mates. Where do I find the setting so they either retain their mates, or prefferably retain the mirror so that if I move the origional, the mirror moves as well?

View 9 Replies View Related

AutoCAD Inventor :: Cannot Select By Window Dragging

Jun 23, 2012

I made a complex sketch, and want to extrude.When i want to select the whole sketch, i position the mouse on the upper left of the screen and drag down and right, but no window is created.

And i cannot add segments to the selection, even with pressing SHIFT, because immediately after the first is selected, it is extruded.you see on the picture i attached that some segments (in red) are connected. how can i connect all the sketch together, so when i will select it everything is selected.

View 9 Replies View Related

AutoCAD Inventor :: Dragging Pattern In Sub-assembly?

Jun 29, 2013

I have a realy big assembly.

but I have to creat sub-assemblys.

I just place empty sub-assemblys in the big assembly,

drag and drop the specific parts i want the sub-assemblys.

But is there a way to drag and drop Patterns too?

Inventor is always priventing me to do so.

So i destroy the Patterns, drag and drop the specific part that made the Pattern,

and re-creat the Pattern in the sub-assembly.

View 2 Replies View Related

AutoCAD Inventor :: How To Stop Dragging Of Tube / Pipe Runs / Routes

Oct 21, 2011

We've been using Tube and pipe for a few months now, and still working through the quirks and tricks for producing a stable route.  One problem however as more users are starting to use T&P is when in the top level T&P assembly they are dragging on a route and not always aware they have done so - this can result in the route being rotated fractions of a degree or moved fraction of mm and causing no end of confusion and frustration later on trying to diagnose and fix. Is there a way to 'lock' a route in place so it cannot be dragged in the top level?

Have tried switching off adaptivity in the i Properties of 'Tube & Pipe Runs' assembly, but this usually switches back on automatically. One user had a problem where the included geometry (taken from the x,y,z axes) had also moved and had to be deleted and redone - Wouldn't have thought anything based on the x,y,z axes should move?

View 8 Replies View Related

AutoCAD Civil 3D :: What Is The Difference Between Set Working Folder And Set Data Shortcuts Project Folder

Jul 12, 2012

I created a new drawing in a project that already has a data shortcut folder created.  How do I attach to it?

What is the difference between "Set Working Folder" and "Set Data Shortcuts Project Folder"

View 1 Replies View Related

AutoCAD Inventor :: Reference Parts In BOM

Mar 20, 2012

All of the patterned parts in my assembly show up as reference parts in the BOM I have I have opened the base part for the pattern and made sure its BOM is set to normal. When I change the BOM setting in the assembly it automatically changes to reference.

View 2 Replies View Related

AutoCAD Inventor :: How To Add Texture To Parts

Aug 21, 2013

I plan to print some parts but I want to add some bumpy-ness to the surface areas or maybe even a fake metal brush finish look. How do I go about doing that in Inventor?

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 :: Get Coordinates Of Parts In IDW

Jul 9, 2012

I need to get the dimensions of a lot of centers from parts in a drawing for inspection with a laser tracker.

Is there a way of setting a point from an reference and get a table of the values from the centers I select (x, y and z).

I need to get all the coordinates from the blue and white parts (inside and outside)...

View 1 Replies View Related

AutoCAD Inventor :: Flat 2D Cnc Parts

Jul 7, 2013

I have created parts, assemblies and drawings . How can i create 2D flat cnc drawings of the components for production? i am in woodwork and manufacturing not metalwork so the whole metal facility in inventor is a little redundant.

Description required on the best process or any process to create 2D cnc drawings from the components? Now, when i say drawings, i do not mean CAM integration. I mean 2D .dwg files of the component that would show say rebate lines, drill holes etc.

View 8 Replies View Related

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







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