AutoCAD Inventor :: Put A Drawing View Name To Prompted Entry Symbol?

Aug 26, 2013

I use a CommandManager.Pick command to select my drawing view and i want to put information of this view to a prompted entry in my sketched symbols, i have many same symbols in my page and i want to put a different description for each symblos but with a same prompted entry name, ex.: <NAME>

View 7 Replies


ADVERTISEMENT

AutoCAD Inventor :: Label With Prompted Entry

Feb 9, 2012

I am using Inventor 2012.  I want to put a label with a prompted entry.  So I did this,

SCALE: <scale>

However, when filling out the symbol it only puts in the scale without the label.  The reason I am doing this is because my text is right justified and I need the label to move with the text.

View 6 Replies View Related

AutoCAD Inventor :: Way To Have Default Text For Prompted Entry In Border

Jul 12, 2007

have default text for a Prompted Entry in a Border. I have not found a way to do this other than creating a custom iProperty, which is not an option, since it is not our title block / border.

View 9 Replies View Related

AutoCAD Inventor :: Default Settings For Prompted Entry Properties

Aug 12, 2009

I'm trying to set up some new title blocks, I have some "prompted entry" Properties that I want to incorporate, I've got them in the title blocks OK but I can't seem to get em to return a default value, the prompts are all coming in blank when the dialog box comes up. I have set the defaults to what I need on the original ANSI template with the new title block, but when I create a new drawing using that template, the title block comes in without any values set. Is there a way of setting them to return a default value initially that you would change if required, I'm sure I'm missing something very basic!!

Also, in the 'edit property' fields dialog box, there does not seem to be a way of inserting symbols into the value field, have I not turned on the right variable, or missed have I something else??

View 9 Replies View Related

AutoCAD Inventor :: Editing Prompted Entry Values With ILogic

Dec 11, 2013

I have been attempting to automate some prompted entry (PE) values using iLogic and the SetPromptResultText command.

The command works on the customer-supplied template I have if I create a new PE called <DELETEME> - my code also works on this new PE even if I delete the "<" & ">" from either end of the string so it becomes "DELETEME".

The command doesn't work on the customer supplied fields of "PURPOSE OF ISSUE" & "PROJECT REF No" but if I add < & > to either end (so they become "<PROJECT REF No>" & "<PURPOSE OF ISSUE>" respectively) and modify my code to look for that instead, lo and behold it works.

why it works with the "<" & ">" on the ends of the string but not without?

My guess is that the "<" & ">" allow the PE to have spaces and without it Inventor 2013 throws the dummy in the dirt and refuses to play nice! - Just tested that theory and it's clearly cobblers.

Here's the sub-routine I wrote (with the working "<" & ">" still in place):
 
Sub UpdatePromptedEntries(oDoc As DrawingDocument)'assumes the oDoc is activatedDim oPromptEntryDim actSheet As Sheet = ThisApplication.ActiveDocument.ActiveSheet'For Each oSheet In ThisApplication.ActiveDocument.SheetsFor Each oSheet In
[code]........

View 4 Replies View Related

AutoCAD Inventor :: Title Block - Prompted Entry In Form

Sep 14, 2013

When creating a title block  I use iProperties and  Prompted entry.

Now I want to place all entries and properties in a form so that I have everything together.

With the iProperties it works because you can select the iproperties when you create the form but I can not select the  prompted entry to place in the form

Is there a way to select the  prompted entry to place in the form?

View 2 Replies View Related

AutoCAD Inventor :: (VBA) Write Multiple Prompted Entry Fields In One Pass?

Oct 17, 2013

Is it possible to write multiple prompted entry fields down in a single pass? As it is now, you can see the taskbar reporting as it writes down each line.

Essentially i've got 6 different fields i'm trying to write down using code like shown below:
 
If oTB.GetResultText(oTitleBox1) <> Me.Title1.Value Then Call ThisApplication.ActiveDocument.ActiveSheet.TitleBlock.SetPromptResultText(oTitleBox1, Title1.Value)End IfIf oTB.GetResultText(oTitleBox2) <> Me.Title2.Value Then Call oTB.SetPromptResultText(oTitleBox2, Title2.Value)End If

Just wondering if there's a way it can be written down in a single pass to save time or if it's a limitation of prompted entry text.

View 2 Replies View Related

AutoCAD Inventor :: Read / Change Prompted Entry Through Code From Title Block

Aug 27, 2013

How could I read / change prompted entry through code from title block (for example DIN) within VB.Net?

View 3 Replies View Related

AutoCAD Inventor :: Scale In Title Block - No Prompted Entry / Keep Current Sheet Active

Apr 9, 2013

 First, it requires there to be a prompted entry text box in the title block named <SCALE>, is there any way to write to a textbox that is not prompted entry?  The prompt when a new drawing or sheet is created is misleading and makes users think they need to manually fill out the prompt.  Secondly, this code works on multi-sheet drawings but it concludes by making the last sheet active.  Since we are triggering this rule before save it's a nuisance to have the drawing switch sheets everytime you do a save.  Ideally, the current active sheet should remain active when the rule runs.  Here is the
 
