Sub Wsw_AfterCheck(ByRef $sStatusMessage)


This function is called after a bookmark has been checked. For example, you can use it to write the time of a bookmark check to an external log file.


Parameters


  • $sStatusMessage ... String expression. Status message that is displayed in the status column. The default value is an empty string.


Example:

Dim $dStart = "" 'global variable that can be used in all event functions

'*******************************************************************************

Sub Wsw_BeforeCheck()
   Bookmark_SetProperty("checkmethod", "content")
   $dStart = Now
End Sub

'*******************************************************************************

Sub Wsw_AfterCheck(ByRef $sStatusMessage)
   AddStringToFile("c:\wswlog\checktime.txt", "Seconds: " + DateDiff(Now, $dStart, "s"))
End Sub