Change from View Email to Edit Email

  • Thread starter Thread starter MatrimCauthon
  • Start date Start date
M

MatrimCauthon

Hello,

I wonder if its possible to programmatically change from the norma
view of an email (its opened as usual) to where you can edit it.

I know how to achieve this using the outlook commands but I need i
achieved by my Addin.

Thank you for your ideas,

Mat
 
If the e-mail is open, you can change the mode by setting a reference to the
"Edit Message" button and execute it:

Dim objEditButton As Office.CommandBarButton

Set objEditButton = ActiveInspector.CommandBars.FindControl(, 5604)
objEditButton.Execute
 
Back
Top