Sam Hamels
New Member
- Joined
- Mar 20, 2018
- Messages
- 49
Hi everyone,
Using the macro recorder in Word, I created the following macro to change the proofing language of whichever text I currently have selected to English. By assigning a hotkey to this macro (ALT+E), I can now very easily and quickly set the proofing language of some text I select to English, whenever Word is not correctly detecting it as English automatically - instead of having to manually open the 'language proofing menu' every time.
Now I would like to do the same in Windows Outlook desktop 2019, but it lacks a 'record macro' button in the Developer tab. I don't know how to write the correct macro in Outlook-VBA myself - and simply copy-pasting the Word macro in a VBA module in Outlook doesn't seem to work.
Could anyone please suggest what a functioning Outlook macro to set the proofing language of currently selected text to English would look like?
Thanks!
Sam
Using the macro recorder in Word, I created the following macro to change the proofing language of whichever text I currently have selected to English. By assigning a hotkey to this macro (ALT+E), I can now very easily and quickly set the proofing language of some text I select to English, whenever Word is not correctly detecting it as English automatically - instead of having to manually open the 'language proofing menu' every time.
VBA Code:
Sub Change_Language_To_English()
Selection.LanguageID = wdEnglishUK
Selection.NoProofing = False
Application.CheckLanguage = False
End Sub
Now I would like to do the same in Windows Outlook desktop 2019, but it lacks a 'record macro' button in the Developer tab. I don't know how to write the correct macro in Outlook-VBA myself - and simply copy-pasting the Word macro in a VBA module in Outlook doesn't seem to work.
Could anyone please suggest what a functioning Outlook macro to set the proofing language of currently selected text to English would look like?
Thanks!
Sam