A Microsoft Outlook email forum. Outlook Banter

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » Outlook Banter forum » Microsoft Outlook Email Newsgroups » Outlook and VBA
Site Map Home Register Authors List Search Today's Posts Mark Forums Read Web Partners

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



 
 
Thread Tools Search this Thread Display Modes
  #1  
Old July 20th 07, 05:02 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 Outlook VB

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.

  #2  
Old July 20th 07, 06:02 PM posted to microsoft.public.outlook.program_vba
Eric Legault [MVP - Outlook]
external usenet poster
 
Posts: 830
Default How to turn off "Use MS Word to edit email message" in MS Outlook

That setting isn't exposed in the object model, but it is stored in the
registry:

Eric Legault My Eggo : Outlook's Message Format Settings In The Registry:
http://blogs.officezealot.com/legaul...8/03/1324.aspx

--
Eric Legault - Outlook MVP, MCDBA, MCTS (SharePoint programming, etc.)
Try Picture Attachments Wizard for Outlook:
http://www.collaborativeinnovations.ca
Blog: http://blogs.officezealot.com/legault/


" wrote:

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.


  #3  
Old July 20th 07, 06:33 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 Outlook

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..

  #4  
Old July 20th 07, 08:44 PM posted to microsoft.public.outlook.program_vba
Eric Legault [MVP - Outlook]
external usenet poster
 
Posts: 830
Default How to turn off "Use MS Word to edit email message" in MS Outl

Try this control:

vbAccelerator - Complete Registry control:
http://www.vbaccelerator.com/home/VB...ol/article.asp

There are plenty of other registry wrapper classes available - just Google
and you'll find more.

--
Eric Legault - Outlook MVP, MCDBA, MCTS (SharePoint programming, etc.)
Try Picture Attachments Wizard for Outlook:
http://www.collaborativeinnovations.ca
Blog: http://blogs.officezealot.com/legault/


" wrote:

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..


  #5  
Old July 20th 07, 11:15 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

Thanks a lot....Eric

  #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...

 




Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
In Outlook 2003, the "edit message" function is greyed out Simone Outlook - Installation 0 April 18th 07 10:26 AM
Invisible or "missing" Outlook message text on reply or forward using Word as editor ewaname Outlook - General Queries 1 January 17th 07 01:42 AM
Outlook "freezes" on "reply" when I set Word as my HTML editor? louis11 Outlook - Installation 0 May 12th 06 05:43 PM
Outlook "freezes" on "reply" when I set Word as my HTML editor? louis11 Outlook - Installation 0 May 12th 06 05:40 PM
word "message" appears on received email IMAGEREP Outlook Express 4 March 15th 06 03:18 AM


All times are GMT +1. The time now is 07:02 AM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.Search Engine Friendly URLs by vBSEO 2.4.0
Copyright ©2004-2025 Outlook Banter.
The comments are property of their posters.