AutoCAD Civil 3D :: Listing Lines
Oct 8, 2013If I draw a line and label it I get the correct bearing and distance. If I list the line it gives me a different bearing. how can I correct this?
View 1 RepliesIf I draw a line and label it I get the correct bearing and distance. If I list the line it gives me a different bearing. how can I correct this?
View 1 RepliesI checked a couple of old posts looking for a lisp routine that will count the number of lines and list each different length either in a dialog box or txt file. I am working on an estimate and I have a floor plan of owsj of different lengths. I downloaded the tlen.lsp but that is only giving the total number of joists and the total length.
I am looking for a lisp so that I can window all the owsj at once and have it list or show the result for the joist in this manner
sample output:
xx joists = 10'-0"
xx joists = 20'-0"
xx joists = 30'-0"
Is there a way to count all types of object in a drawing?
Like this:
Command: ????
Number of blocks: 22
Number of 3d faces: 2
.
.
Number of hatches:1
"Qselect" does it but it can be very slow if there are a large number of objects in the file.
I guess this information is savea as "meta data" and can be accessed even without opening the file???
Is there a way to re-order the point file format listing for points on the settings tab? I have tried everything and it will not change the order of the listing.
View 3 Replies View RelatedI am wondering if there is a way to modify the Map Check Report to include Acreage Calculations like it used to. I am only given the square feet and need both. I know I can calculate it easily, but it would be nice if it were there by default.
View 5 Replies View RelatedCivil 3D 2013.
Problem with command from Home tab - Draw panel - Curves drop-down - Create Curves Between Two Lines OR Create Curve on Two Lines.
If you select the Degree option, it draws a zero length curve when you type in a valid number for degree of curve. I have tried entering it in decimal format and as ##d##'. NOTHING WORKS!
Is it possible to get a listing of all of the X-Refs contained in a particular document. I am attempting to do this with the following
db.ReadDwgFile(testFileName, FileOpenMode.OpenForReadAndWriteNoShare, true, null); using (var tx = db.TransactionManager.StartTransaction()) { var xrefGraph = db.GetHostDwgXrefGraph(true); for(int i = 0; i < xrefGraph.NumNodes; i++) { XrefGraphNode xgn = xrefGraph.GetXrefNode(i); Console.WriteLine(xgn.Name); } }
I know that this drawing has 3 attached X-Refs, but none are coming up in the node graph.
i am working on correcting a drawing. when i select a object its layer shows up but then when i try and find the layer in the listing on the layer manager its not there. i can't even select the layer to keep it current.
View 0 Replies View RelatedIs there a way to get a listing of all fonts used with in a drawing?
View 1 Replies View RelatedWhat i want is to create a treeview that lists all the blocks. I can achieve that trough iterating the blocktable record.
No i can populate all the blocks in the control.
But how can i get a list of all block references in model and paperspace.
We use autocad lt 2012, when creating a drawing, the same component can be used more than once, is it possible to print a detail listing of all the components used in a single drawing in some sort of report format, or maybe export the listing to a program like MS excel....etc.
View 1 Replies View RelatedIs there an Autocad command that will list the lengths of several seperate lines and combine the lengths similar to the areas command?
View 3 Replies View RelatedI have created a circle from 3topo points. Im having difficulty getting accurate elevation (z) of the center of circle (pile representation) via cad polyline listing. im getting same "z" all through out which in fact is not.
View 8 Replies View RelatedAny way to change the order that the parameter properties appear in the property manager. Currently I think they are appearing in the order in which I placed them, but I would likr to re-arrange them.
View 3 Replies View RelatedRecently installed 2013, previously had 2011inv. Trying to find out exactly what the constraint changes are from 2011 to 2012 inv. I as told that there was a post here with them, but cannot find it (only posts of constraint problems that people were having when they switched to 2012).
what the changes are from inv2011 to 2012 or inv2011 to 2013. Doesn't autodesk have these changes listed somewhere in writting?
I'm using AutoCAD 2013 64 bit and MS Visual Basic 2010 Express (and Excel 2007), and I'm trying to write VB.NET code to list all xrefs attached to a group of drawings. The list of drawings is in column 1 of an Excel spreadsheet, and I want to list all xref filenames in columns 2 onwards - one row per drawing.
The Excel part works fine. I just wish it was as easy to extract information from DWG files.
I created a "Windows Form Application" project in VB 2010 and added a button to Form1. Clicking on the button runs the code.
When adding references I added "Microsoft Excel 12.0 Object Library" COM for Excel (as per Excel website tutorial), and "acdbmgd.dll" and "acmgd.dll" (both with Copy Local=False) as per AutoDesk .NET tutorial. But I got warning messages saying Acdbmgd.dll and Acmgd.dll target a different processor. Is this different to the Excel COM target processor, or do I need to change the target processor for the whole project (and if so, how)?
I tried adding "AutoCAD 2013 Type Library" COM reference instead of "acdbmgd.dll" and "acmgd.dll" which got rid of the target processor warning messages, and I could then open the dwg files successfully, but still the project crashes.
Here's the code so far...
Imports Excel = Microsoft.Office.Interop.Excel
' do I need to include Imports for AutoCAD here? Various websites list AutoDesk.AutoCAD... imports here, but AutoDesk isn't an available option when I try adding this here - maybe because I have the wrong references?
Public Class Form1
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
[Code]....
When I run the project I also get a "A first change exception of type 'System.Runtime.InteropServices.COMException' occurred in MyProject.exe" message. How can I rectify this?
Currently it crashes when it gets to the cadDwg.Database.Blocks line saying "Call was rejected by callee. (Exception from HRESULT: 0x80010001 (RPC_E_CALL_REJECTED))".
The xlsx file and the dwg files refered to in the xlsx file all exist. I've tried running it both with AutoCAD 2013 running and with AutoCAD 2013 not running. Still doesn't work
I feel so close, but what am I missing? I haven't downloaded the "ObjectARX for AutoCAD 2013 (32-bit and 64-bit)" from AutoDesk yet because (i) I have to get a licence, and (ii) it's a very large file, and (iii) I seem to be able to open drawing files without it, but just not access the data I want in the files.
I've got 1500+ drawings to look at by the end of the week. If this doesn't work it's back to AutoLisp (and maybe script files, but that's another headache).
For some reason my Styles Palette lists "most" of my style-sets twice? There is a horizontal rule below my last style listing in the flyout menu before it starts listing them again? Loading a style from either list works. I have done a search on my hard drive and on one file exists for each style .asl file.
View 12 Replies View RelatedI can tag walls by entering the wall type in the 'type mark' box in the assembly's properties, but is there a way of listing out the material of each type of wall that has been used in the project. e.g:
Wall Type P1
16mm Gypsum Board
92mm Steel Stud
16mm Gypsum Board
When I try to add the subfolder, Lightroom says they already exist but will not list them in the directory. I haven't changed any settings lately.
View 6 Replies View RelatedI need to list all the bitmaps in my scene.
I've brought in an fbx that was created & materials applied in Revit. The bitmaps don't display on the model in my viewports, although they do render. I need to be able to make a list of all the bitmaps that are applied to this model, so I can go track them down and save copies into a folder.
Back when I was using Max 2009, I could open my material/map browser, set it to search the scene, and list only the bitmaps, not the root materials. How can I do this in 2011?
When the IP address of one of my scanners was changed (due to power outage), two listings of the scanner now show up as separate devices with the same name in the PSE9 WIA list - one of these with the old obsolete IP address. The same device is also listed with the new address and it works. How to I delete the WIA listing with the old IP address?
Only one entry with the IP address for this HP printer/scanner shows up in the Windows 7 list of printers. So this WIA list is a remanent of the past. How do I get rid of it?
As I understand it, TextFonts is a collection of all fonts available to Illustraot. Is there a collection of all fonts used in the open document? Or would I have to step through every textFrame an create that list myself?
View 8 Replies View RelatedWhen I scan old film to create digital files, I put them in a folder with the file name ending in a sequential number ( 1, 2, 3, etc). Sometimes, when I open the folder to work on the image files in Photoshop Elements 11, I find the files list in the proper sequential order, but other times, especially when I have recently had some files open, the files will be listed in the order that I last opened them. How can I force PSE 11 to always list them in numerical order upon opening the folder?
View 3 Replies View RelatedI have a bunch of feature lines defining some building footprints and what not. They are on different layers for each possible design I am considering. Whenever I freeze any of the feature lines, they all turn off, eventhough they are on different layers? What is the problem?
Windows 7 x 64 bit
NVidia Quadro 2000 Dual Monitor
6.00 GB RAM
Intel Xeon W3550 @ 3.07 GHz
Civil 3D 2013 SP 2, Civil 3D 2012 SP2, Civil 3D 2011 V3, Civil 3D 2010 V3
I see that there is an Inquiry tool for Minimum distance between two lines but I can't find anything about the maximum distance.
View 7 Replies View RelatedI'm trying to create sample lines at sta. 0+58, 1+08, 1+58, 2+08......................
My alignment begins at 0+00.
In the Create Sample Lines - By Station Range I set the From Alignment Start?end both to false and set the start and end stations as 0+58 and 20+58 respectively. The 0+58 sample line plots at 0+58 but the rest of the sample lines plot at even 50' stations (1+00, 1+50...).
what i did wrong, but suddenly lines with different colors are all displayed as gray. I could attach the file, but the problem is really simple. I have three lines and under properties i can clearly see that one should be red, the other should be color 250 and the third 253, but visually all the lines look gray (i believe they look 253 to be exact).
If i draw new lines, the colors act normally, but the old lines are all gray.
I have built a alingment, corridor, and surface of a driveway but I have a few holes in my surface. I tried to add lines to my TIN surface and some filled in properly but others would not and I had TIN lines that crossed (actually they are 4 different lines that meet at on point). Why does this happen and how can I fix it?
View 4 Replies View RelatedI have a small image imported from a PDF 1.2 X 2 centered on a 8.5 X 11 inch White background.
I simply want to select the black portion of the image, copy - duplicate a set amount around the existing image.
I thought this would be select, copy paste, paste..... done, save. but no not that easy.
I assume I have 2 layers a FG and a BG layer. I believe that FG is Black ? I have tried rectangle select then paste but that is not working.
How do you get a listing of layers?
How do I just select the Black FG layer data?
How to I paste into a 3X3 array which is my ultimate goal:
X is the original image in Black:
C are to be copies of the X image:
C C C
C X C
C C C
I will attach the PDF image
What is the process used to delete unwanted catalogs from the listing that comes up when loading LR 4? Any web article on the general subject of deleting unwanted catalogs?
View 1 Replies View RelatedI created a profile showing original ground and included superimposed profiles and an offset of the og line. Now when I open the drawing, the profile lines are gone. The grid is there, all of the profiles are listed under the alignment but they are not showing up. All of the styles are on and I've turned all layers on. I've tried to regain all and recover the drawing but the profile lines are not showing in the grid.
View 6 Replies View Related