Search the Community
Showing results for tags 'dbx'.
-
How to find drawing needs recovery without opening the file
Ahankhah posted a topic in AutoLISP, Visual LISP & DCL
Hi all, I am writing a lisp program to work on drawings opened as DBX, but the program works on some drawings very slow. I find out that it is because of needing them to recovery or audit. How can I get some information from dbx opened file to know this? I appreciate any help Mehrdad -
Mission: Get the list of all DBX opened drawings
Ahankhah posted a topic in AutoLISP, Visual LISP & DCL
Hi all, as you know there is a way to get a list of all opened drawings. (defun Get:OpenDrawings ( / *dwg* *acdocs*) (vlax-for <doc> (MT:vla-get-Documents) (if (eq "" (setq *dwg* (vla-get-fullname <doc>))) (setq *dwg* (vla-get-name <doc>))) (setq *acdocs* (cons (cons (strcase *dwg*) <doc>) *acdocs*)) ) (reverse *acdocs*) ) (Get:OpenDrawings) returns an assoc list of all opened drawings' ((name1 . vla-object1) (name2 . vla-object2) ... (nameN . vla-objectN)) Is there a way to get all opened drawings in current session as ObjectDBX? -
Hi everyone, is there any ObjectDBX equivalent for getvar and setvar functions? Any reply or clue is fully appreciated.