#7846
Support 3
Participant

    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