Ahankhah Posted December 16, 2014 Posted December 16, 2014 Hi all, Is it possible to find out which template file used in new opened drawing via visual lisp? Assume someone issues NEW command and selects a .DWT file as template. Now after ending NEW process, how to find out what is the fullname (path and name) of template file? I appreciate any help Quote
hmsilva Posted December 16, 2014 Posted December 16, 2014 Hi Ahankhah, try (vl-registry-read (strcat "HKEY_CURRENT_USER\\" (vlax-product-key) "\\FixedProfile\\General") "LastTemplate") Hope that helps Henrique Quote
Ahankhah Posted December 16, 2014 Author Posted December 16, 2014 hmsilva, thank you very much. Meanwhile I found three other ways to obtain the mentioned registry container: (getenv "General\\LastTemplate") (getenv "LastTemplate") (vla-get-TemplateDWGPath (vla-get-Files (vla-get-Preferences (vlax-get-acad-object)))) I appreciate your great help. Quote
hmsilva Posted December 16, 2014 Posted December 16, 2014 You're welcome, Ahankhah Glad you got a solution! Henrique Quote
BIGAL Posted December 17, 2014 Posted December 17, 2014 Rather than listing all the preferences this will do it ;use this to find other settings (vlax-dump-object (vla-get-files (vla-get-preferences (vlax-get-Acad-object))) T) Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.