AutoCad :: Inserting Blocks At Points With Different Text For Each Point
May 21, 2013
I am wanting to insert a block at a point, with eastings and northings and an individual number.
For example.
Point 1 -459655,451702
Point 2 -459655,451702
Can I use a script for this, or something else using a .scr or .csv file?
View 6 Replies
ADVERTISEMENT
Oct 16, 2013
We're using C3D 2013 SP2. The survey company we use uses point styles to show the blocks. Say they shoot a catchbasin. Instead of inserting the block, the point shows up as the block.
I did a field check & needed to insert a missed CB. When I inserted the block, the other points that were CBs disappeared. I had to insert the block, copy it the clipboard, undo the insertion & then paste the block in. It did this on other drawings & other blocks.
View 7 Replies
View Related
May 24, 2011
Blocks inserting with double text?
View 2 Replies
View Related
Jun 21, 2011
I am using AutoCAD 2011. my scale being off for text, dimensions, inserting scalable blocks, xrefs, etc...
The problem is that when inserting, or creating text (or any of the above) in architectural scales everything is fine, however, when the scale is changed to an engineering scale, everything comes in at 1/12 the scale it is supposed to be - i.e. - when I create text it has to be scaled up by 12, it's like AutoCAD is just reading the 200 scale and not multiplying by the scaler of 2400.
View 9 Replies
View Related
Jan 25, 2013
Can I scale up a 100+ blocks at once and have each base point as the blocks insert point?
View 9 Replies
View Related
Aug 17, 2012
i found this valuable script Lisp routine to insert blocks at point locations and want to modify it but i do not know much about lisp ...
what i want is :
1) script start and asks for a Block Name (in this case QPP1, QPP2, QS, QE, ect)
2) the user picks existing text
3) the script reads the value existing on this text an put it in a variable
4) then erases the pre picked text
5) inserts the block chosen
6) changes block value to number value pre-read
since it do almost all steps except for step 3 and 6
View 4 Replies
View Related
Apr 5, 2012
I would like to create an dynamic block to a level symbol, with a parameter that aligns the length of the line under the text with the text end.
I attached an jpg image with an example.
I thing the key element is to create an point that is attached to the end of the text and apply an stretch to it, but I didn't succeed.
View 1 Replies
View Related
Aug 16, 2013
Im still new to Civil 3D and i would like to know how to connect inported points using 3D polylines. I imported my points from Excel in a PNEZD format. How do i get the 3d poly line to snap to my points so I can Connect them? someone mentioned using a feature line to connect the points but im not sure how or what that would do.
View 3 Replies
View Related
Sep 26, 2013
What's the difference between the "Point" Parameter and the "Base Point" Parameter in the Block Authoring Parameter Pallet?
HP DV7 Laptop
Intel Core i7-3820QM 3rd Generation Quad Core 2.7 GHZ CPU
16 GB DDR3 RAM ( 2 DIMM ) / 180 GB SSD
Nvidia GeForce 650M Graphics w/2 GB Memory
Windows 7 Professional 64 bit / AutoCAD Civil 3D 2014
View 6 Replies
View Related
Mar 6, 2013
Under Toolspace/Survey/Survey Point I have a series of points shown. These are not shown under points in the prospector tab. How to insert these into my actual drawing?
View 2 Replies
View Related
Sep 26, 2013
i have a series of points from a cross section taken using an adcp and i am trying to draw the cross section in autoCAD lt 2014. is there a way i can enter the points as a sort of script so i dont have to manually typoe in the distance and height between each point as i have about 200 points in each cross section.
View 6 Replies
View Related
Sep 13, 2013
Is there a way of inserting points from an excel spreadsheet that come into the part file already fixed, instead of manually selecting the points and selecting the fix constraint?
View 2 Replies
View Related
May 31, 2012
I have made an add-in that automates the insertion of points on a surface and I am trying to find out how to put these points on a specific layer. I guess that changing the "standard" default Point style would do the trick, but I can't find the objects to use in the Civil3D API.
Civil3D 2012
VS 2010, VB or C#
View 4 Replies
View Related
May 6, 2011
New to using VBA with AutCAD. On my drawing I have to plot some line which I am able to plot using VBA. But when it comes to delete those lines, I have to do it manually. So gave a try to BLOCKS.
When I run the macro, I get following error -Run-time error - 2145320929(802100f)
AutoCAD is unable to service automation request.
View 6 Replies
View Related
Jul 23, 2013
I am trying to insert some blocks that i read from CSV file. I am reading the values for X and Y position from a CSV file and inseting blocks with this values in AutoCAD.
Here is my
[CommandMethod("BI_5")] public void BlockInsert_5() { String filePath="C:\Users\Dimitar\Desktop\imp.csv"; CsvDoc csv = new CsvDoc(filePath, true); for (int i = 0; i < csv.Data.Count; i++) { string blockQualifiedFileName = csv.Get<string>(i, "Block Path"); double scale = 3.0; Vector3d DispacementVector = new Vector3d(Double.Parse(csv.Get<string>(i, "PosX")), Double.Parse(csv.Get<string>(i, "PosY")), 0); // Database tmpDb = new Database(false, true); tmpDb.ReadDwgFile(blockQualifiedFileName, System.IO.FileShare.Read, true, ""); Matrix3d Transform = ed.CurrentUserCoordinateSystem; Transform = Transform * Matrix3d.Scaling(scale, Point3d.Origin) * Matrix3d.Displacement(DispacementVector / scale); db.Insert(Transform, tmpDb, true); } }
One of the values for Y is 0. And the block instead of showing on X,0 it shows at some X,Y value. If you need to see the csv file I can upload it.
View 7 Replies
View Related
Nov 4, 2011
I just created a dynamic block for our rev clouds, cause they're annoying to draw.
For some reason when I insert it, it is automatically inserting at 0,0. Why is it doing that? Also, if I put it into a Tool Palette (my boss just discovered these, so I'm creating a whole bunch for the company... those things are AWESOME) and when I use the Tool Palette, it works just fine.
Now, this won't be a problem as long as everyone uses the TP's I'm creating, but we have one Engineer in particular that's a toolbag and doesn't seem to remember to use all the stuff I spend all this time researching and programming.
View 6 Replies
View Related
Dec 5, 2013
I am having trouble getting a simple macro to browse insert a block. My file path looks like this.
L:/Acad Blocks/Blocks_(SEPCO)/STRUCTURAL/2013_SEPCo_Blocks/WELD_FILLET.dwg
View 3 Replies
View Related
Nov 12, 2012
Inserting blocks from design center coming in bigger scale...what should I do to control the scale factor?
I have being dealing with INSUNITS factor without success...
View 2 Replies
View Related
Nov 15, 2012
I recorded a macro that inserts a block in top view. It works good but it takes allways the last inserted block, just like the insert command.
I would like to create a few buttons with macros tha insert a predefined block.
For example: I need a button that, when clicked, inserts 'drawing.dwg' in top view AND exploded.
View 9 Replies
View Related
Mar 22, 2013
I use the following code to create blocks in AutoCAD 2013. When the user goes to insert this block, the insert command does not show a preview of the block when moving the mouse to locate it, and it comes in exploded. This was working at one point, but something changed. Is there some setting in AutoCAD or through the API that would cause this behavior?
Document doc = Application.DocumentManager.MdiActiveDocument;
Database db = doc.Database;
Point3d p1 = new Point3d(0, 0, 0);
Point3d p2 = new Point3d(10, 0, 0);
Point3d p3 = new Point3d(10, 10, 0);
using (Transaction Tx = db.TransactionManager.StartTransaction())
[code]....
View 3 Replies
View Related
Jan 2, 2014
Having a lot of issues manipulating points on paths in Illustrator CC - this is a fundamental feature of creating vector graphics and it's very annoying I'm paying for this and it's just not working. Eating up a lot of my time simply because I can't select or convert or add the anchor.
View 2 Replies
View Related
Jul 10, 2012
Is there a way to insert CAD blocks into the Multiline text editor, much like you are able to insert a block into a Table.
I am asking for the sole purpose of Plan Notes. When we lay out Plan Notes originally we place the note bubble next to the line of text it represents. When we have to come back at a later time and edit the mtext, sometimes add a line our users are in a rush and forget to re-align the note bubbles with the text. If there was a way to insert the block into the text editor and have it still be able to edit it.
Is this a feature in 2013?
AutoCAD MEP 2013
Window 7 pro 64 bit
E5440 (8 CPU) ~2.8ghZ
16GB RAM
NVIDIA QUADRO FX 3500 2270MB
View 3 Replies
View Related
Dec 26, 2012
I need to insert the same block from a tool palette multiple times into my drawing. Is there a way to do this without having to pick the block from the tool palette every time I want to insert it?
View 9 Replies
View Related
Dec 30, 2013
I created a dynamic block table and I try to insert into a drawing, however, it doesn't work, all block data are gone.
View 4 Replies
View Related
Jun 28, 2013
When inserting certain blocks that were created in the 0 layer, they are not taking on the color of the layer in which I insert them.
Now when I click on the object, it shows up as being on the correct layer but the object is still white, I ran into something like this before, and was able to fix it by going into the Block Editor and setting the layer in there. This only happens on certain blocks.
View 3 Replies
View Related
Aug 7, 2013
I believe in our previous AutoCAD 2009 software we could create a block with attributes and save the drawing as a block, either wblock or create block. When inserting this block into another drawing we would get the attribute dialog box appear and complete the required information. Within AutoCAD 2012 we have made a block with attributes, when we insert this drawing into another drawing the block is inserted but no attribute dialog box. If I click on the block I see edit block definition dialog box with the drawing file name of the block and the block name. If I explode the block I then have my block and when clicking the block the attribute dialog box appears. It seems that in AutoCAD 2012 when we create the block and save the drawing and then insert the drawing it becomes a nested block type. Is there a setting I need to switch to prevent this and have the block insert and then click on it to change the attributes as required?
View 5 Replies
View Related
Jun 26, 2012
Last week we upgraded to ACA 2013 from ACA 2012.
I am now having issues any time I try to insert a Block into any drawing - I get a Fatal Error.
I have uninstalled & reinstalled this afternoon but I am still having the same issue.
It happens when I am trying to insert blocks from both the Design Centre & also from Tool palettes.
Other users in my office do not have this problem, the only difference between my set-up & theirs is that I have installed the 'AEC Section Display & Tag Scale Hotfix' but I have tried uninstalling this but had the same results.
View 4 Replies
View Related
Mar 5, 2012
I am trying to insert blocks but in the command line it says invalid, if I copy & paste the block in it works fine but as soon as i try to use the insert command it will not work.
Probably useful to tell you that I have around 60 blocks each saved as a DWG file and all of them are saved in 1 folder so there is no other crap in there.
the thing that really baffles me though is the fact that after I have pasted the block in to the drawing, the insert command works for that block.
View 5 Replies
View Related
Apr 15, 2013
I downloaded a block of a plan view of a wheelchair user so I can see just how much space there is available.
The block is dimensioned but when I insert it and measure its dimensions, the readings are different. For example, a dimension reads 1070mm but when I measure it, I get 1023mm. Not far out but when I measure a 150mm dimension, I get 83mm. A 460mm dimension is measured as 536mm.
INSUNITS = 0
View 4 Replies
View Related
Jan 22, 2014
At the moment when I use our company tool palette and select a block when I insert it if I hit the CTRL key on my keyboard the insertion point jumps between all the points in my block be it stretch points, base points or basic points.
If I create my own palette and add my blocks to it, the CTRL function doesn't work when I select a block.
View 5 Replies
View Related
Feb 9, 2012
Can I make VBA macro (application) for inserting blocks? I need to insert blocks from list of blocks that I made. I want to use less time with that application on inserting blocks, then to use standard method Insert>Block... So I want to check the block from my list, to define attributes and to put the block automatically on drawing, and then to repeat all with another and another blocks. all to be put one close to other.
View 9 Replies
View Related