/ Forums / Advansys Formativ / Creating Solutions with Formativ / Multiple selected messages / Reply To: Multiple selected messages
May 13, 2007 at 4:27 pm
#7846
Just as a reference for other members, the code below shows the subject for the selected messages.
dim oMsg dim oMessages set oMessages = nothing set oMessages = client.clientstate.selectedmessages if oMessages is nothing then exit sub end if for each oMsg in oMessages msgbox oMsg.subject next set oMsg = nothing set oMessages = nothing
Regards,
Advansys Support