Listbox.append()

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • José Carlos

    Listbox.append()

    Hi.

    How can i do to using a listbox.append( ), it adds item in the first line.?

    Regards
    Jose.


  • Terry Reedy

    #2
    Re: Listbox.append( )


    "José Carlos" <josecarlos@sia dv.com> wrote in message
    news:c12cv4$lqi $1@nsnmrro2-gest.nuria.tele fonica-data.net...[color=blue]
    > Hi.
    >
    > How can i do to using a listbox.append( ), it adds item in the first[/color]
    line.?

    Responding to what I think you asked: append means 'add to the end'. That
    is what list.append does and what I presume listbox.append does. To insert
    an item elsewhere, there is list.insert. I don't know whether listbox has
    an insert method or not. Check the docs more carefully.

    TJR




    Comment

    Working...