اول اینکه بهتره مشخص کنی مشکل کد کجاست و اگر هنگام کامپایل کردن پیغام خطایی می گیری، اون پیغام خطا چیه.
بهتره به جای این خط:
tbTell.Text = tbTell.Text.ToString();
متغیر جدیدی معرفی کنی:
string strPhone = tbTell.Text.ToString();
اما واسه ی سرچ (جستجو) می تونی از این دستورات استفاده کنی:
private void btnSerch_Click(object sender, EventArgs e) {
// Search starting from index -1:
int index = listnames.FindString(tbSearch.Text, -1);
if (index != -1)
{
// Select the found item:
listnames.SetSelected(index,true);
// Send a success message:
MessageBox.Show("Found the item \"" + tbSearch.Text +
"\" at index: " + index);
}
else
MessageBox.Show("Item not found.");