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 gkittelson 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: *

  1. bnbunch

    Sub routine to findstring in combobox

    I got this working finally, but I have another problem. I have an older computer without a keypad, so I added an external numpad. The top number keys work just fine, but searchbox does not recognize numbers from keypad. I used code below to see which keycode is being sent. Select Case e.KeyCode...
  2. bnbunch

    Sub routine to findstring in combobox

    I created single routine that can be used from any combobox Then call this routine from any form to create searchable combobox Public Sub highlighttext(ThisCombobox As ComboBox) ' Store the actual text that has been typed. actual = ThisCombobox.Text ' Find the first...
  3. bnbunch

    Sub routine to findstring in combobox

    I have following code to search combobox which I need to repeat in different forms and different comboboxes I am using from key up event Private Sub ComboBox1_KeyUp(ByVal sender As Object, ByVal e As System.Windows.Forms.KeyEventArgs) Handles ComboBox1.KeyUp ' Store the actual text that has...

Part and Inventory Search

Back
Top