VBA Outlook 2013 AppointmentItem.Link property? -
i use vba macro in outlook save linked contacts of appointmentitem in database. no problem in outlook 2007, upgraded outlook 2013.
i tried search appointmentitem.link property in msdn documentation, found 2007 , 2010:
so question property depreciated or renamed or something?
atm following error on code:
run time error 91: object variable or block variable not set
for = 1 item.links.count ..... next
microsoft deprecated links
property - returns null. can still access existing data on binary level using appointmentitem.propertyaccessor.getproperty
, you'd need parse data - take @ blob in outlookspy (click imessage).
if using redemption option (can used in version of outlook), still supports links property:
set rsession = createobject("redemption.rdosession") set ritem = rsession.getrdoobjectfromoutlookobject(item) = 1 ritem.links.count ..... next
Comments
Post a Comment