All interventions of the patient.
object.RecallVisits
Part | Attribute | Type | Description |
---|---|---|---|
object |
Required | The object always implements the
ISPatient interface |
Display the number of all due interventions of the patient, their code description and status.
Dim aPatient
Dim aRecallVisits
Dim aRecallVisit
Dim aMessage
Set aPatient = Profile.SelectPatient
aRecallVisits = aPatient.RecallVisits.Due.Count
aMessage = "Recall Visits Count = " & aRecallVisits
for i = 0 to aRecallVisits - 1
set aRecallVisit = aPatient.RecallVisits.Due.Item(i)
aMessage = aMessage & vbNewLine
aMessage = aMessage & "'" & aRecallVisit.Description & "'" & ", "
aMessage = aMessage & aRecallVisit.StatusAsString
next
Profile.MsgBox (aMessage)
In Profile Client v8 on User Interface Interventions can be found in
.