'Find' Dialog

S

Samuel

Hi

I would like to set the default of the 'Find' Dialog to 'Match any part of
field'

Is that possible and how?

Thank you,
Samuel
 
O

Ofer Cohen

Creating a query with a wild card search (Like)


Select * From TableName Where FieldName Like "*" & [Please enter text] & "*"

Running this query the user will be prompt to enter [Please enter text] and
the resault will display all the records that has this value any where in the
string
 
Top