3/17/2026 5:28:26 AM
|
| |
| slxdeveloper.com Community Forums |
|
| |
|
|
The Forums on slxdeveloper.com are now retired. The forum archive will remain available for the time being. Thank you for your participation on slxdeveloper.com!
Forum to discuss writing script in Architect plugins for SalesLogix & general SalesLogix customization topics (for Windows client only). View the code of conduct for posting guidelines.
|
|
|
|
Fetching accountid's from list view
Posted: 20 Feb 08 7:20 PM
|
Dear all
I want to fetch the selected accountid's in the list view.For e.g if i select three accounts i need to fetch all three accountid's Can any body help me in this issue by providing piece of code
Regards Vamsi Inguva
|
|
|
|
Re: Fetching accountid's from list view
Posted: 21 Feb 08 12:35 AM
|
=========================================== 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 |
|
|
|
You can
subscribe to receive a daily forum digest in your
user profile. View the site code
of conduct for posting guidelines.
Forum RSS Feed - Subscribe to the forum RSS feed to keep on top of the latest forum activity!
|
|
|
|
|
|
|
|