How do I access the reserver $ fields through notesdocument:
mytext = doc.$imagelist(23) ’ it does not allow me to use the “$” in the arugument
thanks
How do I access the reserver $ fields through notesdocument:
mytext = doc.$imagelist(23) ’ it does not allow me to use the “$” in the arugument
thanks
Subject: $ fields in NotesDocument
Use the GetItemValue method of the NotesDocument class
Sergio Ramos
Subject: $ fields in NotesDocument
mytext = doc.~$imagelist(23)
Subject: RE: $ fields in NotesDocument
thank you!