Results 1 to 5 of 5

Textbox to search listbox

Threaded View

  1. #1
    Forum Contributor
    Join Date
    03-05-2009
    Location
    usa
    MS-Off Ver
    Excel 2016 32Bit
    Posts
    1,173

    Textbox to search listbox

    Using this code now and it some what works.
    Private Sub TextBox1_Change()
    Dim bFound As Boolean
    Dim intIndex As Integer
    
    bFound = False
    intIndex = 0
    
    Do While Not bFound And intIndex < ListBox2.ListCount
    If UCase(Left(ListBox2.List(intIndex), Len(TextBox1.Text))) = UCase(TextBox1.Text) Then
    ListBox2.ListIndex = intIndex
    bFound = True
    End If
    intIndex = intIndex + 1
    Loop
    End Sub
    If I have a item in the list box (see the cat) when I type see it going to the item,is there a way to open this up so if I type cat it will go to idem?

    Thanks Z
    Last edited by zplugger; 08-22-2012 at 08:25 AM.

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1