Consulting

Results 1 to 5 of 5

Thread: update listbox

  1. #1

    update listbox

    How can I update the selected line in a listbox with the new info?
    Also, Instead of the word "Open", how can I insert numbers (i.e. 1 ,2, 3, etc) next to each row in the listbox?
    Attached Images Attached Images

  2. #2
    Distinguished Lord of VBAX VBAX Grand Master Bob Phillips's Avatar
    Joined
    Apr 2005
    Posts
    25,453
    Location
    As ever, post the workbook.
    ____________________________________________
    Nihil simul inventum est et perfectum

    Abusus non tollit usum

    Last night I dreamed of a small consolation enjoyed only by the blind: Nobody knows the trouble I've not seen!
    James Thurber

  3. #3
    I figure it out...thank you

            
            .List(.ListIndex, 0) = cbox.Caption        .List(.ListIndex, 1) = txtbox1
            .List(.ListIndex, 2) = Format(txtbox2, "$0.00")
            .List(.ListIndex, 3) = Format(txtbox3, "$0.00")

  4. #4
    VBAX Master paulked's Avatar
    Joined
    Apr 2006
    Posts
    1,007
    Location
    Don't forget to write your listbox to the sheet!
    Semper in excretia sumus; solum profundum variat.

  5. #5
    Quote Originally Posted by paulked View Post
    Don't forget to write your listbox to the sheet!
    Already coded. thx

Posting Permissions

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