Currently I have a program form that has 2 listviews on it. It is able to copy one item from one listview to another. Now the users want to be able to copy several at once from one listview and paste into the other at point/row where they click/selected. I hope that makes sense.
Here is what I have currently for the single copy/paste type of process:
Any help/suggestions would be greatly appreciated and thanks in advance.
~Becky
Here is what I have currently for the single copy/paste type of process:
Code:
Private Sub cmdSetSeqNum_Click() Dim ItmX As ListItem On Error GoTo ERR_HNDL Set ItmX = lvwSampleMap.SelectedItem If (ItmX Is Nothing) Then Exit Sub ItmX.EnsureVisible ItmX = lvwInstrPositions.SelectedItem CheckChanges Exit Sub ERR_HNDL: StandardErrorOutput Err End Sub
~Becky
Comment