Each of the care plans owned by the selected patient.
object.Item(prpIndex)
Part | Attribute | Type | Description |
---|---|---|---|
object |
Required | The object always implements the
ISPatientRecallPlans interface |
|
prpIndex |
In, Required | int |
The index of the care plan |
Display each of the care plans owned by the selected patient.
Dim aPatient
Dim aRecallPlans
Dim aMessage
Set aPatient = Profile.SelectPatient
set aRecallPlans = aPatient.RecallPlans
if aRecallPlans.Count = 0 then
aMessage = vbNewLine & "The patient has no recall plans!"
else
aMessage = "Recall Plans Count = " & aRecallPlans.Count
end if
for i = 0 to aRecallPlans.Count - 1
set aRecallPlan = aRecallPlans.Item(i)
aMessage = aMessage & vbNewLine & "The patient's recall plan is '" &_
aRecallPlan.Description & "'"
next
Profile.MsgBox(aMessage)
In Profile Client v8 on User Interface Care Plans can be found in
.