Message 1 of 12
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
I have this lisp routine to open specific drawing:
(defun c:TEST1 ()
(setq acApp (vlax-get-acad-object))
(setq acDocs (vla-get-documents acApp))
(vla-open acDocs "c:/Delo/Test1.dwt")
(princ)
)
Problem is ... my new opened drawing not become current, but goes in background (active stays my previous working drawing).
I need to make it current, because it is connected with other macro command.
Is it possible to modify my lisp or.... maybe some kind of system variable setting?
Solved! Go to Solution.