
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Deja vu!
I had this same list file not work after updating to 2015 and now after updating to 2017, it is not working again.
So, to state again:
My company has used single-line text for schedules forever. No one is interested in using AutoCAD's tables or using Excel to create those schedules. I rather, I could say, the bosses are not interested in paying me to update those schedules. Which is fine, most of the people here have been using these schedules for at least 10 years. We know it works, we know it's limitations, we feel comfortable using it. So, please don't suggest we do anything different than what we do.
That being said, here is the lisp file:
(defun C:ME (/ A B C D E F G H J K L M )
(graphscr)
(setvar "BLIPMODE" 0)
(SETVAR "CMDECHO" 0)
(SETVAR "HIGHLIGHT" 1)
(PROMPT "\nMULTI-EDIT IS LOADED ... ")
(SETQ A (SSGET '((0 . "TEXT,INSERT"))) B (SSLENGTH A) C 0)
(WHILE (< C B)
(SETQ D (SSNAME A C)
E (ENTGET D)
)
(SETQ F (CAR E))
(SETQ G (CDR E))
(SETQ H (CAR G))
(SETQ J (CDR H))
(SETQ K "TEXT")
(SETQ L "INSERT")
(SETQ M "DIMENSION")
(IF (= J K) (COMMAND ".TEXTEDIT" D)(COMMAND ".DDATTE" D ))
(TERPRI)
(SETQ C (1+ C))
)
(PRINC)
); END ME.LSP
I cannot seem to figure out what is causing the problem. Any help would be greatly appreciated!
Solved! Go to Solution.