I am attempting to find text with no regards to case. ".MatchCase = False" (or true) does not work.

This is what I am using:
With Selection.Find
.Forward = True
.MatchWholeWord = True
.MatchCase = False
.Wrap = wdFindContinue
.Font.Bold = False 'If I DONT put his in, it will only find Bold text
.Execute FindText:="Client"
End With
The word "client" below will not be found / selected.
".......bla bla bla client bla bla bla"

Here it will find and select the word "Client" , even with matchcase=False.
".......bla bla bla Client bla bla bla"

Thanks for any help