I have a textbox that filters listbox results, and if I type it all caps it won't return anything, but all lower will. I want to see if I missed something. Here is what I am using.
Thanks
private void Filter(object sender, FilterEventArgs e)
{
var src = e.Item as Users;
if (src == null)
e.Accepted = false;
//else if (src.Name!= null && !src.Name.Contains(Search))
else if (src.Name!= null && !src.Name.ToLower().Contains(Search))
e.Accepted = false;
}