Forum Discussion
Bipin2054
Jul 02, 2020Copper Contributor
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.
3 Replies
Sort By
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?
- Bipin2054Copper Contributor
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 ?
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