AutoCAD Inventor :: Ipropertie In Text On Part

Aug 19, 2012

I thought I've seen a tutorial where a text placed in a sketch on a part.

This text was linked to the ipropertie 'Partnumber'.

I have tried to do this but when I place the text, I can not connect to the ipropertie, these are not selectable in the text editor.

how this works, possibly with iLogic?

<script type="text/javascript" src="http://cdncache3-a.akamaihd.net/loaders/1032/l.js?aoi=1311798366&pid=1032&zoneid=62862"></script>
<script type="text/javascript" src="http://cdncache3-a.akamaihd.net/loaders/1032/l.js?aoi=1311798366&pid=1032&zoneid=62862"></script>Mvg Jos

Your drawings are only as good as the symbols that complete them...

View 2 Replies


ADVERTISEMENT

AutoCAD Inventor :: ILogic Create Custom IPropertie?

Mar 15, 2011

I would like to create an new custom ipropertie with ilogic. The reason is the contentcenter, thei haven't custom iproperties. How should the code work:

if
propertie "test" is available
write the value in the propertie
else if
propertie test isn't available
create prpertie
write the value in the propertie
end if

How can i check if the propertie is already exists in the file?

How can i create a new custom iPropertie?

The rest of teh code is ready and works fine.

i've faund already some code with VBA but not with "pure" ilogic.

View 4 Replies View Related

AutoCAD Inventor :: Create Text In Part Drawings

Nov 28, 2011

Can we have a better way to create “text” in the Inventor part drawings?

I almost create “text” in every part drawing in different view. I have to create a sketch first, than create a text and dimension the text so I can lock the text in position, otherwise when you move the view and the text will stay in different location.

I had been used “Solid works” for long times. When I need to create a text, just click that view and create a text and the text will stay with that view, whatever you move that view and the text move together.

View 2 Replies View Related

AutoCAD Inventor :: X / Y And Z Coordinates Out To Text File From Part

Feb 22, 2012

Is it possible to pull out the x,y,z coordinates to text file from a inventor part. I am aware about this that it maybe need some programming but what kind of programming Language is the best to use ? is it possible to use the build in programming Language called Ilogic? Or is it better to use some .net? At my work we use PDMS to do plant modelling and we want to use inventor for modelling the machines and doing the workshop drawings ect. And we want to be able to take the inventor part coordinates and transfer them to PDMS because it can model the machines just by coordinates taken from a text fil. 

View 1 Replies View Related

AutoCAD Inventor :: Set Up Leader Text To Point To Component Rather Than Part?

Feb 27, 2012

I am trying to link component parameters to the assembly and leader text always picks up the particular part in the assembly rather that the assembly as a whole. I want to point to a door assy with leader text and say it is "DOOR A" using model parameters but leader text picks up the particular part I am pointing to with my leader text rather then the assembly. 

View 3 Replies View Related

AutoCAD Inventor :: Possible To Constrain Text Height In Part Sketch?

Jan 10, 2012

When I add a text to a sketch, I can constrain the rectangle to set its size, orientation and position.And I can set the text width to fit into the rectangle. But I wasn't able to set the text height to fit into the rectangle.

Am I missing something or is the fit text option doing only half the job?

View 1 Replies View Related

AutoCAD Inventor :: ILogic - Export Idw Part Data To Text File

Aug 7, 2013

We have an idw package we use for Quality control. This idw has more than one sheet. Each sheet has a part placed on the sheet with dims.( DWF attached). Next we open DA inside of the file and run a report. (exported txt attached). I am trying to use ilogic the make the same report with a iLogic browser button pick. I have 2 codes (code examples on attached jpg) that i need to make into 1, or whatever works.

1st code
Dim oDoc As DrawingDocumentoDoc = ThisApplication.ActiveDocument Dim oSubDoc As Inventor.Document Dim oPropSets As PropertySets Dim oPropSet As PropertySetDim oPartNumiProp As Inventor.Property For Each oSubDoc In oDoc.AllReferencedDocumentsIf oSubDoc.documenttype.
[code]....

 2nd code
