+ Reply to Thread
Results 1 to 4 of 4

listboxes

  1. #1

    listboxes

    how can i set the control source of a list box to return the entire row
    form a list

    john


  2. #2
    Tom Ogilvy
    Guest

    Re: listboxes

    You can't. You would have to write code to populate your destination with
    that information.

    --
    Regards,
    Tom Ogilvy

    <[email protected]> wrote in message
    news:[email protected]...
    > how can i set the control source of a list box to return the entire row
    > form a list
    >
    > john
    >




  3. #3

    Re: listboxes

    any hints or examples tom

    regards

    john


  4. #4
    Tom Ogilvy
    Guest

    Re: listboxes

    Private Sub Listbox1_Click()
    rw = 1
    cells(rw,1) = Listbox1.Value
    for i = 1 to listbox1.Columncount -1
    cells(rw,i + 1).Value = listbox1.list(Listbox1.ListIndex, i)
    Next
    End Sub

    Above pseudo code would represent and approaqch

    --
    Regards,
    Tom Ogilvy



    <[email protected]> wrote in message
    news:[email protected]...
    > any hints or examples tom
    >
    > regards
    >
    > john
    >




+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

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

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1