Results 1 to 4 of 4

Thread: [RESOLVED] List boxes

  1. #1

    Thread Starter
    Addicted Member
    Join Date
    Apr 2006
    Posts
    221

    Resolved [RESOLVED] List boxes

    How do i find out the value of an item in a list box if i know the index of it (i'll store the index as listboxindex (an integer))?

  2. #2

  3. #3
    Frenzied Member the182guy's Avatar
    Join Date
    Nov 2005
    Location
    Cheshire, UK
    Posts
    1,473

    Re: List boxes

    for example

    VB Code:
    1. Private Sub Command1_Click()
    2.  
    3.   Msgbox "The value of item 3 is: " & List1.List(3)
    4.  
    5. End sub

    is that what you mean?
    Chris

  4. #4

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