AutoCAD Inventor :: Selecting Point2D With Your Mouse On Drawing Sheet

Dec 18, 2012

How can I define a Point2D with my mouse by clicking on an random place in a drawingsheet?

I have made the code below that creates a DetailDrawingView automatic. I am now searching a method to select the oPoint & oCenterPoint with my mouse. Both are defined as Poin2D.

I find a lot a method's where you can manipulate the Point2D using maths but I never found a method where you can get the Point2D by just clicking somewhere on the sheet (drawingview).
 
Sub AutoDetailedView()' Set a reference to the drawing document. ' This assumes a drawing document is active. Dim oDrawDoc As DrawingDocument Set oDrawDoc = ThisApplication.ActiveDocument 'Set a reference to the active sheet. Dim oSheet As Sheet Set oSheet = oDrawDoc.ActiveSheet ' Manually select a drawing view Dim oDrawingView As DrawingView
[Code] ........

View 7 Replies


ADVERTISEMENT

AutoCAD Inventor :: Selecting Sheet Size When Starting A New Drawing

Sep 11, 2013

I'm trying to set up a company drawing sheet that requires the designer to select the sheet size before starting the drawing.  Based on the drawing sheet size (A0, A1, A2, A3 & A4 all in landscape) the relevant company Title block will attach to the bottom right of the drawing border.  I've manage to create the relevant forms for parts, sheet metal and assemblies. 

View 8 Replies View Related

AutoCAD Inventor :: Mouse Selecting / Not Selecting?

May 15, 2012

OK, today, or actually just this afternoon I've noticed it has become much harder to select items with the mouse.

Points, nodes, etc...anything where you'd typically hover the mouse over the item and it highlights for you to select it.

For example, lets say you want to project a point from another sketch, or select the center node of a line, etc.

Never really had an issue until this afternoon where now it seems I have to be right on top of the item and I cannot budge one bit or it won't select it. It is now taking me numerous attempts to select things like points (zooming in does not work, points scale accordingly).

Is there a setting somewhere? I can't seem to find such under Tools>Application Options and the like.

View 8 Replies View Related

AutoCAD Inventor :: How To Change Drawing Sheet To New Custom Sheet Format

Sep 20, 2013

I have an older drawing with an outdated sheet format. I'm wanting to update to a new custom sheet format without having to redimension and recreate views. Is it possible to just update the sheet format?

View 1 Replies View Related

AutoCAD Inventor :: Accessing Sheet In Multiple Sheet Drawing

Apr 16, 2012

I have a dwg file with three sheets in, just default names, I can access sheets 2 and 3 but get the attached errors when trying to access sheet 1 form either sheet 2 or 3

This file was originally created in IV2009 I've had no problems then or with the various conversions of it.

It seems to be memory related so here's the sitrep as for memory 8GB DDR2 RAM, and Virtual Memory set at min of 8192MB and a Max of 16384MB, I did have it set a systems managed but that gave a warning of low virtual memory with almost every drawing file that I opened.

View 1 Replies View Related

AutoCAD LT :: Mouse Cursor Lag When Selecting Objects

Dec 4, 2011

The issue I am having a problem with is a mouse cursor freeze when I select an object with no command active.When I select an object, the cursor will freeze for about a second before I can move it again. When I hit escape to de-select the object the same thing happens.

This is with Acad LT 2011. WinXP. Normal operation this computer runs ACAD quite fast, no particular lags or anything except maybe when selecting to copy or move very large groups of objects, or when switching between layouts or to model space when there is a fair amount of stuff in the layout, or when regen on a large file size.

This mouse cursor lag was not always the case, but at some point this problem appeared.I have tried save, regen, regenall, closing the drawing, exiting ACAD LT, rebooting the computer.

It's very irritating, since so much of using ACAD is clicking and doing things with the mouse, that it really slows down my production, to have to get a cup of coffee every time I do a select action with the mouse.About a week ago I installed the trial version of LT 2012 to see if it was different. When I opened the same dwg in 2012 there was no lag.

I then closed this and opened the dwg in 2011, and there was no lag. So it seems that the installation of the 2012 trial version changed something in the way 2011 operated.It has been operating fine now with no lag until this morning. Now I have the lag again.When I now open the same dwg in 2012, I now have this lag in 2012 as well.

