Eric,
I 'think' I had that sequence somewhere along the way of experimenting. I corrected the string to read as you indicated (I agree with it) however I still receive no results for something such as 'b'. To sort this out I've included some strings that DO work in other areas of the program for reference. I know the field and string captures correctly. The hangup is when I get to the Instr (issue).
Master_ContactsBindingSource.Filter = "c_company like '" & CompanySearch.Text & "*'"
Master_ContactsBindingSource.Filter = "c_address <>'' And c_company Like '" & CompanySearch.Text & "*'"
I appreciate your help!
Scott
I found that the following works perfect. Boy was I climbing the wrong side of the tree!
Master_ContactsBindingSource.Filter = "c_company like '%" & CompanySearch.Text & "%'"
I get any occurrence of a string which was the goal.
Thank you for the poke Eric!
Open in new window