Jump to content

Search the Community

Showing results for tags 'autocad'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • CADTutor
    • News, Announcements & FAQ
    • Feedback
  • AutoCAD
    • AutoCAD Beginners' Area
    • AutoCAD 2D Drafting, Object Properties & Interface
    • AutoCAD Drawing Management & Output
    • AutoCAD 3D Modelling & Rendering
    • AutoCAD Vertical Products
    • AutoCAD LT
    • CAD Management
    • AutoCAD Bugs, Error Messages & Quirks
    • AutoCAD General
    • AutoCAD Blogs
  • AutoCAD Customization
    • The CUI, Hatches, Linetypes, Scripts & Macros
    • AutoLISP, Visual LISP & DCL
    • .NET, ObjectARX & VBA
    • Application Beta Testing
    • Application Archive
  • Other Autodesk Products
    • Autodesk 3ds Max
    • Autodesk Revit
    • Autodesk Inventor
    • Autodesk Software General
  • Other CAD Products
    • BricsCAD
    • SketchUp
    • Rhino
    • SolidWorks
    • MicroStation
    • Design Software
    • Catch All
  • Resources
    • Tutorials & Tips'n'Tricks
    • AutoCAD Museum
    • Blocks, Images, Models & Materials
    • Useful Links
  • Community
    • Introduce Yourself
    • Showcase
    • Work In Progress
    • Jobs & Training
    • Chat
    • Competitions

