View Single Post
  #6  
Old July 20th 07, 11:52 PM posted to microsoft.public.outlook.program_vba
[email protected]
external usenet poster
 
Posts: 5
Default How to turn off "Use MS Word to edit email message" in MS Outl

Hi Eric,

One last question. Sorry for keep asking. Well, I'm new to registry
editing, I just want to make sure the code is right before running it
as i don't want to ruin the registry system. So, based on the
cRegistry class and the Outlook registry key link you sent me before,
please help me to verify the following code if i want to set the MS
Outlook editing mode from Word to HTML only.



Dim c As New cRegistry

With c
.ClassKey = HKEY_CURRENT_USER
.SectionKey = "Software\Microsoft\Office\11.0\Outlook\Option s
\Mail"
.ValueKey = "EditorPreference"
.ValueType = REG_DWORD
.Value = 131072
End With



I appreciate your help...

Ads