Can Reply with Changes flag be set??

  • Thread starter Thread starter C. Johnson
  • Start date Start date
C

C. Johnson

To all,
On the Advanced E-Mail Options dialog there is a checkbox - "Add properties
to attachments to enable Reply with Changes". I would like to be able to
turn that checkbox off with VBA or with a COM add-in. I looked through the
object model for Outlook and couldnt find the flag anywhere. Is there a way
to do this?

I am using VB 6.0 and Outlook 2003.

Thanks,
David C. Johnson
 
You can't do it with the object model, but you can programmatically change
the registry key that defines the setting:

HKEY_CURRENT_USER\Software\Microsoft\Office\11.0\Outlook\Options\Mail\AdHocReviewBehavior

1 is off, 0 is on (I know, it is backwards).
 
Back
Top