added characters

G

Guest

Hello;

When I am doing a search..

With Application.FileSearch
.NewSearch
.LookIn = DDIR
.SearchSubFolders = False
.Filename = DDIR
.TextOrProperty = MyString
.MatchAllWordForms = True
.FileType = msoFileTypeAllFiles

I am getting extra characters added to the search string..

input lines are
ACCESS CLOSE
ACCESS OPEN

mystring lines are
"ACCESS CLOSE"
"ACCESS OPEN"

I do not need the search string adding characters...

Can someone help ...

Thanks for your time and efforts..
Sammy
 
G

Guest

"MatchAllWordForms = True" if you seach for "no" will give you "no", "not",
"now", "nowhwere", etc. So if you want only the exact word you have to make
it "MatchAllWordForms = False"
 
G

Guest

This did not help. I am still getting the extra "mystring"
I am doing an exact search.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top