+ Reply to Thread
Results 1 to 4 of 4

button click to move selected multi-column list box items to new list box

Hybrid View

  1. #1
    Registered User
    Join Date
    06-17-2014
    Location
    canada
    MS-Off Ver
    2013
    Posts
    24

    button click to move selected multi-column list box items to new list box

    As the title says im struggling to get this to function properly. all I can manage to do its put all items into 1 single column of a list box, spaced out.
    Private Sub CommandButton9_Click()
         
        Dim i As Long
        Dim Duplicate As Boolean
         
        If Me.genbuildhistorylist.Text <> "" Then
            For i = 1 To Me.genemaillist.ListCount
                If Me.genemaillist.List(i - 1) = Me.genbuildhistorylist.Column(0, _
                Me.genbuildhistorylist.ListIndex) & vbTab & _
                Me.genbuildhistorylist.Column(1, Me.genbuildhistorylist.ListIndex) Then
                     'Duplicate Entry
                    Duplicate = True
                    Exit For
                End If
            Next i
            If Duplicate = False Then
                Me.genemaillist.AddItem Me.genbuildhistorylist.Column(0, _
                Me.genbuildhistorylist.ListIndex) & vbTab & _
                Me.genbuildhistorylist.Column(1, Me.genbuildhistorylist.ListIndex)
            End If
        End If
    End Sub
    how would i go about altering this to rather than tabbing, to select the next column of the list box?

  2. #2
    Forum Guru Norie's Avatar
    Join Date
    02-02-2005
    Location
    Stirling, Scotland
    MS-Off Ver
    Microsoft Office 365
    Posts
    19,644

    Re: button click to move selected multi-column list box items to new list box

    How are you populating the original multi-column listbox?

    By the way, where in the posted code are you checking what's been selected in the first listbox?
    If posting code please use code tags, see here.

  3. #3
    Forum Expert Tinbendr's Avatar
    Join Date
    06-26-2012
    Location
    USA
    MS-Off Ver
    Office 2010
    Posts
    2,138

    Re: button click to move selected multi-column list box items to new list box

    Maybe...
    Private Sub CommandButton9_Click()
         
    Dim i As Long
     
        For i = 0 To Me.genemaillist.ListCount - 1
            If Me.genemaillist.Selected(i) Then
                Me.genbuildhistorylist.AddItem Me.genemaillist
            End If
        Next i
    End Sub
    David
    (*) Reputation points appreciated.

  4. #4
    Registered User
    Join Date
    06-17-2014
    Location
    canada
    MS-Off Ver
    2013
    Posts
    24

    Re: button click to move selected multi-column list box items to new list box

    Quote Originally Posted by Tinbendr View Post
    Maybe...
    Private Sub CommandButton9_Click()
         
    Dim i As Long
     
        For i = 0 To Me.genemaillist.ListCount - 1
            If Me.genemaillist.Selected(i) Then
                Me.genbuildhistorylist.AddItem Me.genemaillist
            End If
        Next i
    End Sub
    Thats it Tinbendr. This was very close to what I was looking for. few small changes and its working. Thanks!

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. To create a list of items in which certain items can be selected and printed
    By swashbuckler in forum Excel - New Users/Basics
    Replies: 3
    Last Post: 03-05-2017, 01:26 PM
  2. [SOLVED] Identification of selected items in multi-user List Box to call different macros
    By seleseped in forum Excel Programming / VBA / Macros
    Replies: 9
    Last Post: 05-18-2016, 09:46 AM
  3. Userforms - Populating a List box with Some List Items already selected
    By chuckie200 in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 03-25-2013, 07:06 AM
  4. Replies: 1
    Last Post: 09-03-2012, 10:03 PM
  5. [SOLVED] Creating a grocery list in a new worksheet based on selected items in a master list
    By jacolli4 in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 07-28-2012, 07:53 AM
  6. [SOLVED] Last list item selected in a Multi-Select list box?
    By Brian in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 12-05-2005, 05:15 PM
  7. Replies: 1
    Last Post: 06-24-2005, 12:21 AM

Tags for this Thread

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