Question: Can you provide me with code to get selected acccountid/s in the
listview in SalesLogix? As an example – if I select 4 accounts I will
need to get 4 accountids.
Answer: Finding selected rows on the mainview grids:
with application.MainViews.ActiveView.GroupsPane
For intIndex = 0 To .Selection.Count – 1
msgbox .Selection.Item(intIndex)
Next
end with