I did not change any settings in 2012 or 2011 like hardware acceleration or whatever. I just suddenly had this lag, and now I can't seem to get rid of it. Attached is a file that was made by opening ACAD LT 2011 and drawing a few lines, then saving it. No template used.On my computer with this file, I get the mouse cursor lag when I select a line.

View 9 Replies View Related

AutoCAD Inventor :: OnSelect Event When Selecting Component In Drawing View

Sep 24, 2012

Im trying to catch the event when the user selects a component in a drawing view using

CommandManager.UserInputEvents.OnContextMenu += UserInputEvents_OnContextMenu;

But it seems that the onselect event only catches selection of drawing views or balloon, annotation etc, but not the component inside the drawing view is this intentional or a bug?

The reason i need to catch this is to make a new context menu action, so i need the selected item. I know i can use SelectionSet, but i want to be able to debug my application as an external application connecting to the running instance before i build it into an addin (saves me a lot of inventor restarts..) And Selection Set does not seem to work when i use it inside an event handler in an external application... 

View 3 Replies View Related

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

May 20, 2012

You can't copy a sheet within a drawing to duplicate it.  So, as a workaround, I saved a copy of the drawing to a different name and tried to copy a sheet back.  Pick the view in the browser, right click, copy.  Switch to the original drawing, right click paste in the browser.  All I keep getting is an error "Invalid input for Request."  I even think I remember getting this error before and finding a way around it.

View 3 Replies View Related

AutoCAD Inventor :: Drawing Sheet ILogic

Apr 19, 2013

have 2 questions

1.) If you look at the attached screenshot in the Edit Sheet form there is a sheet "Revision" input field is it possible to fill this out via iLogic?

2.) We have some custom E size sheets (height always 34in width varies 5ft, 6ft, and 8ft) when we select on of these sheet sizes that we created  it will display "Custom Size (inch)" when using the sheet property <sheet size> in the title block not the name of that we gave these sheets (Which creatively enough is "E-5ft", "E-6ft", and "E-8ft"). I thought I had this solved by doing this:

Dim oSheetSize As String
oSheetSize = ActiveSheet.Size
If oSheetSize = "Custom" Then
iProperties.Value("Custom", "SheetSize") = "E"
Else iProperties.Value("Custom", "SheetSize") = oSheetSize
End If

then change the titleblock sheet size field from sheet property <sheet size> to custom drawing properties <SheetSize> this all works great if there is only 1 sheet in the IDW where it fails is if there is more then one sheet.

View 2 Replies View Related

AutoCAD Inventor :: How To Put Sections Of A Drawing In Another Sheet

Jul 13, 2013

I have a complex part and make a drawing. i want to make sections and details and to put some of them in another sheet in the same file. Also, can i put the hole table in another sheet?

View 1 Replies View Related

AutoCAD LT :: Mouse Left Click Selecting Multiple Lines / Objects Not Working

Feb 26, 2012

Can not click on multiple objects or lines for erase,trim or extend commands. Is there a mode that I have turned on by accident , driver warning also comes up in trim offset command.

View 6 Replies View Related

AutoCAD Inventor :: Get DWG Sheet Size Without Opening Drawing

Aug 8, 2012

Is there a way, using VBA to get the sheet size of a drawing without opening the drawing?  I know how to get it with the drawing open, so alternatively, is there a way to open all the drawings in a folder, one at a time, then get sheet.size, then close and open the next? 

View 3 Replies View Related

AutoCAD Inventor :: How To Exclude Drawing Sheet From DWF When Check-in

Aug 31, 2013

I am using Inventor 2012 64 bit with Win 7.

We have a lot of drawing that has some extra sheet for ref. and Inventor let me exclude count and print from those extra sheet. This work fine but when we check-in the drawing to vault it update or publish all sheet to dwf. This is very compass for us because we full the dwf file from vault to release and the sheet count is different than the print out.

Is there a way to EXCLUDE those sheet when check-in or update dwf?

View 1 Replies View Related

AutoCAD Inventor :: Inserting JPEG Or BMP Into Drawing Sheet

Apr 19, 2010

