someBindingSource.Filter = string.Format("key={0}",someComboBox.SelectedValue)));It works fine if I set this "someBindingSource" as datasource of a datagridview. But, if I remove an item from the filtered datasource of the "someBindingSource", the result is wrong, because if I code someBindingSource.RemoveFilter(), the removed item is still on the current DataSource property of "someBindingSource", but the immediatly record which I'm not remove, was removed.
Any of you know why this happens???
Thanks in advance. I' really appreciate.