Det relevante word-dokument er åbent. Tryk på Alt+F11 - VBA-vinduet åbnes - Aktiver "ThisDocument" - og indsæt koden. Koden kan eksekveres v/tryk på F5 - eller step gennem koden m/F8
Sub visMetadata() Dim prop, antalBrugerDef, f Rem ENTEN: HER HENTES ANTALLET AF BRUGERDEFINEREDE EGENSKABER - D.V.S. EGENSKABER, SOM BRUGEREN SELV HAR OPRETTET OG GIVET VÆRDI.
HER GENNEMLØBES DISSE - DER VISES EN MEDDELELSESBOKS - PR. STK For f = 1 To antalBrugerDef With ActiveDocument.CustomDocumentProperties(f) MsgBox (.Name + " " + .Value) End With Next f
Rem Eller:
DETTE ER BLOT EN ANDEN MÅDE FOR DET SAMME
Rem Vis brugerdef. For Each prop In ActiveDocument.CustomDocumentProperties navn = prop.Name værdi = prop.Value Next prop
Rem Vis indbyggede For Each prop In ActiveDocument.BuiltInDocumentProperties MsgBox (prop.Name + " " + prop.Value) Next prop End Sub
Tilladte BB-code-tags: [b]fed[/b] [i]kursiv[/i] [u]understreget[/u] Web- og emailadresser omdannes automatisk til links. Der sættes "nofollow" på alle links.