Results 1 to 2 of 2

Thread: Listbox

  1. #1

    Thread Starter
    Lively Member
    Join Date
    Aug 2000
    Location
    México, D.F.
    Posts
    64

    Talking

    Hi everybody

    I have one question about listbox, is there any property for listbox to change texts into listboxes or i have to make a procedure.

    For Example:


    lstcombo.additem "ONE"
    lstcombo.additem "TWO"
    lstcombo.additem "THREE"
    lstcombo.additem "FOUR"
    lstcombo.additem "FIVE"

    and i want to change the order to

    lstcombo.additem "ONE"
    lstcombo.additem "TWO"
    lstcombo.additem "FOUR"
    lstcombo.additem "THREE"
    lstcombo.additem "FIVE"


    any ideas?, Thanx for reply

  2. #2
    Hyperactive Member
    Join Date
    Jan 1999
    Location
    North East America
    Posts
    463
    lstcombo.additem "ONE"
    lstcombo.additem "TWO"
    lstcombo.additem "THREE"
    lstcombo.additem "FOUR",2
    lstcombo.additem "FIVE"

    The 2 after lstcombo.additem "FOUR",3 will put it third in the list. Remember the list starts with 0 so use 0 thru nn to assign list placement


    TMacPherson
    MIS Systems Engineer
    [email protected]


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