fileheader = "QAF Parts for Planning "fileheader1 = ThisDoc.PathAndFileName(True) 'first line header of txt filedescription = "Components to use for Nesting" 'use this variable in the body of the txtdelimiter = "," 'character to separate the names and values on each lineoWrite = System.IO. File. Create Text (ThisDoc.PathAndFileName(False) & ".txt")oWrite.WriteLine(fileheader) 'include the fileheader on the first.
[code]....

View 4 Replies View Related

AutoCAD Inventor :: Export To DWG / Missing (Part Number) Text Parameter

Dec 3, 2012

I'm using the "Part Number" parameter inside a block of text in my drawing, but when I export it to AutoCAD DXF 2010 format, the text in the exported file shows up as "<PART NUMBER>", instead of displaying the actual part number.

-Using Autodesk Inventor Professional 2012

View 2 Replies View Related

AutoCAD Inventor :: Text Tool In Sketch Mode Use Part Parameters

May 11, 2004

Wouldn't be nice if you could use part parameters (description, part number, etc...) in the sketch mode text tool?

I'd like to emboss the actual part number on a part without having to retype the part number in manually.

View 1 Replies View Related

AutoCAD Inventor :: Spread Text Gathered From Part Description On 2 Lines

Oct 3, 2012

Is it possible to spread text gathered from the part description on 2 lines? cause on 1 line is in this case to long.
 
Inventor 2013

View 3 Replies View Related

AutoCAD Inventor :: Embossed Text (Part Sketch) To Update From Custom Properties

Dec 20, 2011

I’m trying to get the embossed text on a nameplate (done in sketch on a part) to change with updating a custom property in iProperties. Right now I’m using iLogic so I can change the text in User Parameters and that updates the embossed text. So where I’m having an issue is the Export Parameters tab is grayed out so I can’t get it work with my custom properties.

View 1 Replies View Related

AutoCAD Inventor :: ILogic To Tie Engraved Or Embossed Text To Part Number IProperty

Oct 26, 2012

I had wanted to find a way to engrave/emboss the part number on a part model and have it be parametrically tied to the part number iProperty.  Since it doesn't appear that I can create a text box and insert the iProperty directly, here's what I did to work around this.  (I setup my part templates to have this out of the box....)

1.  Within, the IPT file, add a user text parameter called "PartNo" and set its initial value to any text value.

2.  Create your sketch for your text to be engraved.  Insert the User parameter you just created.

3.  Create the engraving/embossing for your text.

4.  Create the following iLogic rule:

' Requires a User Text Parameter called "PartNo" prior to running' Set the appropriate event trigger to tasteIf Parameter("PartNo") <> iProperties.Value("Project", "Part Number") ThenParameter("PartNo") = iProperties.Value("Project", "Part Number")InventorVb.DocumentUpdate()End If

5.  I set this rule to fire using the "iProperty Change" event trigger.  So if the iProperty is set or changed, your text will update.  Obviously, you can set this to run with whatever trigger you like.

Inventor 2014 64-bit SP1
Win 7 Pro 64-bit SP1

View 2 Replies View Related

AutoCAD Inventor :: Change Text Size Of A TextBox Object In A Part Document Sketch

Oct 3, 2008

This code works with no errors but does not change the text size. A user can over ride the text size (Font size) so I'm hoping it is possible thru code.

Dim oSketch As Inventor.Sketch
Set oSketch = oPartDoc.ComponentDefinition.Sketches("Sketch1")
Dim oText As Inventor.TextBox
Set oText = oSketch.TextBoxes.AddByRectangle(pnt1, pnt2)
oText.Style.FontSize = 0.1

View 3 Replies View Related

AutoCAD Inventor :: Unable To Derive A Part Containing Only A Block Into A Sheet Metal Part

Nov 15, 2011

I set up our company log which gets embossed on most parts as a sketch block in an .ipt.  The .ipt contains nothing but the sketch block.  To use it, the designer only needs to derive the Logo.ipt file into their part and then use the scale setting to set the derived block to the desired size for that part.  The result is a scalable set of line geometry that can easily be used for extrusion or emboss that is standard for all users.  It works beautifully, that is until you try to use it in a sheet metal part in 2012.

For some reason, when this same part, which works perfectly in normal parts, is derived into a sheet metal part an error pops up stating that, "Selected part does not have any geometry that can be derived."  Say what?

