VB Code:
Private Sub btnSearch_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnSearch.Click
'this assumes textbox1 is where the name is to search for
Dim filter As String = "Name='{0}'"
'the following returns an array of datarows that match the search criteria
Dim results() As DataRow = DataSet11.Tables("Bankruptcy").Select(String.Format(filter, TextBox1.Text))
MsgBox(String.Format("There are {0} result mathcing the criteria '{1}'", results.Length, TextBox1.Text))
End Sub