Guys I created a simple datagridview through the toolbar and the selected data through the wizard (without code in the .cs file) from the database. It works flawlessly, as you can see in the image below.

Now I want to filter out entries in it by the name of the contact person. I have a text box and a search button, so when a user enters a "contact name", for example, "Altaf" and then clicks on a search, the gridview should be updated and only the entry with ticket 4 should appear.
The only code in the .cs file: (it was automatically generated)
private void Form2_Load(object sender, EventArgs e)
{
this.tblTicketDetailTableAdapter.Fill(this.sTDataSet1.tblTicketDetail);
}
I tried this in the buttonClick event, as suggested by someone, but it throws an error: "Unable to interpret token" {"at position 27"
BindingSource bs = new BindingSource();
bs.DataSource = dataGridView1.DataSource;
bs.Filter = issuerNameDataGridViewTextBoxColumn + "like '%" + txtbxSearch.Text.Trim().Replace("'", "''") + "%'";
dataGridView1.DataSource = bs.DataSource;
datagridviews , , , . .
.