AutoCAD Inventor :: View Rep - Cannot Hide Few Parts In Drawing
Mar 31, 2012
I am not sure why, but i can't hide few parts in my drawing. I have hidden few parts and saved the view rep. I have called that particular view rep and still I am seeing it the drawing. I am unable to hide it. This is a multi body solid part file. I use INV2012. Win 7
I'm creating a small product configurator using ilogic. It all works fine, but i've i challenge:controlling the visibility of the components in a drawing view
In simple words, every occurrence of my assembly has an custom Ipropertie calles "Positie". there where 4 values (Bodem, Zij, Kop, Deksel and Overig)In a drawing view i only want to see the parts that has a specific value of the ipropertie "Positie".I found a sample code for VBA, but I cann't get it worked in ilogic.:
Sub HideSecond() 'Assumes you have an open drawing 'Assumes that view 1 of the active sheet is an assembly 'Turns off visibility of assembly's second component in open drawing's first view [code]....
hind to turn this into ilogic and add the option to check the ipropertie to turn on the visibility
Is there a way of using Ilogic to make hidden lines of specific parts in an assembly drawing view visible? If a part with hidden lines showing is suppressed and then unsuppressed the hidden line option becomes unchecked, therefore I need a way of rechecking this option through code?
Is there an option in drawing mode to exclude certain parts from a section view.
According to ASME Y14.3 parts such as shafts, keys bolts and nuts should be excluded in sectional view. Its not just removing the Hatching, the part has to show completely.
The closest I found in Inventor is that you can exclude Standard parts from being sectioned. Some of my parts are not in the standard library.
I would like to have the option to choose which parts I want to section and which ones I don't.
I want to create a rule with CommandManager.pick who see the name of assembly and send a custom ipropertie to all parts of this assembly view in drawing, this is my none finish rule.
Dim doc = ThisApplication.ActiveDocument Dim entity = ThisApplication.CommandManager.Pick( SelectionFilterEnum.kDrawingViewFilter, "SÉLECTIONNE UNE VUE") modelName = IO.Path.GetFileName(ActiveSheet.View(entity.Name).ModelDocument.FullFileName) PART = Left(modelName, 11) EXT = Right(modelName, 3) FIRST = Left(modelName, 3)
[code]....
I have the rule "SEND TO PARTS" in my assembly but i have this error message
MEMBER NOT FOUND. (Exception from HRESULT: 0x80020003 (DISP_E_MEMBERNOTFOUND))
Im running inventor 2013 and I want to hide a part in one view of an assembly, and for some reason when I go into the browser and try to deselect the visibily it is greyed out. I don't know why it happened.
Sometimes I turn various parts (visibility) off in an assembly. If I want to turn them all on again without doing it one at a time or selecting them all individually, I find IV turns everything OFF first, then I have to reselect them all again and turn evrything on. Can it be done in one step instead of two? IV2008SP1
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."
I have a cylindrical shaft passing through a bearing. I have a section view showing a cut-away of half of the shaft and bearing. Automated hatching results. I bring the bearing out of the section view (Rclick > Section Participation > None), and the hatching of the shaft remains visible, through the bearing. An image of this is shown below:
I would like to hide that hatching that shows through the bearing, so that it looks like the image below:
In the drawing the panel is detailed to show hole locations and sizes on one sheet and in another view @ 1:1 the silkscreen is shown.
The silkscreen is a feature on the panel, text either embossed or extruded .005" outward. The feature is colored (filled).
On my drawing all the silk screens show up like un-filled fonts. This really bothers some people and my task is to fill the fonts.
Also i need to get the silkscreen by itself and (suppress/invisible) remove the other features from the view.
Suppress will not work as the feature i am trying to show will also be suppressed. Visibility of features is not an option.
Q. HOW CAN I GET THE FEATURE SEGREGATED AND SOLID IN MY DRAWING? but still a feature of the part. i.e. i don't want to create an assembly with a panel and a silkscreen.
How do i suppress features in a view on the drawing?
Is there some way in an Inventor idw drawing to 'hide' a page. I have created an extra page with information for future changes but do not want it to printed or be counted in the total number of sheets.
I have created a cable/harness in my assembly. I have to edit the cable to change visability to centerline display in order to turn off visibility in a drawing view. The issue is that on one sheet of my drawing I need to show the cable, but not on the others. As soon as I turn the rendered display on, the cable shows up on all sheets and the visiblity command has no affect. Is there a hotfix for this? I don't remember a problem like this in 2011.
I was giving a hand drawn wiring diagram (original.jpg) and it is a rats nest!!
I was asked to re-draw this and put it on our drawing template.
I have the plugs and terminal blocks drawn up and now I am about to attempt to add in the wires, but the sketch is so filled with dimension lines and values, it is going to be a task to try and make sure every line I draw is correct. This would be much easier to do if the dimensions could be turned off as the wires I am drawing will not be constrained.
I don't think there is layers options inside a sketch mode, or a if i start a new sketch I don't think I can project that sketch to the new one?
The only other options I can think of was to delete all dimensions and apply FIX constraint to everything! or
I guess I could have modeled the plugs and blocks in position and added them to the drawing, projected the geometry to a new sketch and added in my wires??
After upgrading to Inventor 2014 we notice that the graphics do not work properly, and that the overall performance in drawings and modelling bad compared to 2013. Then we installed SP1 and now drawing views are disappearing, however when we select "shaded" view the view reappears and works perfectly..
Each time when I place a part in base view, have to follow few steps; go through view label, format Text, than choose type option - [Properties-Model] and its property - [Part Number], than placing dimensions. it takes long time and very repetitive, especially, when placing a hundreds of parts and I was wondering if there is an option, to set up view label; [Properties - Model ]& [Part number], as a DEFAULT. So, each time placing a part, in base view it will come up with correct label. Also, overall dimensions, can it be retrieve using parameters of the part?
How to manage the visibity of parts on a particular view? For example, in a view there 10 parts appeared. I would like to make only selected parts visible on the said view.
I have the manual steps on how to hide them but when I try to code it using the said step, the parts on the model file were hidden not in the view.
I use oView.ReferenceDocumentDescriptor.ReferenceDocument in traversing the parts but this refers to the model file.
Here is my
Set ViewDocument = oView.ReferencedDocumentDescriptor.ReferencedDocument For Each ViewOccurence In ViewDocument.ComponentDefinition.Occurrences If Not nozzleName = ViewOccurence.ReferencedDocumentDescriptor.DisplayName Then ViewOccurence.Visible = False End If Next
I know this wasn't possible in the past (and probably still isn't now) but does any trick or something to only get the qty/parts used in a certain design view rep.
We are starting to do work orders (routings) with parts lists for ONLY whats used in that step in the process. Having to manually count screws,etc.. seems silly now.
Design view reps works excellent for showing the assembly process of a product but the parts list (even filtered to that design view rep) shows the total quantity of each component..not just the count in that design view rep.
Any possibility of doing this with ilogic or something?
2014 Product Design Suite Ultimate Windows 7 64 bit 90G OCZ SATA 3 SSD (My SSD is faster than your HDD) Core I7 920 processor, ATI HD6970 graphics card, 12G Corsair RAM
in dwg's made from an assembly i someties see that the view does not include all parts. To add to the mystery, a projected view made from the base view that lacked the component(s) view can still include the part. The missing parts are not reference parts, and can sometimes be parts of a subassembly.
The attached pdf shows an example:
- view B and C show a horizontal ground plate not visible in the base view
- the projected view shows components visible in the area of detail D, which are not shown in the base view
- near section A-A there is a component missing of which a second item is shown on the left side of the base view.
Switching the hidden lines on shows the missing components, but these should not be hidden at all. No settings are altered for the views to include/exclude components. No parts are set to reference. And no design representations are used.
Whe i bin the views and start over again, the same thing happens to the same components. However, if i bin the whole DWG file and start over, the parts are present...
I have a model of an enclosure created using Frame Generator. I create a View Representation of each wall and the roof in order to create the fab drawings. Is there a way to create a Parts List ONLY what is visible in a particular View Representation?
I have an assembly that uses reference parts. I do not want them in the BOM, but they are used in other drawings in the BOM. When I make them reference, the iso drawing view boundaries are not correct. Can I change the size? Crop will only decrease the size not increase?
I often do section views in my 3D model (not drawing) to visually check interference, etc. I noticed today that some parts are excluded from this and do not get sectioned. I'm sure it's an easy fix but a search turned up nothing. How do I include/exclude specific parts from this view?
I need Recursively go to all bomrows and child rows if present in the Bomview Model Data ("Unnamed")
I have the below code but i only goes one level deep.
I tried the code from the inventor that does the trick on a structured bomview but i will fail if you have a virtual componenent that has the same partnumber as a part inserted in the assembly. then it finds the first insertet and errors on the next?
i have to recursively go to the "Unnamed" bomview here the below code does not fail and works, but as written only one level deep, i need all levels?
Public Sub UpdateThisFileBOMRowProperties14062013() 'ByVal oBOMRows As BOMRowsEnumerator) ', ByVal ItemTab As Long) oApp = GetObject(, "Inventor.Application") oAsmdoc = oApp.ActiveDocument ' Set a reference to the BOM Dim oBOM As BOM oBOM = oAsmdoc.ComponentDefinition.BOM
I have a section view of an assembly. The parts of the assembly that are completely remove via the section no longer show up in the browser. Is there a way to make them show back up in the browser and/or section view? They are internal to the assembly and I would like them not sectioned/removed from the view.
In some drawings, parts and trail lines will randomly disappear or get rearranged. Once the parts disappear, the only way we're able to get them back is by copy and paste the explosion into the presentation file and regenerate the view.what happened to the .idw file and how it should look.
We've tried replacing the video card and repairing the Inventor installation, but still experience the same issue on some drawings.Running Inventor 2008 on Windows XP.
I have a parametric assembly and some of the parts in this assembly require a "Break". When the part dramatically reduces in size the part view disappears as the part is now located in the "Break". Delete the "Break", re apply the "Break".
I would like to be able to constrain a Break to the part, either a sketch on the view or maybe from Workplanes in the part.
Is it possible to define a View Representation in an assembly such that a half section view is active, but only for a certain set of parts within the assembly?