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


ADVERTISEMENT

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 :: 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 :: Changing Dimension Text Size In IDW 2D Drawing?

Feb 13, 2013

How do you change the dimension text size in an .idw 2D drawing? The dimension text and arrowhead size is too small and I would like to make it sligthly larger.

View 3 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 :: Drawing Size Changing?

Mar 26, 2013

I just opened a drawing, bound all the xrefs and saved it. I noticed that when I save the drawing in model space, the size is 10mb smaller than if I save it in paper space. This is the same drawing, and all that is changing is whether I save it in model space or paper space.

What causes this? I tried it on 3 or 4 drawings and got the same result - but only when I bind the xrefs.

View 0 Replies View Related

AutoCAD 2010 :: Change Block Size In Drawing Sheet?

Mar 7, 2012

I am trying to insert a block in the drawing sheet, that varies in size dynamically. Is there anyway for changing the size of the block.

View 9 Replies View Related

AutoCad :: How To Figure Out Drawing Area Having Sheet Size And Scale Numbers

Mar 3, 2011

I am having trouble putting sheet size and scale together to find out the drawing area. For example, if the scale is 1"=2" and the sheet size is 17"x11" what would the drawing area be?

View 2 Replies View Related

AutoCAD Inventor :: How To Change Sheet Metal Rule For Changing Material

Aug 4, 2013

 I want to change the material of a sheet metal part using inventor api.I tried something like code
 
Dim partDoc As PartDocument partDoc = inventorApp.Documents.Open(FilePath & filename, False) If partDoc.SubType = "{9C464203-9BAE-11D3-8BAD-0060B0CE6BB4}" Then Dim smDef As SheetMetalComponentDefinition smDef = partDoc.ComponentDefinition Dim style As SheetMetalStyle style = smDef.SheetMetalStyles.Item("sheetMetalRule")

 But I can't get the code for material change.

View 1 Replies View Related

AutoCAD Inventor :: Changing Sheet Metal Thickness And Bend Radius

Mar 13, 2012

I wrote an app some time ago that swaps out user parameters that drive sheet metal thickness and bend radius.

it appears to work about 60% of the time when it doesn't it does not give any warning but even though the FX table shows the new user parameters driving thickness and bend radius the "sheet metal defaults dialog" thickness input box is grayed out and shows no value what so ever.  Clicking the Edit Sheet metal rule to display the "Style and Standard Edtior" the Thickness and Bendradius still show the Old userparameters.  See attached Pic.

I am setting the parameters as follows.

Replaced "Chan_Th" with "chn_thk"  in FX Userparameters

then...

[Code]

oSheetMetalCompDef.UseSheetMetalStyleMaterial = True       oSheetMetalCompDef.ActiveSheetMetalStyle.Thickness = sThick

[/Code]

As you can see FX reports the change but sheet metal settings does not.

This code appears to work or not at random.

View 7 Replies View Related

AutoCAD Inventor :: ILogic Error (changing Sheet Border And Title Blocks)

Jun 18, 2012

I'm having an error with Ilogic parameters.I just wanna change the border and the title blocks with Ilogic. This should be simple. Isn't this?

View 2 Replies View Related

AutoCAD Inventor :: VBA Change Sheet Size

Sep 27, 2012

I am having an issue with changing sheet sizes using VBA. Due to the constraints under which my borders and title blocks were created, inventor forces me to delete the current border before changing the sheet size. I have 5 different borders and 2 title blocks.

-Borders
"A0 Border (13x8 Zone)"
"A1 Border (8x6 Zone)"
"A2 Border (6x4 Zone)"
"A3 Border (4x3 Zone)"
"A4 Border (No Zones)"

-Title Blocks
Title Block 1 - All sizes except for A4
Title Block 2 - A4 Only

I'm having trouble changing the sheet size. This is the extent of the code that I know actually works:
 
Option ExplicitPrivate oDoc As DrawingDocumentPrivate oSheet As SheetPrivate oBorderDef As BorderDefinitionPrivate oBorder As BorderSet oDoc = ThisApplication.ActiveDocumentSet oSheet = oDoc.ActiveSheetSet oBorderDef = oDoc.BorderDefinitions.Item("A0 Border (13x8 Zone)")Private Sub UserForm_Initialize() cmbPageSize.AddItem ("A0") cmbPageSize.AddItem ("A1")
[code].......

