Bind a BindingSource to the DataTable and the set the Filter property to where the Complaint code equals the value that you're searching. That would look something like this:
Code:
BindingSource.Filter = String.Format("complaint_code = '{0}'", <some value here>)