Categories

  • Programs and Scripts
  • 2D AutoCAD Blocks
  • 3D AutoCAD Blocks
  • Images
    • Backgrounds

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

  1. Hi there .. This lisp helps you to quick draw pile section and profile with annotation text around entities. Just drag & Drop. Command : "PILE" Please feedback )Pile.lsp
  2. Hi, I need to change colors on a dwg file and to see them changed on Navis. Let me explain : - I'm gonna receive .dwg every weeks, same name but updated (ex : 1.dwg, 2.dwg, 3.dwg) - I'm planning to xref all the .dwg on the same drawing to change the colors I need (with Visretain : 1, I'm gonna keep the modified color) (Xref.dwg) My problem is when I append Xref.dwg, it takes the colors from the originals files (1.dwg, 2.dwg, 3.dwg). Does any of you know how to do it? Thank you Ildan
  3. Hi all. I'm sure that this question has probably been raised countless times over; I can't find any solution, so please accept my apologies in advance. I have AutoCAD at work and on my desktop at home, but only True View and Design Review on my laptop. I need to work from my laptop and need to view acad dwgs; that's it, but I need the external references (xrefs) loaded within dwgs too. Other than etransmitting etc is there a way/program to simply open an acad dwg and be able to see it? Even as an uneditable entity/image or something? I just need to see it - from the .dwg file itself; no PDF or anything like that. Thanks! Michael
  4. Hi all! Having a bit of trouble with something I thought would be basic in CAD! I'm going to do some freelance visualisation work and the architects have supplied me with plans (PDF and DWG), some elevations are at a scale 1:200@A1 others are 1:100/1:75/1:50 etc. How do I convert or scale these drawings back to true size 1:1 so I can take the splines over to 3DS Max to speedup my workflow? Am I missing something simple here? I tried selecting and scaling up by x50/x75/x100 etc but nothing matches up with the dimensions given! Fairly advanced with the workflows of Max and Maya as an animation graduate but new to AutoCAD! Any help would be immensely appreciated!!! Kind regards, Andy
  5. Dear AutoCAD gurus, I am having a serious problem with scaling in my current project. I am using AutoCAD 2014 Civil 3D. All of my viewports are set to 1"=40', but when I print them out, they are consistently off by 1/40th of an inch. It should be noted that I first print them into pdfs, but I am having this problem no matter if I print from the pdf or if I print them from autocad directly. Has anyone else faced a similar issue? Thank you.
  6. Dear AutoCAD gurus, I am having a serious problem with scaling in my current project. I am using AutoCAD 2014 Civil 3D. All of my viewports are set to 1"=40', but when I print them out, they are consistently off by 1/40th of an inch. It should be noted that I first print them into pdfs, but I am having this problem no matter if I print from the pdf or if I print them from autocad directly. Has anyone else faced a similar issue? Thank you.
  7. Dear AutoCAD gurus, I am having a serious problem with scaling in my current project. I am using AutoCAD 2014 Civil 3D. All of my viewports are set to 1"=40', but when I print them out, they are consistently off by 1/40th of an inch. It should be noted that I first print them into pdfs, but I am having this problem no matter if I print from the pdf or if I print them from autocad directly. Has anyone else faced a similar issue? Thank you.
  8. Hello everyone - been a long time since I was on here I've created a solid model using Autocad 2014 which has multiple solid entities that I want to export to Revit 2014 as individual entities. When I import it into Revit 2014 however the drawing comes in as a single item, and if I right click the bounding box and try to either partial or full explode it, it completely disappears. Is there any way of getting the entities changed from Autocad to Revit so I can add BIM information to each separate entity within Revit? Thanks in advance for any advice and a big "Hello" to anyone that remembers me Spacepig
  9. I'm writing a program to import a WMF into the AutoCad Drawing. I haven't been able to find any reference for the import command, so I can't figure out why it's not working. According to Visual Studio, the Import command needs these things to work. Import(String FileName, Object InsertionPoint, Double ScaleFactor) Simplified Code: Imports Autodesk.AutoCAD.Runtime Imports Autodesk.AutoCAD.ApplicationServices Imports Autodesk.AutoCAD.DatabaseServices Imports Autodesk.AutoCAD.Geometry Imports Autodesk.AutoCAD.EditorInput Imports Autodesk.AutoCAD.Interop Dim AcadApp As Autodesk.AutoCAD.Interop.AcadApplication AcadApp = CType(GetObject(, "AutoCAD.Application.18.2"), Autodesk.AutoCAD.Interop.AcadApplication) acadDoc = AcadApp.ActiveDocument acadDoc.Import("C:\Users\C\Documents\Drawing1.wmf", New Point3d(2, 2, 0), 2.0) When I comment out the last line of code, acadDoc.Import("C:\Users\C\Documents\Drawing1.wmf", New Point3d(2, 2, 0), 2.0) It runs fine. The error I'm getting is when I run it AutoCAD, ************** Exception Text ************** System.ArgumentException: Value does not fall within the expected range. at System.StubHelpers.ObjectMarshaler.ConvertToNative(Object objSrc, IntPtr pDstVariant) at Autodesk.AutoCAD.Interop.IAcadDocument.Import(String FileName, Object InsertionPoint, Double ScaleFactor) at TestSelectingFiltering.TestSelecting.MyCommands.FilterBlueCircleOnLayer0() at Autodesk.AutoCAD.Runtime.CommandClass.InvokeWorker(MethodInfo mi, Object commandObject, Boolean bLispFunction) at Autodesk.AutoCAD.Runtime.CommandClass.InvokeWorkerWithExceptionFilter(MethodInfo mi, Object commandObject, Boolean bLispFunction) at Autodesk.AutoCAD.Runtime.PerDocumentCommandClass.Invoke(MethodInfo mi, Boolean bLispFunction) at Autodesk.AutoCAD.Runtime.CommandClass.CommandThunk.Invoke() Any help would be greatly appreciated, Thanks!
  10. We have aAutoCad file with MagiCad object inside, we need modify some text from manyMAGIDIMLINE, for that we use MagiCad Object Enabler and explode it. But theresulting block contains different information from the original. For example,we have a MAGIDIMLINE with “VG + 16.32” or “VG + 16.30” ,text inside, and whenwe explode it, the resulting blocks have “VG +-0.18” and “VG +-0.20”, we don’tknow what happen!. We haveaccess to the original projects, but only need to modify one file for survey. Any Idea??? Thanks!!!
  11. Jrbuds

    Macro Help

    Hi, I am trying to create a macro (or lisp) and am struggling to find how I would do it. Basically what I want to achieve is this: Click Custom button, Click first point (p1) Click second point (p2) Insert block at p1 and set scale to equal distance between p1 and p2 Set bearing to the bearing between p1 and p2 then end. The process will take 3 clicks including click the custom button. This is to basically speed up inserting doors. I was thinking possible making it draw a line when you click p1 and p2 then use this line to grab the start of line, end of line and bearing. Or using variables. Any help would be appreciated, or pointing in the right direction. I don't expect anyone to do all the work for me, just a hint would be awesome.
  12. Hello. Is it possible to import real time gps coordinates from Leica CS10 to Autocad? Is it a function in Autocad or will i need a third part software to accomplish that? Thanks for your help
  13. Alright so I have to subtract that little box inside the guide block so it looks like this http://gyazo.com/bc7fdf0552af580344d665e45127b2db I have no idea how to do this.. Thanks:? exploded version guideblock.dwg
  14. Dear Friends , Please Help Me out With This LSP file IT is Not Working, Some thing is missing in this, i am attacheing my lsp file for ur refrence.... its asking output file. i dont have that file
  15. I have a LISP that creates balloons simply for me, the problem is the LISP only makes balloons with a dot on the end. I have been playing about with it trying to make it have the option to put an arrow head on the end but can't work it out after trying for quite a while. The draughtsmen here have been using it since they started so I'm not sure if LISPs will be written the same way now as they were in '87! Any help would be great. Cheers. Here is the code; ;---------- BALLOON.LSP Simon Jones 24-8-87 ; Macro to simplify the construction of item-number labels. ; The size of the dot, text and balloon are based on the dimensioning ; variables. If DIMASZ is set to zero the dot is not drawn. If the ; current text style has a fixed height then that height is used to ; scale the balloon and its text. ; A null response to the first prompt ("From point: ") will terminate ; the command. ; Numeric text is incremented to aid itemising components of a drawing (defun C:BALLOON (/ a b c d h l r txt) ; a : Leader start ; b : Balloon centre ; c : Leader end point ; d : Dot diameter ; h : Text height ; r : Balloon radius ; Store and set system variables (setq ce (getvar "CMDECHO")) (setq bm (getvar "BLIPMODE")) (setvar "CMDECHO" 0) (setvar "BLIPMODE" 0) ; Set dot diameter to tenth of arrow head size (setq d (* (getvar "DIMSCALE") (getvar "DIMASZ") 0.3)) ; Check whether the current text style has a fixed height (setq ts (cdr (assoc 40 (tblsearch "STYLE" (getvar "TEXTSTYLE"))))) (if (zerop ts) ; Set balloon radius based on dimension text height (setq r (* (getvar "DIMSCALE") (getvar "DIMTXT") 1.85) h (* (getvar "DIMSCALE") (getvar "DIMTXT") 1.3) ) ; Set balloon radius based on current style text height (setq r (* ts 1.85)) ) ; Get start point (a null response will terminate function) (setq a (getpoint "\nFrom point: ")) (if a (progn ; Get balloon cntre disallowing null responses (initget 1) (setq b (getpoint a "\nBalloon centre: ")) (if (null oldtxt) (setq oldtxt "1")) (prompt (strcat "\nText <" oldtxt ">: ")) (setq txt (getstring)) (if (= txt "") (setq txt oldtxt)) (setvar "BLIPMODE" 0) ; Draw dot if DIMASZ is set (if (> d 0) (command "DONUT" "0" d a "")) ; Calculate point where leader crosses balloon (setq c (polar a (angle a b) (- (distance a b) r) ) ) ; Draw leader (command "LINE" a c "") ; Draw balloon (command "CIRCLE" b r) ; Draw text (checking against fixed text height) (if (zerop ts) (command "TEXT" "M" b h "0" txt) (command "TEXT" "M" b "0" txt) ) (setq oldtxt (itoa (1+ (atoi txt)))) ) ) ; Reset system variables (setvar "BLIPMODE" bm) (setvar "CMDECHO" ce) (princ) )
  16. Dear All, Good Day, I am looking for a method to export all the GPS coordinates which have been assigned to each point along with the properties of that point to an excel csv. In our drawings, there are multiple columns and each column has four points and each point has X,Y,Z coordinates. I want to export all this information to an excel sheet. Any idea? Thank You
  17. Hey guys, I don't know what I did, but one of my toolbars moved somehow? see below for what I'm talking about. How do I get the above toolbar back down? I've tried clicking and dragging it... I don't know how I got it down. Any help is appreciated
  18. Hi All, I need to integrate dwf files in my web page, please suggest me the Autodesk software(it can be paid software also). There is one more requirement it should fulfill, suppose i want to search for a room in building which has some number or name , i want it be searched in the drawing directly using a query string from the aspx page. Please suggest me if it is possible , if it is please guide me on this. Thanks Ritchie
  19. ineedCAD

    Schematic in MEP - how add own blocks

    Hi guys, I work with AutoCad MEP 2014 not so long. I try figure out how connect my schematic blocks legend with AutoCAD MEP library. Is somebody here who is drawing schematics in MEP? Tomorrow If is necessary i Will deliver some screens
  20. If using a Partial customization file that is still in the process of being updated regularly or you’d like that option to updated it, is the best practice to load it via the acad.lsp and your loader through the acad.lsp?
  21. Good afternoon. I haven't used autocad since 2002. I am look for a good instructional video that will get me up to speed with regards to autocad 2014. I just downloaded the trial version of Autocad 2014 and I want to become proficient enough to be employable within the next few weeks. I have used Autocad, Catia and Unigraphics in the past when I was in college, but that was years ago. I am looking to get back into the CAD market and find a cad job while sprucing up my skills. If you guys could direct me to an online source that I can view Autocad videos that would put me on a running start, I would greatly appreciate it. Any suggestions would me most appreciated. Thanks in advance autocad 2014, employment, money, cad, autocad, hiring
  22. Dear AutoCAD users: We would like to develop a plugin for AutoCAD to create geometries (line/arc/circle/ellipse/polyline etc.) through touchscreen. So instead of using commands, it will be just like freehand drawing, the program will automatically generate shapes to match your touchscreen input. We want to do a little survey here to see if it makes sense to you? Will you buy it? One concern is, because touchscreen input is not as precise as through keyboard & mouse, the dimensions might be a little off (e.g. you want to draw a line with a length of 10.5, the program thinks it is a 10), and you will need to make some adjustments afterwards to get the exact size you really want. Would this be problem for you? Thanks! Disclaimer: We are a startup working on our own project and have no relations to Autodesk.
  23. Loading of Bently AutoPlant is well, Piping is also, but when i try to open dialog Component References, AutoPlant shows next message in command: Loading the AutoPLANT Component Preferences. Please wait... Initializing accont (AC_CONTAN18)... Error loading surrogate process windows manager. ERROR: OleManager was not found. What is OleManager? How can i solve this problem? Google is silent! =(
  24. Good Day looking for assistance with extracting data from an AutoCAD table. Hav found a fex examples on how to create a table in AutoCAD with VB.Net but no luck on how to loop through the rows and columns in an AutoCAD table and see the items within. Want to be able to loop through a list of drawings, open drawings find the table in Paper or Model space, loop through the records and export them to excel - SQL or XML, or even a simple method of creating a collection if records in VB.Net, where one colud then export the list Any assistnace most welcome Regards
  25. crazyjoedevola423

    Using AutoCAD for Island Mapping

    I am looking to draw a large lake that I live on that has 14,000+ islands. I have started drawing small sections by bringing in high quality maps and tracing them using the spline command. Is there a faster way to trace the entire lake. I want it to be all drawn with closed poly lines so that I am able to laser cut it and apply hatching. Other tracing programs in which I insert a image of the lake and it gives me the CAD format are very inaccurate and a pain to work with. What do you recommend? I have attached a small section of what I am trying to trace, I want the islands to be traced.
×
×
  • Create New...