VB Code:
  1. Do Until rsClient.EOF
  2.             lstResult.AddItem rsClient("LastName") & vbTab & rsClient("FirstName") & vbTab & rsClient("ClientCode")
  3.             lstResult.ItemData(lstResult.NewIndex) = rsClient("ClientID")
  4.             rsClient.MoveNext
  5.         Loop
  6.        
  7.         SearchListTabs(1) = 50
  8.         SearchListTabs(2) = 120
  9.        
  10.         SendMessage lstResult.hWnd, LB_SETTABSTOPS, UBound(SearchListTabs) + 1, SearchListTabs(1)
  11.         lstResult.Refresh

Why doesn't this work? It only shows the LastName and then the line is blank.