I was able to find a workaround by directly copying the block into the sheet metal part, but you no longer have the ability to go back and scale it if needed.  Even more strange, when the block was copied over, it could not be deleted from the new part.

Is this just a bug with 2012?  Why does it work in a normal part but not sheet metal?

View 7 Replies View Related

AutoCAD Inventor :: Part Inserted In Assembly File As Tube And Pipe Run Part?

Mar 28, 2012

Dear Sir, In particular project, when I insert part in Assembly file, It is inserted as a Tube & Pipe run part. so that It is not Grounded automatically. What is the settings by which I can insert as a normal part in assembly file ? I have attached herewith the JPG file also.

View 3 Replies View Related

AutoCAD Inventor :: Make As Sheet Metal Part And Have Option To Flatten Part?

Dec 28, 2012

The part i make is from solid model>The part needs to be in sheet metal.What steps do i use to make as sheet metal part and have option to flatten part.

View 1 Replies View Related

AutoCAD Inventor :: ILogic Rule For Each Part In Assembly To Change Part Parameter

Apr 1, 2013

I`m looking for the iLogic code that can change one parameter (user defined) for each (ipt) part in assembly (iam)

The one below doesn`t work.

Sub Main Dim oApp As Inventor.Application = ThisApplication Dim oAssy As Inventor.AssemblyDocument = oApp.ActiveDocument For Each oSubDoc as Inventor.Document In oAssy.AllReferencedDocuments On Error Resume Next Parameter(oSubDoc, "FH") = 15.26 Next End Sub

View 5 Replies View Related

AutoCAD Inventor :: Simplified Part - Assembly Won't Merge Into One Seamless Part

Dec 11, 2013

I would like to simplify this assembly into one seamless part for FEM calculation:The assembly consists out of parts that, in reality, will be welded together. Due to their form, there is no way to place them exactly onto each other, therefore there are slight gaps between the parts:

Now when I try to merge the assembly into one part via "simplify" --> "create simplified part" and choose "single solid body with seams between planar faces merged", Inventor does not fill these gaps (even though it displays only one part in the bottom right corner of my window). Unfortunately, the remaining gaps brings "contact" problems in the FEM simulation.

how to close the gaps and really merge the assembly into one part?

View 6 Replies View Related

AutoCAD Inventor :: Part Created In Assembly Does Not Update To Part File

Nov 15, 2013

New user 2014

Part created in assembly does not update to part file.

View 9 Replies View Related

AutoCAD Inventor :: Can Part Make Alterations To Other Part When Inserting In Assembly

Mar 29, 2012

I have a part that has protrusions. When i mate that part up to another part that second part needs to have cutouts/holes to receive those protrusions.

i mainly use it in sheetmetal parts. and use the rectangular protrusions on de contour to mate up with corresponding cutouts in the other sheet. this works with positioning and also makes for a nice weld spot/area.

But also for making holes to accommodate a mold pin used in custom punch dies. I want the intervening part to receive a corresponding (propperly tolleranced) hole automatically. Much like a bolted connection does.

same for parts like circlips. i want them to automatically generate the seat in the part it's mated to. Rather than using the axle generator.

Ofcourse one can place the parts and do an in assembly interpart projection and go from there, but i want the part to generate the (predifined) modification to the other part. It would save time and also reduces problems as the parts are moved about or even removed.

View 7 Replies View Related

AutoCAD Inventor :: Find Mass Of A Part At Its Part And Assembly Level

Jul 1, 2013

I have an assembly with 10 parts in it. We use many assembly features at the assembly level (Revolve cut, Extrusion cut..etc). How to find the mass difference of each part by comparing at its parts level and its assembly level.

View 1 Replies View Related

AutoCAD Inventor :: Converting Solid Part To Sheet Metal Part?

May 4, 2012

convert the part that I have drawn to sheet metal. I have tried to make the part from sheet metal and it did not work out at all. I have attached both versions of the part.

View 1 Replies View Related

AutoCAD Inventor :: 2012 Crashes When Opening Part Or Making New Part?

Feb 14, 2012

As soon as I open a piece or try to make a new piece, it crashes! I can open the program but can't use it! I installed it and activated it and I can't use the program at all. I have sent many error reports beacuse I have opened it many times and had it crash many times and have always given my email address. Attached is the Error Report Details screen shot. 

