Sharepoint Forum

 
Home » Forum » Sharepoint       Ask a questionRSS Feeds

Values of MultiValue list in Vbscript

  Asked By: Bhavika Chikhalia         Date: Sep 01, 2009      Category: Sharepoint      Views: 475
 

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.

Tagged:            

 

No Answers Found. Be the First, To Post Answer.

 
Didn't find what you were looking for? Find more on Values of MultiValue list in Vbscript Or get search suggestion and latest updates.


Your Answer
  • Answer should be atleast 30 Characters.
  • Please put code inside [Code] your code [/Code].