In word while you are typing, Word is smart enough to replace typing errors.
But if you are not typing in English language, it will be a mess if word will automatically replace the word.
Solution is to disable the feature "Replace Text as you type."
This simple VBA code snippet will disable the options "Replace Text as you type".
Disable is set to "False".
Application.AutoCorrect.ReplaceText = False
It can be done manually by clicking on: (Word 2010 procedure)
1. File
2. Options
3. Proofing
4. Auto Correct Options
5. AutoCorrect Tab
6. Untick "Replace text as you type"
7. Click "OK" 2 times to exit
But the one liner VBA code is quite simple rather than clicking so many times.
To enable via VBA just set the value to True.
But if you are not typing in English language, it will be a mess if word will automatically replace the word.
Solution is to disable the feature "Replace Text as you type."
This simple VBA code snippet will disable the options "Replace Text as you type".
Disable is set to "False".
Application.AutoCorrect.ReplaceText = False
It can be done manually by clicking on: (Word 2010 procedure)
1. File
2. Options
3. Proofing
4. Auto Correct Options
5. AutoCorrect Tab
6. Untick "Replace text as you type"
7. Click "OK" 2 times to exit
But the one liner VBA code is quite simple rather than clicking so many times.
To enable via VBA just set the value to True.
Comments
Post a Comment