Hi Leckie,
Yes your correct. I can't compile using the msoFileType constants either.
Delete that line and add a .fileName property as follows:
With Application.FileSearch
.NewSearch
.LookIn = "C:\My Documents"
.SearchSubFolders = True
.FileName = "*.txt"
.TextOrProperty = "run"
.MatchAllWordForms = True
'.FileType = msoFileTypeAllFiles
End With
Hopefully this will give you what your after.
Cheers,
Mark.