• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

Move selected items from Listvew1 to Listview2

pankaj@2610

New Member
Hello,
I have two different userforms, Userform1 is with Listview which is populated based on a value of combobox. The user want to move or copy selected items from Listview1 on userform1 to Listview2 on userform2. Would like to know is this possible with Excel VBA.
 
Yes,

can you post the file with instructions of specifically what you are after
 
Hello,
I am trying with following code, But it copies on first column from Listview2, I want to copy the whole row from listview2
Code:
Private Sub CommandButton8_Click()
ListView3.ListItems.Add = ListView2.SelectedItem
 
 
End Sub
 
Back
Top