06-04-2013 08:44 AM
Hi,
I would like to check a list of contacts (that is selected by a user in order to send a serial letter) first before initiating the process of generating the letters.
Is there anybody who can help me out with an example in C# or VB that enables me to localize the selected contacts.
Thanks,
Alex
06-04-2013 01:26 PM
Use the application state prperty to read the current contact list
ForEach contact As Act.Framework.Contacts.Contact In ACTApplication.ApplicationState.CurrentContactList
MessageBox.Show(contact.Fullname)
Next
-- Jim Durkin
06-04-2013 01:26 PM
06-05-2013 01:27 AM
Thanks Jim,
but I get the error: "contact" - this field, but is used like a type
(I wrote in C#)
Alex
06-05-2013 02:04 AM
sorry, Jim, was my fault.
Everything works,
thank you very much
Alex