简体   繁体   中英

VBA Macro for MS Word to Ignore Spelling Errors in Selected Block of Text

VBA Noob here. I take my python programming notes in a word document since I can import images into it and align/format text quickly. Any code pasted into this document comes up as a spelling error. I'm trying to find a way to ignore spelling errors within a selected text area so I don't have to deal with ignoring each spelling error line of code individually. I don't want to turn off spell check in the document.

Ideally, I'd able to write a macro that read:

Selection.ShowSpellingErrors = True 

but ShowSpellingErrors() can only be used with ActiveDocument. I was able to a record a macro that ignored spelling errors with:

Selection.LanguageID = wdEnglishUS 
Selection.NoProofing = True

However, any new text I type into this also doesn't get proofed, which is something I don't want. I want to be able to write new text and see any errors I make. Thanks for any help!

Not a VBA Macro, but I think this answer may be relevant to your problem anyway.

Try creating a style for code which does not include spell check. Anything with this style does not get spell checked, while the rest of the document does. Sometimes I find the code shows the red underline, but if you run spell check it should just disappear without needing to be 'fixed'.

Create a new style, in the modify formatting dialog, go to Format > Language:

修改样式对话框

Tick the 'Do not check spelling or grammar' checkbox:

语言对话框

Highlight your code and use the new style. Any text not in this style will still be spellchecked:

结果

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM