Jump to content

Finding template of new drawing


Ahankhah

Recommended Posts

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

Link to comment
Share on other sites

Hi Ahankhah, try

(vl-registry-read (strcat "HKEY_CURRENT_USER\\" (vlax-product-key) "\\FixedProfile\\General") "LastTemplate")

 

Hope that helps

Henrique

Link to comment
Share on other sites

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.:D

Link to comment
Share on other sites

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.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...