Forum Discussion

Bipin2054's avatar
Bipin2054
Copper Contributor
Jul 02, 2020

Word

Hey Team, I'm having the problem while selecting the text in word. As I discussed with the IT support they couldn't fix it and told me to contact here. The ms word on my friend's laptop does not have such issues while selecting a text there should be grey color but in my case its dark black which bothers my eyes and cant work for a long time. please help me fix this problem and below is the sample picture attached to this chat.

  • Bipin2054 What you are seeing could be text shading. Do you see it in a particular document only? How about new documents—is the black background present there as well?

    • Stefan_Blom's avatar
      Stefan_Blom
      MVP

      The following macro can be used to remove all shading in a document:

      Sub ClearAllShadingFromDoc()
           'Macro created by Stefan Blom, MVP, January 2015


          With ActiveDocument.Content.ParagraphFormat.Shading
               .Texture = wdTextureNone
               .ForegroundPatternColor = wdColorAutomatic
               .BackgroundPatternColor = wdColorAutomatic
           End With
          
           With ActiveDocument.Content.Font.Shading
               .Texture = wdTextureNone
               .ForegroundPatternColor = wdColorAutomatic
               .BackgroundPatternColor = wdColorAutomatic
           End With
       End Sub

    • Bipin2054's avatar
      Bipin2054
      Copper Contributor

      Stefan_Blom 

       

      I'm Seeing in every word document, sir. I uninstalled and again re-installed but the problem is not fixed. What should I do now sir ?

Resources