How to turn off "Use MS Word to edit email message" in MS Outlook VB

J

jCheah

Hi everyone,

I'm looking for a way to uncheck "Use MS Word to edit email message"
in MS Outlook programatically. Does anyone know the code in VB??
Thanks.
 
J

jCheah

Hi Eric, Thanks for your clarification.

Anyway, do you know the VB code or API code to edit the Outlook
registry programatically in order to uncheck that Word Editor option?
Could you please show me?

And also will there be any risk of changing the Outlook registry??

Your help will be deeply appreciated. Thanks..
 
J

jCheah

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\Options
\Mail"
.ValueKey = "EditorPreference"
.ValueType = REG_DWORD
.Value = 131072
End With



I appreciate your help...
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top