This filter property is used to load the actions that have been completed before the specified date.
object.CompletedBefore
Part | Attribute | Type | Description |
---|---|---|---|
object |
Required | The object always implements the
ISRecallActionFilter interface |
DateTime
Display the number of the actions that have been completed before the specified date.
sub main
Dim aFilter
Dim aActions
Dim aMessage
Set aFilter = Profile.CreateRecallActionFilter
aFilter.CompletedBefore = #04/09/2019#
set aActions = Profile.LoadRecallActions(aFilter)
aMessage = aMessage & vbNewLine & "The number of the actions " &_
"completed before the specified date is " & aActions.Count
Profile.MsgBox(aMessage)
end sub
In Profile Client v8 on User Interface Completed Before cannot be found.