The date and time of the claim.
object.Date
| Part | Attribute | Type | Description |
|---|---|---|---|
object |
Required | The object always implements the
ISClaim interface |
DateTime
Display the number of the claims loaded on the basis of the selected filter and their dates and time.
Dim aFilter
Dim aClaims, aClaim
Dim aMessage
Dim i
Set aFilter = Profile.CreateClaimFilter
aFilter.DateFrom = #06/08/2018#
set aClaims = Profile.LoadClaims(aFilter)
aMessage = "Claims Count = " & aClaims.Count
for i = 0 to aClaims.Count - 1
set aClaim = aClaims.Item(i)
aMessage = aMessage & vbNewLine & "Date/Time of the claim is " & vbTab &_
aClaim.Date
next
Profile.MsgBox(aMessage) In Profile Client v8 on User Interface Date can be found in .
int to
DateTime in v8.5.0