With Application.Fil eSearch
.NewSearch
.LookIn = "C:\My Documents"
.SearchSubFolde rs = True
.FileName = "Run"
.MatchTextExact ly = True
.FileType = msoFileTypeAllF iles
End With
My code pukes complaining that msoFileTypeAllF iles
is an undefined var type. Isn't it s'posed to be some
kind of intrinsic constant or something? How can I
make this little snippet work for me?
.NewSearch
.LookIn = "C:\My Documents"
.SearchSubFolde rs = True
.FileName = "Run"
.MatchTextExact ly = True
.FileType = msoFileTypeAllF iles
End With
My code pukes complaining that msoFileTypeAllF iles
is an undefined var type. Isn't it s'posed to be some
kind of intrinsic constant or something? How can I
make this little snippet work for me?
Comment