Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: verop
  • Order by date
  1. verop

    VB2008 How to search Listbox for match to Textbox.Text

    In C#...sorry had a type-o in the if (just in case) ListBox1.ClearSelected(); if (!(TextBox1.Text.Trim() == "")) { ListBox1.SelectedIndex = ListBox1.FindString(TextBox1.Text); }
  2. verop

    VB2008 How to search Listbox for match to Textbox.Text

    In C#... ListBox1.ClearSelected(); if (!(txtAvailable.Text.Trim() == "")) { ListBox1.SelectedIndex = ListBox1.FindString(TextBox1.Text); }

Part and Inventory Search

Back
Top