AutoCad :: Insert PDF File Into 2011 Drawing?

Dec 13, 2011

What is the simplest way to insert a PDF file(drawing) into an Autocad 2011 drawing???

View 2 Replies


ADVERTISEMENT

AutoCAD Inventor :: 2011 - Insert Excel File In IDW

May 9, 2012

Trying to place this .xls file into my idw.  Does not work too well.  Part of the worksheet is cropped off and the images are out of place.

Here is what I'm getting. 

Is there a way to get this to show on the drawing.  I am using the Manage>Insert Object command.

View 3 Replies View Related

AutoCAD Visual LISP / AutoLISP :: Match TIF To A Drawing File In 2011

Apr 26, 2013

Create a script or a lisp file to match a tif to a drawing file in autocad 2011?

View 9 Replies View Related

AutoCAD Map 3D :: Insert A Raster File Into A Drawing

May 17, 2011

I am having an issue with Autodesk Map 3D 201164 bit  and Autocad Raster Design 64 bit. Everytime we insert a raster file into a drawing.The laptop freezes. I really thought it was because we were using XP 32 bit. We got an error message that we did not have enough RAM. After doing some research on this forum, I updated to Windows 7.

View 4 Replies View Related

AutoCAD 2010 :: Attach Or Insert Drawing From One DWG File Into Another

May 7, 2013

how do I attach or insert a drawing from one dwg file into another dwg file? I'm drawing some and i want a site plan off of a different file i just want to take it and but it in my new drawing without have to draw the site plan over

View 3 Replies View Related

AutoCAD 2013 :: How To Insert DXF File To Drawing With Original Scale

Jun 19, 2012

I am working with surveying points and what I used to do was insert the dxf file containing the points to my drawing and they would be inserted with their correct scale. However, now in AutoCAD 2013, when I insert them they are in a different scale and I must adjust them. Is there anyway to have their original scale carry over in 2013?

View 4 Replies View Related

Revit :: Saving 2013 Drawing And Open It In 2011 File

Dec 18, 2012

Is it possible that i can save a revit 2013 drawing and open it in revit 2011 file?

View 2 Replies View Related

AutoCad :: Insert OS Tiles Into A Drawing Using Insert XRef Command

Aug 2, 2013

I am trying to insert OS Tiles into a drawing using the insert x-ref command. I have managed to insert 192 tiles but still need to add 29 more tiles to complete. When I try to insert another x reference AutoCAD just goes into a continual loop. Have to force AutoCAD to crash after ten minutes.

I am using AutoCAD 2014 MAP and have just had a new system built (i5 processor, 8GB RAM).

View 9 Replies View Related

AutoCAD Civil 3D :: Cannot Insert ECW Image In 2011

Aug 2, 2011

I cannot insert an ecw image in AutoCAD C3D 2011. Ecw does not appear as a choice when I use Image Insert. I have already downloaded the AutoCAD Raster Design 2011 Object Enabler.

View 5 Replies View Related

AutoCAD Civil 3D :: Import / Insert SID Files Into 2011

Apr 13, 2011

Have downloaded the raster object viewer.  It seems all commands, typed or as menu tabs don't list .sid files as an option.

View 3 Replies View Related

AutoCAD 2010 :: 2011 Crashes Upon Trying To Insert 3D Block

Feb 3, 2012

I created a number of 3D blocks to be inserted into a 3D model of a building.  I created the blocks in a separate drawing first; i defined them locally, then, when i had them the way i wanted them, I used "wblock" to save all of these blocks to a folder.

I then opened the 3D building model and tried to insert one of my new blocks.  I repeatedly get the following:

"AutoCAD Application has stopped working"

with the following info from microsoft:

"Description:
  Stopped working

Problem signature:
  Problem Event Name:    APPCRASH
  Application Name:    acad.exe
  Application Version:    24.1.208.0
  Application Timestamp:    4dbf9c16
  Fault Module Name:    KERNELBASE.dll
  Fault Module Version:    6.1.7601.17651
  Fault Module Timestamp:    4e21213c
  Exception     e053534f
  Exception Offset:    000000000000cacd
  OS Version:    6.1.7601.2.1.0.256.48
  Locale ID:    1033"

I have tried repairing my installation of autocad with no improvement.

i tried opening the drawing of the block itself, copying it, and pasting it via the "copybase" command into the other drawing with the same result.

Occasionally, autocad will ask me if i'd like to debug the program (and visual studio opens) -- it mentions a "StackOverflowException" within acad.exe, and also mentioned "windowsbase.dll".

I am using windows 7 pro x64 and autocad 2011.

CPU: intel i7

Graphics: NVidia GeForce GTS 250

8GB DDR3 ram

The autocad error-reporting dialog never gets launched as it is forced to close before this point.

View 3 Replies View Related

