This filter property is used to load the patient's referrals by the referral status.
object.Status
Part | Attribute | Type | Description |
---|---|---|---|
object |
Required | The object always implements the
ISReferralsFilter interface |
int
Display the number of the patient's referrals filtered by the referral status.
Dim aPatient
Dim aReferralsFilter
Dim aReferrals
Dim aMessage
Set aPatient = Profile.SelectPatient
set aReferralsFilter = Profile.CreateReferralsFilter
aReferralsFilter.Patient = aPatient.Id
aReferralsFilter.Status = 2 'refClosed
set aReferrals = Profile.LoadReferrals(aReferralsFilter)
aMessage = aMessage & "The number of the patient's referrals filtered by" &_
" the referral status " & aReferralsFilter.Status & " is " & aReferrals.Count
Profile.MsgBox (aMessage)
In Profile Client v8 on User Interface Status cannot be found.