Results 1 to 3 of 3

Thread: Move ListBox to the last Item

  1. #1

    Thread Starter
    Hyperactive Member Matt-D's Avatar
    Join Date
    Nov 1999
    Location
    Mettmann, Germany
    Posts
    305
    How do I move a listbox to the last Item?

    Note: I use VB 3.0


    Thanks for some help

  2. #2
    Hyperactive Member
    Join Date
    Aug 2000
    Posts
    258
    Do this
    Code:
    Combo.ListIndex = combo.ListCount - 1
    Visual Basic 6 SP4 on win98se

    QUIT THE RAT RACE BECAUSE YOUR MESSING THE WORLD UP !!!!!

  3. #3
    Guest
    Try this:

    Code:
    For i = 0 To List1.ListCount - 1
    List1.ListIndex = List1.List(i)
    Next i

Posting Permissions

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



Click Here to Expand Forum to Full Width