AutoCAD 2010 :: Insert Excel Spreadsheet Into 2011 DWG?

Sep 29, 2010

How do I insert an Excel spreadsheet into an AutoCAD 2011 dwg? Is it possible?

View 9 Replies View Related

AutoCAD 2010 :: Insert Geo-referenced Iphone Image Into 2011?

Jul 11, 2012

know if there is a way to insert a geo-referenced i-phone image into AutoCAD 2011?

View 1 Replies View Related

AutoCAD LT :: Content Panel Missing From Insert Tab On Ribbon 2011?

Jan 28, 2011

In looking for the design center in autocad 2011lt I discovered the content panel where it should be nested is missing in the insert tab on the ribbon

View 3 Replies View Related

AutoCAD .NET :: Insert Block From External DWG File / Specify Insert Point By Click Mouse

Apr 2, 2013

I write a program, this program needs to insert some standard illustrations. I made these standard illustrations into different blocks. And I store these blocks in a dwg file. Everytime I need to insert some illustrations, I just click the mouse on the current drawing, I want the illustration inserted. These means the following points:

(1) Import the blocks to the current drawing, if the blocks have already been imported, then do nothing.

(2) Specify the insert point by clicking the mouse, and I want the block's insert point to coincide with the mouse clicking point.

View 1 Replies View Related

AutoCAD Visual LISP / AutoLISP :: Insert Another Drawing Layout Tabs Contents In Current Drawing

Mar 7, 2013

I want to insert another drawing layout tabs contents in current drawing.

It's easy for MODEL tab, but for LAYOUT tabs, I dont know how!?

I prepared a code for INSERTING MODEL tab in current drawing:
 
