you have to have a consistent way of entering the names and a universal separator (space or comma likely won't work)
so let's say you choose the semi colon ;
if you want them to enter their search names
Smith; Jones; Mayberry
You can use the SPLIT function to break this into an array
Code:
dim nameArray as array
namearray = split(searchstring, ";")
for i = 1 to ubound(namearray)
debug.print namearray(i)
next i
then you'd have to jam your search mechanics into the array looping
EDIT: I think arrays are zero indexed like list boxes and combo boxes so you may have to use for i = 0 to ubound(namearray) and when dealing with an array of strings you might have to use dim namearray() as string