/ Forums / Advansys Formativ / Creating Solutions with Formativ / Message time stamps / Reply To: Message time stamps
September 28, 2003 at 6:46 pm
#6721
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