I am running inventor 2010 suite with service pack 2 and when I try to insert a JPEG or BMP into a Drawing Sheet (not a sketch on a part file), the image does not appear. I have done this on previous versions numerous times and it worked perfectly fine.

The message which appears on the screen says "TEMPEMBED.BMP" and it has a photoshop CS4 logo. When I do a print preview, nothing appears on the page. I have opened up a previous drawing sheet, which has a JPEG & BMP inserted and the image is shown, but when I try to insert another image on the same drawing sheet, the same thing happens.

I am running a pretty fast machine, with an intel i7 processor and a pretty hardcore graphic card.

View 7 Replies View Related

AutoCAD Inventor :: Sheet Metal Rule In Drawing

May 7, 2012

I have setup all our Sheet Metal Rules to be all of our stocked in house sheet metals.  The sheet metal rules are named like:

ALUM 5052 H32 1/2" (Part Number)
ST STEEL T304 3/8" (Part Number)
STEEL 44W 1/8" (Part Number)
etc.

And each rule has the proper thickness, material, and some standardized bend radius's.  I've done this to introduce more uniformity in our designs, and to also allow the designer to put as much information into the model as possible, so that if someone else does the drawings, there is no question as to which material is used.

I now want to bring in the Sheet Metal Rule name into the drawing automatically.  I can't seem to find a way to reference the Sheet Metal Rule directly from the drawing.  What I need to do is pick a standard field in the i Properties (I used Stock Number), and put in =<Sheet Metal Rule> so that now the Stock Number references the Sheet Metal Rule, and then in the drawing I can just reference the Stock Number, and it will come in.

I don't like having to use the Stock Number as a middle man though, as none of our existing models are setup like this.  Is it possible to reference Sheet Metal Rule in the drawing without having to use another field as a placeholder for the information?  

View 7 Replies View Related

AutoCAD Inventor :: Changing Drawing Sheet Size

Jun 14, 2012

I have 4 different sized drawing templates made, one each for A,B,C and D size. There are times when I start a drawing on a C size border/sheet and it gets too cluttered as I add views or annotations. Is there any way to insert/change the sheet size to the D sized template without starting over? 

View 6 Replies View Related

AutoCAD Inventor :: Sheet Metal Gauge In Drawing?

Sep 20, 2012

I have created a bunch of sheet metal rules for my different gauge thicknesses. Is there a way I can propogate the gauge information to my drawing so that if I were to change the gauge, that info would also update on my drawing sheet? The only thing I can get to work currently is to pull in the material used, but that doesn't include the gauge.

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 :: Select Drawing Sheet By Number

May 14, 2013

What is the code to select a drawing sheet by either its number or description but NOT both together?

Sometimes want need to select the first sheet by number 1 but the sheet description can change. and Sometimes we will need to select the sheet by its description but the sheet number may vary.

View 7 Replies View Related

AutoCAD Inventor :: Drawing Sheet In Parts List

Aug 22, 2012

Any way to make the drawing "sheet number", on which a "part" or "assembly" detail appears, show up in the "parts list"/"bom"?

I need to automate that information in order to prevent errors during revisions, and for company purposes.

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

View 7 Replies View Related

AutoCAD Inventor :: Turn Off Mouse Function When Mouse Cursor Moves Over A Feature?

Apr 12, 2013

how to turn off the mouse function when the mouse cursor moves over a feature, such as an edge, point, or surface, and highlights it. I don't want it highlighting the features automatically. I want it to highlight once I click over a feature. My colleagues and I are very distraught by this feature, and will be discontinuing our use of your products that do not allow us to turn this feature off. I'm not sure why you'd want to weed your customer base like this, assuming that I can't turn this option off from the research I've done pouring through the hundreds of complaints related to this issue. I haven't been able to find any posts recently, or regarding Inventor 2013 specificially on this issue, so I was hoping this version had the option of turning it off. Does any of Autodesk's software, such as AutoCAD, have the option of turning it off?

View 5 Replies View Related

AutoCAD Inventor :: How To Change Background Colour Of Drawing Sheet

Jun 10, 2012

I have little question that, is it possible to change background colour of drawing sheet in inventor?

I have to change background colour white to black ( as in autocad) .

If it is possible pls where is setting in how to do it?.

