Is item in Public Folder opened in read only format?

A

auto50322

I have a public folder which contains contacts that everyone has access to.
Not everyone has permission to write to these contacts.

Is it possible to find out if the item is opened read-only using vbscript?

auto50322
 
K

Ken Slovak - [MVP - Outlook]

If you can use CDO 1.21 or Extended MAPI or Redemption code you can look at
the property PR_ACCESS (0x0FF40003) which is a Long that has flags telling
you what rights are available for an opened item.

For example, a value of 2 means read access (MAPI_ACCESS_READ), a value of 7
means modify, read and delete accesses (MAPI_ACCESS_MODIFY, MAPI_ACCESS_READ
and MAPI_ACCESS_DELETE).
 
Top