#6721
Support 2
Moderator

    Yes, there is a modified date associated with a message. The following code shows the creation and modified time for the selected message. The selected message can be any message type (Appt, Mail, etc).

    '-------------------------------------------------------------------------------
    ' This test applet shows the creation and last modified time for the selected message.
    '
    ' INTEGRATION: Message view toolbar
    '-------------------------------------------------------------------------------
     
    Sub Main(Client, GWEvent)
      
      dim iMsg
      
      on error resume next
      set iMsg = Client.ClientState.CommandMessage
      
      if iMsg is nothing then
        msgbox "Select a received or saved message to proceed." 
        exit sub
      end if
      
      
      msgbox "Created: " & iMsg.CreationDate & vbcrlf & "Modified: " & iMsg.ModifiedDate
      
      set iMsg = nothing
      
    End Sub
    

    Regards,

    Advansys Support