View 1 Replies View Related

Paint.NET :: Reduce Drawing Image Size Without Changing Resolution?

Dec 17, 2012

I have some really large blueprints (black and white). Some of them exceed 30000 x 8000 in size. I want to reduce the overall size of these but when I try this my image gets really fuzzy. Is there a way to make these images smaller without messing up the clarity?

View 7 Replies View Related

AutoCAD Inventor :: Run Rule When Sheet Size Is Changed?

Dec 19, 2013

I have created a rule that will replace the border sheet when the sheet size will be changed, so users won't have to do it manually.

The problem is that the rule won't run when the sheet size is changed. I find that events for triggering the rules are rather few under drawing enviroment.

I thought to use "iProperty Change" event, providing I assign the SheetSize to a Custom iProperty, but the iProperty won't update automatically as well.

AIP 2014
Windows 7 x64
Dell Precision T7400 Intel(R) Xeon(R) CPU X5472 @ 3.00GHz (4 CPU's), 8Gb RAM, NVIDIA Quadro FX 5600 1536MB GDDR3

View 4 Replies View Related

AutoCAD Inventor :: Edit Existing Sheet Size

Feb 6, 2013

I would like to edit an existing sheet. The size is "C" and the height is 17 and the width is 22. I would like to change the exiting dimensions of that sheet to be 18 and 24. How do I do this to the existing sheet instead of creating a new one named something else?

View 6 Replies View Related

AutoCAD Inventor :: Custom Sheet Size Using ILogic

Jan 15, 2013

I made a form that allows the user to enter in a custom sheet size.  Using the API I am changing the Drawing Sheet Size Enumerator to the Custom Sheet size which allows the user to enter in custom values.  That part is all working fine.  My problem is that when a custom size is used in my title block it says that the size is "Custom Size (mm)".  I know that the API uses cm for the sheet size units so I have the code convert the values into cm. 

In the sheet settings window built into inventor it has the option for Custom Size (inches) and Custom Size (mm).  How do I change whether it is inches or mm?

View 5 Replies View Related

AutoCAD Inventor :: Title Block - Assign Static Sheet Letter And Changing Page Number

Nov 7, 2011

Standard sheet number option gives you only 1, 2 and so on.

I want A1 where A does not change and 1 changes depending on sheet number.

View 1 Replies View Related

AutoCAD Inventor :: Getting Sheet Size That Is 24x36 But Not Ansi D Of 22x34?

Mar 5, 2003

I want a sheet size that is 24x36, not ansi D of 22x34. I can create it in the Edit Sheet dialog, but then the titleblock reports "Custom Size (inches)", not "D".

View 5 Replies View Related

AutoCAD Inventor :: ILogic - Automatic Print With Right Sheet Size

Nov 6, 2012

Dont have a before print Event Triggers . I want to make a rule with automatic print with a right sheet size, but in all my try don't work

that is my last one

'Dim oDraw As Document
oDraw = ThisApplication.ActiveDocument
oDrawDoc = ThisApplication.ActiveDocument
oDrgPrintMgr = oDrawDoc.PrintManager
[code]........

View 9 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 Inventor :: Changing Border From One Size To Another In A IDW

Jul 24, 2013

I have been creating a drawing of a Assembly and realized that I had drawn it on a Company "D" size border by mistake. How do I change it to a "B" size border without starting over?

View 5 Replies View Related

AutoCAD Inventor :: Changing Tube Size

Nov 6, 2013

I am having a problem changing my tube sizes. Basically when I create a new route and populate the route, I want to be able to change the size without adding hundreds of sizes to the library. So I right click on the tube and select change size. The when I select a different size and select apply nothing happens? I push update and still nothing happens?

When I try to change the tubing size again it shows the size that I change it to but the tube doesn't visually change? I have noticed the same with the hose. What I also noticed is when you change the size on pipes it does change. How it is possible to change the piping sizes by right clicking on it and select change size when this function doesn't seem to work on the tube and hose?

View 1 Replies View Related

AutoCAD Inventor :: Sheet Metal Template With All Common Plate Size

Jan 3, 2012

Looking for 2012 sheet metal template with all the common plate sizes already in the rule?

View 6 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 :: 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







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