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.
Lista Forumurilor Pe Tematici
Mrrrr's Forum (VIEW ONLY) | Reguli | Inregistrare | Login

POZE MRRRR'S FORUM (VIEW ONLY)

Nu sunteti logat.
Nou pe simpatie:
i.oana din Bucuresti
Femeie
20 ani
Bucuresti
cauta Barbat
20 - 45 ani
Mrrrr's Forum (VIEW ONLY) / Tutoriale si Ghiduri Utile // Tutorials and useful guides / [WORD] Spelling Not Working even if Language Set? [non-VBA, VBA] Moderat de TRaP, TonyTzu
Autor
Mesaj Pagini: 1
Mrrrr
AdMiN

Inregistrat: acum 17 ani
Postari: 2186
In sources like the one below, it explains all the methods you can use to enable spell checking (the red / blue lines under words):

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


_______________________________________


pus acum 4 ani
   
Pagini: 1  

Mergi la