View 3 Replies View Related

AutoCAD Inventor :: ILogic Access To Drawing Sheet Revision

Sep 27, 2012

how to access the drawing sheet revisions using Ilogic.My company is wanting to start making the default initial rev on a drawing a "-" and inventor does not like to keep this when brought in as a template.

So like normal I am trying to trick it into having the dash until a rev is actually added. 

View 1 Replies View Related

AutoCAD Inventor :: Change Drawing Sheet To Use Millimeters Instead Of Inches?

May 3, 2012

I have Autodesk Inventor on a student license, and I use the metric system.

I've been able to change the settings for parts, presentations and assemblies to use millimeters, but for some reason the drawing sheets still use inches.

How do I change the unit settings for drawing sheets?

View 5 Replies View Related

AutoCAD Inventor :: Numbering Similar Occurrences In Drawing Sheet?

Oct 24, 2012

I am writhig a macro to put text ( count number) under each occurrence in an assembly.

I got the Sequence correct and able to place the cnumber un drawing sheet.

But What I need to do is to place that number under consequent occurrence.

find the Image file and you will see wht i am trying to get.

i am icluding the Macro i written as well.

Private Sub RHSnumbering()
Dim oDrawingDoc As DrawingDocument
If ThisApplication.ActiveDocument.DocumentType <> kDrawingDocumentObject Then

[Code].....

View 1 Replies View Related

AutoCAD Inventor :: Reference Drawing Sheet Number With ILogic?

Dec 11, 2012

How to reference the drawign sheet number using iLogic?  I see on the snippets on the side a way to reference the sheet name, but I only want the number.  To get the name it is ActiveSheet.Name, but ActiveSheet.Number does not work.  Getting the name give something like ASSM:1, so if there was a way to take that and subtract the colon and everything before it that would work also.  I am not a programmer, I've just taked some programs I found online and modified them a little to do what I want to do, but this is holding me back a bit.

Overall, I'm trying to modify the drawing view label to have a project number, referenced from the drawign iProperties, a view label, and sheet number, and then save that info in an iproperty of the part, and then reference that in the BOM so it automatically labels all of the views and fills out a column of the BOM to reference which page and view to find the parts of the assembly.  I have everything working except for the sheet number.

View 5 Replies View Related

AutoCAD Inventor :: Linking Excel Sheet To Drawing File (idw)?

Jan 7, 2014

I am trying to link excel file to drawing file (idw), but couldn't succeed.

View 2 Replies View Related

AutoCAD Inventor :: How To Link To Another Drawing Sheet / Parts List

Feb 15, 2011

Let's say I have two independent drawings one with a single part and 1 with an assembly + parts list containing the single part.

So I would like to have an item note on the drawing sheet with the single part referring to the assy drawing, part number & Quantity for this item in the parts list.

View 5 Replies View Related

AutoCAD Inventor :: Delete Hatch / Copy Drawing From One Sheet To Other

Nov 13, 2013

Using ISO.idw template I created into a sheet a Sketch which contains a hatch. Now I want to delete that hatch and I don't find anywhere how to delete it.

The second problem is this: I want to create in multiple sheets the same drawing but with small differences. How to copy a drawing from a sheet to another sheet. I press right click on the first sheet and i press Copy but there's no Paste button.

View 1 Replies View Related

AutoCAD Inventor :: Show Detailed Drawings Of All Weldments Onto One Drawing Sheet?

Jun 18, 2012

How do I show detailed drawings of all weldments onto one drawing sheet? I have created a weldment assembly of various pipes attached together and would like to create shop drawings.  Please see attached picture for model tree.  I can't seem to bring in seperate views of each of the pipes on the same drawing sheet for proper detailing. Do I have to do something before making the assembly or afterwards to get those views?
 
CAD: Autodesk Inventor 2013
O/P: Windows 7 64-Bit

View 7 Replies View Related

AutoCAD Inventor :: Copy A Drawing View In Order To Place It On Another Sheet

Jun 20, 2012

I recently started working on Inventor 2013 and I'm trying to copy a drawing view in order to place it on another sheet. Unfortunatly I see no copy option. Am I doing sth wrong or it's due to the changes in the version?

View 7 Replies View Related







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