• Word 03 “mistakes”

    Author
    Topic
    #481692

    Is there a way to cause Word 03 to turn “mistakes” bold instead of underlining them. For example writing instructions (ctrl v) or codes (ctrl alt 1)

    Viewing 1 reply thread
    Author
    Replies
    • #1320946

      Unfortunately, we cannot use Find to locate spelling and grammar errors. Is there anything else that is common to the instructions and codes?

      Pam

      • #1321587

        I think it would be a lot easier for me to show you than to try to explain it. I’m uploading a page showing the type of thing I’m looking at. The work is obviously not mine, but is the best example I could find just now. It would show all the bold words as mistakes, though they would not come to me as bold, only mistakes. I would like to be able to make them bold without manually changing each one.

    • #1321722

      Hi S,

      As far as I know there is no way to have Word automatically display spelling or grammar errors with bold instead of underline. If, however, you are willing to run a macro to bold misspelled words, you can try this:

      Code:
      Sub TryThis()
      Dim oDocRng As Range
      Dim itm
      Set oDocRng = ActiveDocument.Range
      For Each itm In oDocRng.SpellingErrors
          itm.Select
          Selection.Font.Bold = True
          Selection.Collapse
      Next itm
      Set oDocRng = Nothing
      End Sub

      I took a look at the document you included; the spell check in my Word 2003 did not find “Alt,” “Ctrl,” or numbers when typed by themselves. (I double-checked my custom dictionary to see if I had added them.)

      It did not find “Alt+065” or “Alt + 065” or “alt 065” — It did find “ALT+065” but not “ALT + 065”
      It did find “Ctrl+V” and “CTRL+V” but did not find “Ctrl + V” or “CTRL + V” or even “ctrl v”

      Formatting will be essential to this working for you. BUT, if your spell checker flags these as misspelled, then the macro will, too. And it will find ALL misspellings, so be sure to add any words you don’t want bolded to your custom dictionary.

      If you turn off the option to check spelling as you type, the underlines will not appear in the document but the macro will still find them.

      Does this get you where you want to go? Kim

      • #1321881

        This gives me a good start. Thanks so much Kim. I don’t really know much about macros, so hadn’t even tried to go that route. Thanks again. Stan.

    Viewing 1 reply thread
    Reply To: Word 03 “mistakes”

    You can use BBCodes to format your content.
    Your account can't use all available BBCodes, they will be stripped before saving.

    Your information: