This filter property limits the loading of the patient's referrals by the maximum value of the 'ReceivedOn'.
object.ReceivedDateTo
Part | Attribute | Type | Description |
---|---|---|---|
object |
Required | The object always implements the
ISReferralsFilter interface |
DateTime
Limit the loading of the patient's referrals by the maximum value of the 'ReceivedOn'.
Dim aPatient
Dim aReferralsFilter
Dim aReferrals
Dim aMessage
Set aPatient = Profile.SelectPatient
set aReferralsFilter = Profile.CreateReferralsFilter
aReferralsFilter.Patient = aPatient
aReferralsFilter.ReceivedDateTo = #05/20/2019#
set aReferrals = Profile.LoadReferrals(aReferralsFilter)
aMessage = aMessage & "The number of the referrals filtered by " &_
"the specified 'ReceivedDateTo' (" & aReferralsFilter.ReceivedDateTo &_
") is " & aReferrals.Count
Profile.MsgBox (aMessage)
In Profile Client v8 on User Interface Received Date To cannot be found.