Question: I need to get a list of selected contactids from a contact list view in
SalesLogix. Users send emails to contacts selected from a list view,
and I need to get a list of the select contacts so that I can exclude
the contacts that have the “DoNotEmail” flag checked. How can I do
this?
Answer: This is what you will need:
==============================
Finding selected rows on the mainview grids
==============================
with application.MainViews.
For intIndex = 0 To .Selection.Count – 1
msgbox .Selection.Item(intIndex)
Next
end with



