• Creator
    Topic
  • #3963
    Anonymous

      Is there a “last modified” time stamp on GroupWise messages? Specifically, on an appointment message, if the time or date of the appointment is edited, is there a time stamp on that message to indicate when it was last modified?

      Thanks!

      -Farren

    • Author
      Replies
    • #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

        #6722
        Anonymous

          Yet another perfect answer! (Which, of course, I expected!)

          -Farren

          #6723
          Support 2
          Moderator

            Always a pleasure Farren! 🙂

            Regards,

            Advansys Support

          Viewing 3 replies - 1 through 3 (of 3 total)
          • You must be logged in to reply to this topic.