Filehost.ro - gazduire fisiere
Mrrrr's Forum (VIEW ONLY)
Un forum care ofera solutii pentru unele probleme legate in general de PC. Pe langa solutii, aici puteti gasi si alte lucruri interesante // A forum that offers solutions to some PC related issues. Besides these, here you can find more interesting stuff.
Nou pe simpatie:
Andreea_K Profile
Femeie
25 ani
Caras Severin
cauta Barbat
30 - 49 ani
Mrrrr's Forum (VIEW ONLY)ReguliInregistrareLoginPozeNu sunteti logat. Lista Forumurilor Pe Tematici
Mrrrr's Forum (VIEW ONLY) / Tutoriale si Ghiduri Utile // Tutorials and useful guides /

[WORD] Spelling Not Working even if Language Set? [non-VBA, VBA]

Pagini: 1 Moderat de TRaP, TonyTzu
#1
Mrrrr
AdMiN
Postari: 2388
In sources like the one below, it explains all the methods you can use to enable spell checking (the red / blue lines under words):
https://www.timeatlas.com/word-spell-check-not-working/

Usually, setting the language via REVIEW - Language - Set Proofing Language is enough.

But when it is not, there is a setting under FILE - Options - Proofing, all the way down: "Hide spelling errors in this document only". If you don't remove the check on that, anything else you try will be futile.

This can be easily done via VBA, just add a 2 buttons in your QAT or ribbon for the next snippets (there are 2 codes below, one to activate spell checking and one to deactivate it).


Sub Enable_SpellCheck()

With ActiveDocument
            .Range.SpellingChecked = False
            .Range.NoProofing = False
            .Paragraphs(2).Range.NoProofing = False
            .ShowSpellingErrors = True
End With

Application.ScreenRefresh

End Sub



Sub Disable_SpellCheck()

With ActiveDocument
            .Range.SpellingChecked = True
            .Range.NoProofing = True
            .Paragraphs(2).Range.NoProofing = True
            .ShowSpellingErrors = False
End With

Application.ScreenRefresh

End Sub


_______________________________________


 
   
Pagini: 1  
Mergi la