Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 03/31/2024 in all areas

  1. I see what your saying could be condensed down to. bad code
    1 point
  2. Probably a Windows update messed it up. You might try a repair, restore to defaults or a remove and reinstall of AutoCAD or get a newer version designed to run with Windows 10.
    1 point
  3. That's called the Quick Access Toolbar (QAT) if that helps. What are your computer specifications? What Windows version? What happened that made it disappear? If I recall correctly, this was an issue with running older AutoCAD versions on Windows 10 or newer, I believe AutoCAD 2016 was first for Windows 10.
    1 point
  4. Maybe: (mapcar 'print (dictsearch (NAMEDOBJDICT) "ACAD_LAYOUT")) And maybe this: (foreach x (entget (namedobjdict)) (if (= 3 (car x)) (print (cdr x)) ) ) And this: (defun c:dicttest (/ l) (vl-load-com) (vlax-for d (vla-get-dictionaries (vla-get-activedocument (vlax-get-acad-object))) (if (vlax-property-available-p d 'name) (setq l (cons (list (vla-get-name d) d) l)) ) ) (mapcar 'print l) )
    1 point
×
×
  • Create New...