Here is what I have currently for the single copy/paste type of process:
Expand|Select|Wrap|Line Numbers
- 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