hello
my program i abot searching in a database viewed by datagridview
and i want to search within two columns
i'm using this code to do so:
Code:
InstructorsBindingSource.Filter = "PhoneNumber = '" & Trim(ToolStripTextBox1.Text) & "' and instructors = '" & Trim(ToolStripTextBox2.Text) & "'"
but its not working
so any suggested ideas