I would like to do a search in my listview;
Here is what i have tried.
Search = A text input loaded when this void (add contacts) is loaded, the text is from a textbox (By the way I clear the listview before it 'searches' the string
foreach (User u in skype.Friends)
{
String status = skype.Convert.OnlineStatusToText(u.OnlineStatus);
try
{
ListViewItem item = new ListViewItem(u.FullName, 1);
item.SubItems.Add(u.Handle);
item.SubItems.Add(status);
item.SubItems.Add(u.Country);
if ((u.DisplayName.ToLower()).StartsWith(search.ToLower()))
{
listView2.Items.Add(item);
}
}
}
Timer code for 'searching'
if (textBox1.Text != String.Empty)
{
searchingString = textBox1.Text;
AddContacts(checkBox1.Checked, checkBox2.Checked, searchingString);
Searching = true;
}
else
{
Searching = false;
//AddContacts(checkBox1.Checked, checkBox2.Checked, searchingString);
}
I have no idea why it wont work, help! :)