AutoCAD 2010 :: Block Insert Point Is Different On Drawing Than On Xref
May 4, 2012
I have a drawing where I have placed all of my natural gas piping. I have all of the annotative blocks set to 3/32"=1'-0" and 1/32"=1'-0" scales. They are both correctly displayed in this drawing.
When I xref this drawing into another about half of the 1/32" blocks show up correctly. The other half are shifted to the right off of the plan. All of the 3/32" blocks show up correctly.
I'm using C3D 2013. I received a survey drawing (unknown version) from a third party. I tried both xref'ing and inserting as block into my drawing and it was over 7,100' SW from my site. BUT when I copy from 0,0,0 in his drawing and paste 0,0,0 in my drawing, it lands on my site. If I xref my drawing into his drawing, it lands on his survey information. Why doesn't his drawing land on my site when I xref or insert as block?
I have a lighting block I need to insert into a drawing. Who ever drew the block did so upside down (so the top is really the bottom). I can't, for the life of me, figure out how to "rotate" it so that the top is correct. When I rotate the block, it simply keeps the top the top. When I copy and paste it, it stays the same as well. I tried inserting it into a new drawing.
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).
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.
My boss gave me a drawing to make some changes on a particular block; however, every time I try to insert the block, it always insert the block in Paper Space even though I'm in Model Space.
Is there any way to change that insertion point? I want to insert the block in Model not in PS...
I'm inserting blocks into my drawing and the block has a basepoint and a 0,0,0 point. The CAD guy who usually works with me is off today but he has a keyboard method of switching between the 2 points when inserting the block.
Its a fairly straight forward thing on his keyboard, nothing he has set up but standard in autocad.
I've had a try hitting a few keyboard buttons this morning but can't seem to do it.
I am learning autolips and i found a problem that i can´t solved.
(vl-load-com)(defun c:pmb ( / ss ent pt )(prompt " selec block : ")(setq ss (ssget '((0 . "INSERT")))) (setq ent (ssname ss 0)), (setq pt (cdr (assoc 10 (entget ent)))) (command "point" pt)) wich this code you select one block and insert one point at insert point´s block.
which this other code yo select all block and insert all point.... but in one block
I’m having a user profile issue on one computer. I have a user, using windows 7 and AutoCAD Civil 3D 2014 on his work station. When using Civil 3D he has two issues: one, he cannot import Dgn’s. I’ve tried everything it just won’t work. Second, he cannot xref or insert PDF’s into a drawing. Now the reason why I say this is a profile issue is because if I log on to his computer (or anyone else log’s on his computer), I can do all those things in Civil 3D, import DGN’s & insert/xref PDF’s. If this user log’s on my computer, he can do all those things in Civil 3D. Import DGN’s & insert/xref PDF’s. Something with his profile on his computer is corrupt and I’m trying to fix it without deleting and creating another user profile.
I have a block tha I use in a point label style. All of the block entities are on layer 0. The label style is also set to layer 0 so that it get on the same layer as the point. I've tried setting the block color in the label at by layer and by block. When a drawing that contains this label style is XREF'ed into another drawing, the block in the label always takes on the color of the current layer.
C3D 2011, Version 3
edit: I attached an example. The top figure is the point with the block in the label and the bottom is just the block itself.
I have created a dynamic block with a stretch, flip and rotate. Everything works great in its file. When I insert it in another file, the grips move but the block does not change.
In previous versions of AutoCad I would just double click on a block do my changes click the save changes button and then a save dialogue would come up with an option to change the insert point. Did this option go away in 2013 AutoCAD? I do not get this option anymore after I finish editing a block? This is very useful. Why would this go away?
I need a routine that inserts a point at the insert point or block named "Insert_Point" at every block in the file. The routine could use the current layer, which would be set prior to starting the routine. If it could request the user for the PDMode value and PDSize that would be great too. This will assist me in creating block libraries.
I have been using copy paste with base point on block from drawing to drawing but sometimes the block insert but it is not showing. I go to insert block is there but does not show in the drawing. Then tried to purge it and it does not let me because it is in the drawing but I can find it any where. Then I tried to do the insert block look for the block and inserted as a block and the same result.
I have excel tables that contain 4 columns of data.
The Y co-ords pf the required object The X co-ords pf the required object The rotation of the required object The object number
What would I need to do to insert a block at the coordinates to the rotation shown then have a leader with the point number labeling the block (but the text not be rotated to the angle of the main block.
When inserting a jpeg into a drawing is it possible to insert it via it's center point? I am inserting utillity drawings on to an OS background and if i could insert via the center point it would save me a lot of time.
I would like to be able to collect information from a drawing via a sub-form and then insert a block with attributes (populated with collected info) into another open drawing. The insert operation would be launched from a button on my sub form.
Is this possible?
From the code below I attempted a test to simply select a point from another open drawing but was not successful. However, once I closed both forms the target drawing file is activated.
Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click Me.Hide() Dim docMgr As DocumentCollection = Autodesk.AutoCAD.ApplicationServices.Application.DocumentManager Dim i As Integer = 0 For Each doc As Document In docMgr
I am trying to create a block which consists of my company logo and some text to use on my drawing sheets or templates
I have created a block by making a autocad drawing and creating /saving it as a block .. When I insert the block into my drawing the text style changes into a different style... why is this happening and what can be done to prevent this change from occuring. I am using autocad lt 2009 and 2005 the problem is consistant with both versions...
I am trying to insert a block (using .Net) that does not already exist on the drawing. It is on a network share, which is in the search path. If I, from the command line insert the block, it finds it ok and inserts it. But when I do this from .Net code it does not search for the block. So how do you get it to search for the block and insert it?
Here is a code snippet I'm using to insert the block:
Dim myDwg AsDocument = Application.DocumentManager.MdiActiveDocument Using myDocLock AsDocumentLock= myDwg.LockDocument() Using myTrans AsTransaction= myDwg.TransactionManager.StartTransaction 'Open the database for WriteDim myBT AsBlockTable = CType(myDwg.Database.BlockTableId.GetObject(OpenMode.ForRead), BlockTable)
I am trying to insert a block into a drawing that uses dynamic blocks. I want the block to be associated to the dynamic block, so that when I alter a linear stretch parameter on the dynamic block it moves the other block.
I am probably missing something obvious, but have now googled my mind into a numb state and can't make any more progress.
I have a small LiSP routine I wrote about 14 years ago that no longer works. It is supposed to update a logo on a title block using the -insert command with a redefine option and a cancel
Untill recently I have been able to edit my blocks or xref files in place. Now when I try do that CAD tells me to select nested item. Is this a setting a changed by mistake? If so what is it?
I need simple code to do just one thing, inserting a dynamic block that is stored in a separate file on my computer (like C:/base/b-22) in the drawing that I'm currently using. For example, I have a windows form with a list box with names of many dynamic blocks that are stored on my c drive, I would like to pick a block with a name and upon a click event of a button or other will go get this block from a separate file and insert it in the drawing I'm currently using, and would need to be able to pick the point of where I want the block to go. I'm using autocad 2010 with visual studio 2008- using the new autocad .net language.
I have a drawing with all my block definitions and the blocks inserted and annotated. Seems that in a previous version of Autocad, I could insert the drawing and cancel the insertion at some point of the insertion command sequence, such that the drawing was not inserted, but all the block definitions remained. I could then use the insert command and all of these blocks were available. Yes, sometimes this made my drawing memory size rather large and I would have to purge the unused blocks later to reduce the memory size of my drawing.
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:
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.