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:

outlook 2007 link

outlook 2010 link

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

Popular posts from this blog

javascript - Chart.js (Radar Chart) different scaleLineColor for each scaleLine -

apache - Error with PHP mail(): Multiple or malformed newlines found in additional_header -

java - Android – MapFragment overlay button shadow, just like MyLocation button -