marko i love this lisp
its simple and doing the work
i want to combine it in my lisp
how can i change it that automaticlly he change the last dimmension that was drawing?
thx ahead

Quote Originally Posted by marko_ribar View Post
I don't quite understand your question, or I do but it's simple :

Code:
(defun c:dimwall ( / edim)
(vl-load-com)
(setq edim (vlax-ename->vla-object (car (entsel "\Select dimension to replace value"))) )
(vla-put-TextOverride edim "Wall to Wall")
(princ)
)