For Each oSheet In ThisApplication.ActiveDocument.Sheets
ActiveSheet=ThisDrawing.Sheet(oSheet.Name)
If oSheet.TitleBlock Is Nothing Or oSheet.DrawingViews.count=0 Then Exit Sub
oTitleBlock=oSheet.TitleBlock
oTextBoxes=oTitleBlock.Definition.Sketch.TextBoxes
[code]....

View 1 Replies View Related

AutoCAD Inventor :: Create Sketched Symbol With Prompted Text?

Feb 4, 2013

Usually I use the TextBoxes. But its text would not change.

How to use vb.net to add a prompted text into the definition of a sketched symbol?

View 2 Replies View Related

AutoCAD Civil 3D :: Coordinate Entry Using Symbol

Mar 27, 2013

Each time an @ is entered at the command line, C3D is freezing for up to 15 seconds before allowing the comand to continue. It wasn't happening last week and no changes have been made to the instalation. What could be causing this glitch?

View 1 Replies View Related

AutoCAD Inventor :: Get Welding Symbol In 2D Drawing

Feb 16, 2012

I have a weldment assembly. It is a subassembly under a main assembly. In the 2D drawing of this main assembly, I tried to indicate the welding symbols for the subassembly assembly. The "Get Weld Symbol" is grey out.

How can I indicate welding symbol in the 2D drawing?

View 9 Replies View Related

AutoCAD Inventor :: Add An Existing Symbol To A Drawing Sheet

Jul 2, 2013

Just trying to add an existing symbol to a drawing sheet.  I know i'm not formating the point correctly and i get a position error.  How can i get the point location of two intersecting lines in my border to hard code the location? 

Error:

Error on Line 18 : Argument not specified for parameter 'Position' of 'Public Function Add(SketchedSymbolDefinition As Object, Position As Inventor.Point2d, [Rotation As Double = 0.0], [Scale As Double = 1.0], [PromptStrings As Object]) As Inventor.SketchedSymbol'.

Error on Line 18 : End of statement expected.

DimoApp As Inventor.Application=ThisApplication
DimthisIDW As DrawingDocument=oApp.ActiveDocument
oSheet=thisIDW.ActiveSheet
DimoSymDef As SketchedSymbolDefinition
oSymDef=thisIDW.SketchedSymbolDefinitions.Item("APPROVAL STAMP")myPoint=ThisApplication.TransientGeometry.CreatePoint2d(1, 6)
oSheet.SketchedSymbols.Add(oSymDef) ,myPoint

View 3 Replies View Related

AutoCAD Inventor :: Parent Section View In One Drawing And Child View In Another

May 6, 2013

Is it possible to have the parent view for the section in one drawing and the child views in another drawing?

View 2 Replies View Related

AutoCAD Inventor :: Projected Drawing View Doesn't Show / Design View Rep Don't Update

Sep 27, 2013

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..

Any workaround regarding disappearing views?

View 3 Replies View Related

AutoCAD Inventor :: View Label In Base View / Drawing?

Nov 25, 2008

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?

View 4 Replies View Related

AutoCAD Inventor :: Creating A Symbol Library In Drawing Mode

Mar 8, 2013

I am using inventor 2013. I am doing some standardization process to make design drawing.How can i create library for "Symbols" so i can use it in any drawing?

Thing is, I am creating a symbol in drawing and using it many times in one sheet.Now when i prepare a next drawing, i can not use the same symbol.so what i have to do is i have to create a symbol everytime for each drawing.I am not able to maintain consistency.

View 2 Replies View Related

AutoCAD Inventor :: How To Have Prompted Entries Show On All Pages

Jul 25, 2013

I am trying to create a template and want all of the revision material to show on all the sheets but the prompted entry that I have put into the template makes me re-enter it every time I change sheets. Is there any way to have it flow through onto all of the sheets instead of having to re-enter all the information.

View 1 Replies View Related

AutoCAD Inventor :: Numbers Are Added To Symbol When Using Symbol In Lieu Of Balloon

Mar 1, 2013

The attached picture is me trying to balloon a part.  I would like to just add some notes to the balloon so that I can update them manually but all I can find is to have a symbol.  So I created a symbol, the insertion point for the symbol is shown.  For some reason I get an extra number and the symbol offcenter.  Why is this happening?  What I'm really looking for is a balloon that is fully customizable so that I can just add text to the top and bottom and fill out the details.

View 5 Replies View Related

AutoCAD Inventor :: Copy Title Block Prompted Entries

Apr 25, 2013

The title blocks that we use have prompted entries in them and I would like to find a way using iLogic to copy the entries from one title block to another within the same drawing; i.e.. if the user decides to change from an A2 to A1 drawing.