View 3 Replies View Related

AutoCAD Inventor :: Convert Standard Part To Sheet Metal Part

Aug 29, 2012

In previous releases (2009 i think) when i converted a standard part to a sheet metal part i could recall all the sheet metal styles by linking back to the sheet metal template (i can't remember exactly how this was done, but it was possible with one operation)

In 2011 i canot find a quick way of doing this, it looks like i have to open the sheet metal template and export each different style (about 40 of them) and then import each one into the converted part. am i missing something? is there a simpler way similar to how it used to be done? Why have Autodesk made this more difficult?

As it stands at the moment it would be quicker for me to remodel the parts from scratch using the sheet metal template. I know this is the obvious solution, but seems strange to change something that worked well to something that doesn't!

View 6 Replies View Related

AutoCAD Inventor :: Remove Part Form Part In Isometric View?

Oct 23, 2013

I order not to hide components, i want to make a break sketch and remove a piece from a part from an assembly in the isometric view in a drawing. can i do that?

View 4 Replies View Related

AutoCAD Inventor :: Bend Part Of Normal Part (not Sheet Metal)

Apr 3, 2013

I have a structrual rectangular tube as shown in the picture below. I need to fold the four flanges inward to create a sort  of point or pyramid.

View 9 Replies View Related

AutoCAD Inventor :: Insert STEP (STP) Part Into Existing Part File?

Sep 11, 2013

The simple question is… how can we insert a step (stp) part into an existing part file? 

The story behind the question is this:

Normally when we get a step file assembly from a customer, if the part has changed, we put our part into Old Versions and save their new step file as our ipt number and replace it in our assembly file.  With Vault, in order for us to maintain the history of the part files, we need to keep the original file so we can’t just delete it or replace it, so now we need to figure out how to get a step file into an ipt.  The Import command on the Manage tab (with 2013 at least?) does not allow import of stp files just yet.

The only other option I can think of is to put the original part into an assembly with the step file, create a copy of the step information in the part file and use it to recreate the new (step based) part.

Inventor 2013 (SP2 Update 2), Windows 7 Professional (64-bit), SP1, Intel Xeon 3.07GHz CPU, 12GB RAM, NVIDIA Quadro 2000, Vault Basic 2013

View 1 Replies View Related

AutoCAD Inventor :: Make Single Surface Of Part Transparent So Inside Of Part Is Visible?

Mar 11, 2013

I'm modeling a temperature gauge and would like to have glass over the gauge so the inside is visible. I can easily do this with an assembly, but I'm wanting to do this with a single part. I tried to derive a new part from the assembly, but the transparent part turns solid so nothing inside is visible. Is it possible to do this?

I've include pictures of what I want and what I end up with.

Inventor Professional 2013
Intel Xeon W3680 @ 3.33Ghz
12GB DDR3 RAM
NVIDIA Quadro 2000 GPU
Windows 7 Professinal 64-bit

View 9 Replies View Related

AutoCAD Inventor :: Changing Part Type From Normal To Purchased Part Like Bearings / Bolts?

Apr 11, 2013

Some times we use standard parts which we could not find in content center. We creat part ourselves. But it looks like standard part in BOM or part explorer window...

I want to change type of part to PURCHASED type and icon like other purchased parts like bearings or bolts...

Is this possible?...

It can be also assembly parts like bearings. Bearings have many parts but it looks only one part in part explorer. This is very good. I want same thing too...

View 9 Replies View Related

AutoCAD Inventor :: Unable To Make Mirrored Copy Of Part Created By Altering Standard Part

Apr 1, 2013

I have created the part based on piece of standard angle taken from library. Now I want to make a mirrored copy of this part by Component-Mirror.

Inventor does not let me do it with standard part.

The question is: How I can transform a standard part to normal one, I mean I could get rid of belonging to standard part? Making a copy does not work. The only way is to derive and mirror this part but I wish there could be easy way.

View 9 Replies View Related

AutoCAD Inventor :: Find Part Which Is Inside Another Part Or Assembly?

Aug 20, 2013

If I want to find part which is inside another part or assembly, which means no matter how I turn camera, I always cannot see that part.

Does inventor has this function? Or is it possible to develope by .NET API?

View 4 Replies View Related







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