ISReferralsFilter.ReceivedDateFrom

Description

This filter property is used to load the patient's referrals starting from the date and time they were received.

Syntax

object.ReceivedDateFrom

Part Attribute Type Description
object Required
The object always implements the ISReferralsFilter interface

Return Value

DateTime

Example

Display the patient's referrals filtered starting from the date and time they were received.

Dim aPatient
Dim aReferralsFilter
Dim aReferrals
Dim aMessage

Set aPatient = Profile.SelectPatient
set aReferralsFilter = Profile.CreateReferralsFilter

aReferralsFilter.Patient = aPatient.Id
aReferralsFilter.ReceivedDateFrom = #05/10/2019 12:00:00#

set aReferrals = Profile.LoadReferrals(aReferralsFilter)

aMessage = aMessage & "The number of the patient's referrals received from" &_
  aReferralsFilter.ReceivedDateFrom & " is " & aReferrals.Count

Profile.MsgBox (aMessage)   
Note:

In Profile Client v8 on User Interface Received Date From cannot be found.

Version information

Added in v7.8.0