G
Guest
Is there a way to perform a bindingsource.filter on multiple inputs? For
example: I would like the user to be able to put something like <Smith,
Jones, Gates> into a textbox and have the datagridview filter the lastname
column to just those entries.
My code is simple right now:
dim strFilterLastName as string = me.txtbxLastName.text
me.qryWorkListBindingSource.Filter = "empnamLastName ='" & strFilterLastName
& "'"
Thank you for any advice.
example: I would like the user to be able to put something like <Smith,
Jones, Gates> into a textbox and have the datagridview filter the lastname
column to just those entries.
My code is simple right now:
dim strFilterLastName as string = me.txtbxLastName.text
me.qryWorkListBindingSource.Filter = "empnamLastName ='" & strFilterLastName
& "'"
Thank you for any advice.