I am copying metadata's of the document in a specific folder using
CDO.KnowledgeFolder Object. I can able to get the values of single metadata
values like author, title exc.
But we also have a multivalue list called category which stores upto 20
different values. How to get those values from that metadata?
My Vbscript codes is
----------------------------------------------------
Set objFolder = CreateObject("CDO.KnowledgeFolder")
objFolder.DataSource.Open folder
Set rstDocs = objFolder.Items
Do While Not rstDocs.Eof
WScript.Echo rstDocs("urn:schemas-microsoft-com:office:office#Author") '
Prints Author Name
' similarly I have categories
("urn:schemas-microsoft-com:office:office#Category") which is a multvalue list.
How to print its value?
Loop
----------------------------------------------------
Do you know someone who can help? Share a link to this thread on twitter, or facebook.