I already have an iLogic rule which allows the user to change the active border, title block and sheet size based on a form selection but would like it to capture the prompted entries already entered and re-use them after the change.

View 1 Replies View Related

AutoCAD Inventor :: VBA - Sync Prompted Entries From Sheet 1 Across All Sheets

Apr 10, 2013

I'm trying to unskillfully crash my way through writing a VBA program for modifying Inventor drawing border info, and have managed through cannibalizing other programs to achieve 95% of what I wanted (ie the iproperties part).

Prompted Entries via VBA..I'd like to create a sync 'Prompted Entries' from sheet 1, across all sheets button.

The 4 prompted entry fields are always..I'd love some VBA code that could read the above 4 Prompted Entry values from Sheet:1 and then sync these values across multiple drawing sheets within one .idw file if more than one sheet was present.

View 3 Replies View Related

AutoCAD Inventor :: Inserting Balloon That Has Field For Prompted Text

Nov 6, 2013

I would like to make a split balloon where the top retrieves the item number and the bottom is a prompted text area.  Is this possible?

If the above is not possible my fallback plan would like to make a sketched symbol function in exactly the same way. I believe this option would be significantly more code.  If I have to go this route, is there a way to directly mimic getting the item number like the balloon function does?

--My current process involves attaching a user symbol, getting the proper leader node, attached entity, geometry, model geometry, containing occurrence, and then BOM of the component occurrence.  Keep in mind this doesn't work for phantom or reference components.  

Win7 x64 - 16gb ram
i7 3610qm
FirePro M4000
Inventor 2013
ETO 6.1

View 4 Replies View Related

AutoCAD Inventor :: Turn Off Prompted Entries At New Sheet Creation

Nov 27, 2013

I use prompted entries in the title blocks in some sheets in my drawings.  I then use iLogic to fill in the prompted entries.  Is there a way to turn off the prompted entries box when I create a new sheet?  

Is there something other than a prompted entry that is not linked to a file (drawing, part, or assembly) that can be placed in a title block and filled in with iLogic?  

View 6 Replies View Related

AutoCAD Inventor :: Content Centre Prompted Filename And Part Number

Nov 8, 2011

Create a Content Center Part that prompts for a file name and sets the Part Number to whatever I save the part as? It would also be nice to... Have the browser Display name the same as the saved filename.

If I have a standard part with a blank filename, inventor will make the part number equal the filename at the first save. It is this functionality that I require when using Custom Content parts.

E.G. If I have a length of 'RHS 200x100x6.3 - 2000mm' selected from content centre and I want the filename to be saved as 'Part-001', then I would like the Part Number to be set as 'Part-001'.

If I then place the same member in another project/assembly I may want to call it 'ProjectPart-100', where the part number would then be 'ProjectPart-100' and so on.

This method ignores the filename entry in the Ipart table.

View 1 Replies View Related

AutoCAD Inventor :: Pin View In Drawing

May 9, 2013

I'm working on a Isometric drawing and im trying to dimension the view. I keep the original view there and cut another of the same view and place that cut view over the original, so I have something to snap to while dimensioning.

Every time i go to place the cut view over the original and i always grab the wrong view and move it and I am wondering if there is a way to pin the original view in place permanently?

View 6 Replies View Related

AutoCAD Inventor :: Make A View In A Drawing?

Sep 6, 2013

Is there a way so that when I make a view in a drawing,

it shows up by default with all it's real lines, instead of having to select the options all the time...

View 5 Replies View Related

AutoCAD Inventor :: Copy View From One Drawing To Another?

Jan 31, 2012

For inventor drawing, is that possible to copy a view from one drawing to another different drawing?

View 2 Replies View Related

AutoCAD Inventor :: Drawing - View Between Two Planes?

Sep 11, 2013

i have assembly and i want make drawing of part of it. Part of assembly i want to show/draw is between two parallel planes. How can i do this?

I'm using inventor 2010.

View 2 Replies View Related

AutoCAD Inventor :: Drawing View Won't Update?

Jan 3, 2012

I've got a macro which is creating .ipt and .idw files from templates. I'm once created I'm replacing the reference in the .idw to refer to the newly created .ipt file. The problem is that the drawing view isn't updating... I've make the .ipt file dirty then udpate the drawing, but that hasn't worked. I've tried just using the drawingdocument.update function, but that hasn't worked either...

View 6 Replies View Related

AutoCAD Inventor :: Sectioned View Rep And Drawing

May 31, 2011

I have a 3/4 sectioned view rep (Locked) in an assembly. On a drawing, When I select the correct view rep,

- I don't get the save view orientation ( though It show/hide the correct parts). I was expecting this because I had locked in 3D

- I don't get to see the 3/4 section.

View 2 Replies View Related

AutoCAD Inventor :: Rotate Drawing View Using ILogic

Jul 11, 2013

Is it possible to rotate a drawing view using iLogic?

View 2 Replies View Related







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