S
Sam Admin
Hi,
Developing outlook addin for OL2003 / VB2005. I have entryids of
contact items in my database & I want to get contact item from it. I
am fetching contact item with following snippet
cont = Application.Session.GetItemFromId(entryID)
I can get properties of item through writing
myBody = cont.Body OR cont.ItemPropeties("Body").Value
mySubject = cont.Sybject OR cont.ItemPropeties("Subject").Value
But I want to get contact item's whole properties like body, subject,
fullname etc in one record something like
'--------------------------
dim myPropCollection as Object
myPropCollection = GetProperties(cont)
....
'--------------------------
i.e. I don't want to fetch each and every property separately. What
can I do?
Is redemption or exmapi support functions like this?
Thanks in advance
Developing outlook addin for OL2003 / VB2005. I have entryids of
contact items in my database & I want to get contact item from it. I
am fetching contact item with following snippet
cont = Application.Session.GetItemFromId(entryID)
I can get properties of item through writing
myBody = cont.Body OR cont.ItemPropeties("Body").Value
mySubject = cont.Sybject OR cont.ItemPropeties("Subject").Value
But I want to get contact item's whole properties like body, subject,
fullname etc in one record something like
'--------------------------
dim myPropCollection as Object
myPropCollection = GetProperties(cont)
....
'--------------------------
i.e. I don't want to fetch each and every property separately. What
can I do?
Is redemption or exmapi support functions like this?
Thanks in advance