(defun INS_DWG (TAB path dwg P / blk)(setq blk (strcat ""*" path dwg """));(setq N (vla-get-count (vla-get-layouts)));;Number of LAYOUT TABS in dwg(if (or(= TAB 0) (= TAB nil))(command "INSERT" blk P 1 0)); TAB=0 or omitted ==>Insert MODEL;(if (= TAB 1));==>Insert the 1st LAYOUT in dwg file;(if (= TAB 2));==>Insert the 2nd LAYOUT in dwg file;and so on....);;;usage:;;(INS_DWG 0 "c:\test\" "test.dwg" '(0 0))

View 8 Replies View Related

AutoCAD LT :: 2011 Cannot Save Drawing

May 24, 2013

windows 7 using autocad lt 2011 cannot save drawing, computer freezes each time you try to save.

View 4 Replies View Related

AutoCAD LT :: 2011 Program Freezes When Accessing File Command To Open File?

Mar 22, 2011

I am unable to use the file command open, new etc.  I click on open and nothing happens no file box opens.  As soon as you do anything else the program says not responding and you have to close it down.  I can click on an autocad file in windows explorer and bring up the file this way but as soon as you try any file command such as save as the program freezes again.  I am running windows 7 professional and the autocad LT 2011 64 bit program.

View 9 Replies View Related

AutoCAD Inventor :: Center Of Gravity On Drawing 2011

Dec 20, 2010

How on earth do you show the COG on a drawing in inventor 2011?

View 2 Replies View Related

AutoCAD LT :: Mouse Lag When Drawing Lines In 2011 / Windows 8

Feb 22, 2013

Just got my new work PC and I'm having issues drawing lines in AutoCAD LT 2011.

Much like other people, circles are fine, as is most everything else.  It's just the lines (and who uses lines when drawing things?).  So, as you can imagine, my frustration level is to the point where my head is about to explode.

Here are my PC Specs:

Windows 8
Intel Core i7-3770 3.40GHz - 8 CPUS
Memory - 16GB Ram
AMD Radeon HD 7770
2GB GDDR5 Memory

And this is coming from an old Dell that ran 2011 like a champ, the computer just got old and died.

I can't see any reason, component wise, why the CPU can't handle it, and, since it's just on lines, it leads me to believe it's a software issue where 2011 LT isn't playing nicely with Windows 8 or some other component.

Could it be that it's just time to get with the times and upgrade or is there some workaround?

View 7 Replies View Related

AutoCad :: Disable Shortcut In The Drawing Area 2011 Mac

Aug 9, 2011

when I saw this option was possible to make the right click act like a space bar or enter when in the drawing area.

On the pc, you can go to options where it is there. I can't find the options for a mac.

View 5 Replies View Related

AutoCAD 2010 :: Way To Open A Drawing Saved In 2011

Jul 22, 2012

I there a way to open a drawing saved in 2011 ver,into a 2005 ver.

View 1 Replies View Related

AutoCad :: 2011 - Paperspace Printing Layout For Drawing

Apr 1, 2011

I'm new to this forum, and also pretty new with autocad. For an assignment ive to use it to produce a drawing. But for a good grade I'd like to learn how to create a printing layout for my drawing. I'm pretty good with model space. But new with using paperspace.

How i would create this image,( just a 5 second attempt to illustrate what I am trying to achieve), in AutoCad:

Obviously id be inserting my drawing from modelspace into the big white area in the middle, but just cant seem to follow anything I've found so far on the net successfully to get to my goal here.

View 9 Replies View Related

AutoCad :: Open And Edit Drawing Created By 2011 Into 2007?

Feb 7, 2013

how can i open and edit the drawing created by autocad 2011 into autocad 2007???

View 7 Replies View Related

AutoCAD Inventor :: Place Rendered Image Into 2011 Drawing?

Nov 11, 2011

how to place a rendered image into an Inventor 2011 Drawing?

View 1 Replies View Related

AutoCad :: Insert PDF Into Drawing

Jul 27, 2011

Is it possible to insert a pdf file into a cad drawing?

View 5 Replies View Related

AutoCAD Inventor :: Autodesk 2011 Crashes When Converting 3D Model - Drawing

Nov 1, 2011

Autodesk Inventor Professional 2011 will crash when we try open a 3D model (Inventor Component) as a Baseline View for a new "Drawing" file.

To replicate the error, we draw a simple Circle and extrude it so it is then a 3D Model. We then create a new "Drawing" file, click the Baseline View button at the top left, and then select the 3D Model Inventor file (the extruded circle). The program crashes and we get the following error from Autodesk Software, NOT Windows.

dumpdata.zip
dumpuserinfo.xml
Inventor11101152546.dmp
Version: 150239000 AIP

This is for our college...  students need to perform this action for their exam. We have had success using the same software and OS configuration, along with the same steps listed above, on different machines on campus. Not sure what is causing the error on these machines.

View 2 Replies View Related

AutoCAD Civil 3D :: Data Shortcut Error 2011 / Drawing Has Not Been Saved

May 13, 2010

Occasionally I get the following message when trying to add data shortcuts.

"The drawing has not been saved yet, please save the drawing before creating data shortcuts" Only I have saved, this still occurs after either a full or quick save.

Shutdown Civil and reopen still gives the same message..The problem seems to be when you are saving to any other version of Autocad than R2010. Save as R2010 and it works.Mike Evans

Civil3D 2013 / 2014 British UK
Windows 7 Professional 64-bit
Intel(R) Core(TM) i7-3820 CPU @ 3.60GHz (8 CPUs), ~4.0GHz With 32768MB RAM, AMD FirePro V4900, Dedicated Memory: 984 MB, Shared Memory: 814 MB

View 9 Replies View Related

AutoCAD Inventor :: 2011 / Error With Filenames In A Drawing Parts List

Sep 15, 2011

We are using Inventor 2011. 

Inventor adds extra spaces to the parts list filenames when they wrap.

The space is added just before the break.

We access the parts list in several VBA programs.  Mainly to get the line Item number.

With the Filename corrupted with random space characters I cannot tie the document to the item number in code.

Is there a way to get the true fully pathed document name from a parts list Line item instead of the flakey filename that is displayed?

View 1 Replies View Related

AutoCAD Civil 3D :: Converting 32bit 2009 Drawing To 64bit 2011?

May 24, 2012

Since I'm so darn clever I decided I could "save as" a 2009C3d-32bit drawing to 2011C3D-64bit. This drawing was working just peachy for a while. There are no data links. The drawing contained 2009 surface and point groups. I imported some Pipe styles created in 2011. Created 800' of profile,and my pipe network. When I was closing the drawing I got a lot of errors wanting to know if I wanted to save changes to VBA-pipes. Seemed like a good idea at the time so I said Yes. This morning I opened the drawing and it's there but the surface from 2009 no longer has it's Definition data. The point group is gone, breaklines are gone. I needed to remove one lousy bad point out of my surface. The points in the drawing now have three copies and one has the elevation in the point description and you can't fix it. The 3 labels are all tied together and if you erase one they all disappear. I am going to wing it from here and get this puppy out of the office with a little old fashioned autocad. This is my question. Should I have just started a new drawing in 2011, clipped all my old line work and text from the 2009, imported the points and rebuilt my surface? Did I do something wrong and there was some way I should have been able to make this work? I was running 2009 and 2011 on my computer but had to remove 2009 last week. It no longer like livng with his better looking brother "2011" and I had to put him out. I have numerous small projects created in 2009 so this will happen again.

View 5 Replies View Related

AutoCAD Architecture :: 2011 / Counting Blocks Inserted In Current Drawing

Apr 5, 2012

I was looking for a way of counting blocks inserted in my current drawing.

F1, brings up HELP.

In the search box i type BLOCKS.

Results =

Overview of Hatch Pattern Definitions

Create a Shortcut Menu

Overview of Shape files

Overview of slides

Work with User Interface Elements

Multiple Drawing Folders

View 3 Replies View Related







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