Visual LISP, AutoLISP and General Customization
cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

how to make the summaryinfo visible in explorer ?

2 REPLIES 2
Reply
Message 1 of 3
Anonymous
478 Views, 2 Replies

how to make the summaryinfo visible in explorer ?

hello

i want to put the information of summaryinfo into the property of the file visible in the file explorer of windows XP

(setq activedocument (vla-get-activedocument (vlax-get-acad-object)))

i want to  put this in the properties of the file (vla-get-title   SummaryInfo)

 

because if i set the summaryInfo in autocad, when i open the explorer this information is not here

 

thank you (merci beaucoup 🙂

2 REPLIES 2
Message 2 of 3
hmsilva
in reply to: Anonymous

lolbru

try something like

 

(setq SummaryInfo (vla-get-SummaryInfo (vla-get-activedocument (vlax-get-acad-object))))


(vla-put-Author SummaryInfo "Test")
(vla-put-Comments SummaryInfo "Test 1")
(vla-put-HyperlinkBase SummaryInfo "Test 2")
(vla-put-Keywords SummaryInfo "Test 3")
(vla-put-RevisionNumber SummaryInfo "Test 4")
(vla-put-Subject  SummaryInfo "Test 5")
(vla-put-Title SummaryInfo "Test 6")

 

Henrique

 

EESignature

Message 3 of 3
Anonymous
in reply to: hmsilva

"j'ai deja fait cela, le problème n'est pas de remplir les champs summaryInfo
mais qu'il soit visible dans l'explorateur de windows"

 

google trad

I've already done that, the problem is not spotted summaryInfo
but it is visible in windows explorer

 

my original code

(setq activedocument (vla-get-activedocument (vlax-get-acad-object)))

(setq SummaryInfo (vla-get-SummaryInfo activedocument))

 

(vla-put-title
  SummaryInfo
  (strcat chemin (getvar "dwgname"))

 

(vla-put-comments
  SummaryInfo
  "Ne pas modifier ces informations !!"
)

 

it's work, but when i open the windows explorer ther are not informations in field title

it's appears when i right click on files go to properties and read only summary tab

and they are another summary tab in read write but no information into 😞

Can't find what you're looking for? Ask the community or share your knowledge.

Post to forums  

Autodesk Design & Make Report

”Boost