Before you ask....maybe by the end of next week worst case the following week
Private Sub StartSerialIncrementalSearch(ByVal startSerialNumber As Integer) Dim item1 As ListViewItem = Me.lstItemsStock.FindItemWithText(startSerialNumber.ToString, True, 0) If item1 IsNot Nothing Then item1.Selected = True Me.lstItemsStock.EnsureVisible(item1.Index) Me.lstItemsStock.TopItem = item1 End If End Sub
Did this ever make it in? Is it documented anywhere? My user wants the textbox to incrementally search the results list exactly as you described. I have the InfoPanel withthe textbox, now I am lost.
Also, how to I programatically execute the search, I found the "Search" method in the class browser but could not figure out how to use it just from that. User wants the results list prepopulated.
Thanks Keith Chisarik