Question: I have six contacts that are in the group Lookup Results in SalesLogix, but I can’t seem to retrieve the group with the call GroupInfo.GetGroupList(). Is it possible to retrieve the Contact IDs from the current lookup?
Answer: You would do this with application.MainViews.ActiveView.GroupsPane
For intIndex = 0 To .Selection.Count – 1
msgbox .Selection.Item(intIndex)
Next
end with



