Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 10/22/2024 in all areas

  1. I'm on a project involving four buildings all connected by a parking garage. The buildings all have different levels, and I'm wondering how to best deal with that. I would prefer to have all buildings in one model, even though I know most people advice against it. This is because the architect has already started out in this manner, and the project leader has made out like he wants the other participants to follow suit. I could give all the buildings their own levels with names that relate to the building. It works, but creates lots of levels that will need to be filtered out in other views. The architect has all the buildings in one model, and so seems to have solved it for himself somehow. However, when I open his model, it only has a single set of levels that fit one of the buildings. Any ideas on the best approach here?
    1 point
  2. Try this subtle change saves typing one find variable. You can copy parts of the text from command line and use in new text the T supports spaces in new string. ; Findreplaceall By Terry Cad 2006 (defun c:txtFindReplace( / strold strnew) (if (not Findreplaceall)(load "findreplaceall.lsp")) (while (setq ent (car (nentsel "\nPick source text Enter to exit "))) (setq obj (vlax-ename->vla-object ent)) (setq strold (vlax-get obj 'textstring)) (setq strnew (getstring (strcat "\nReplace " strold " with ? ") T)) (c:FindReplaceAll strold strnew) ) (princ) ) (c:txtFindReplace) findreplaceall.lsp
    1 point
  3. Again "google autocad add custom tool palette". I could have posted link but you need to help yourself at times.
    1 point
  4. I've now updated my Dimension Overlap program to version 1.3 to incorporate a selection prompt.
    1 point
  5. Look carefully at these 2 lines they are different. Often a quote is needed. acAttachmentPointBottomCenter 'acAttachmentPointBottomCenter (VLA-PUT-ATTACHMENTPOINT OBJ ACATTACHMENTPOINTBOTTOMCENTER) ; error : bad argument type <NIL> ; expected VLA-OBJECT at [vla-put-attachmentpoint]
    1 point
×
×
  • Create New...